:root {
  --pink: #c30051;
  --pink-dark: #9b003f;
  --pink-bright: #f80067;
  --text: #5b5b5b;
  --light: #f3f3f3;
  --footer: #f1f1f1;
  --container: 1320px;
  --font-main: "Poppins", Arial, sans-serif;
  --font-display: "Bebas Neue", "Roboto Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img, svg {
  display: block;
}

a {
  color: inherit;
}

button, input, textarea, select {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 20;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .brand img {
  width: 142px;
  height: auto;
}

.hero {
  height: 851px;
  overflow: hidden;
  position: relative;
  background: #ececec;
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("assets/hero.webp");
  background-size: 120% auto;
  background-position: left 35%;
  background-repeat: no-repeat;
  transform: scale(1.001);
}

.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(245, 246, 247, 0.99) 0%,
      rgba(245, 246, 247, 0.96) 22%,
      rgba(245, 246, 247, 0.86) 39%,
      rgba(245, 246, 247, 0.52) 52%,
      rgba(245, 246, 247, 0.12) 66%,
      rgba(245, 246, 247, 0) 100%);
}

.hero-watermark {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 790px;
    height: 338px;
    background: url(assets/efeito-01.png) no-repeat center / cover;
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 720px;
  margin-top: -4px;
}

.eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  color: #505050;
  letter-spacing: -.3px;
  margin-bottom: 7px;
}

.eyebrow span {
  width: 44px;
  height: 5px;
  background: var(--pink);
  margin-bottom: 7px;
}

.hero h1 {
  margin: 0;
  color: var(--pink);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 92px;
  line-height: .91;
  letter-spacing: -.8px;
}

.hero h2 {
  margin: 54px 0 17px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  color: #545454;
}

.hero p {
  margin: 0 0 23px;
  max-width: 690px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: #777;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  min-height: 58px;
  padding: 0 27px;
  font-size: 17px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-primary {
  color: #fff;
  background: var(--pink);
  margin-top: 6px;
  box-shadow: 0 8px 22px rgba(195, 0, 81, .13);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(116, 0, 48, .18);
}

.intro {
  height: 1450px;
  background: #fff;
  padding: 114px 0 72px;
}

.intro-inner {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 51px;
  line-height: 1.13;
  font-weight: 300;
  color: #555;
  letter-spacing: -1.5px;
}

.section-heading h2 strong {
  color: var(--pink-dark);
  font-weight: 700;
}

.section-heading p {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #6d6d6d;
}

.video-placeholder {
  width: 100%;
  height: 700px;
  margin-top: 35px;
  border: 0;
  border-radius: 25px;
  background: #8f8f8f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: filter .2s ease;
}

.video-placeholder:hover {
  filter: brightness(.97);
}

.play-button {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

.play-button svg {
  width: 47px;
  height: 47px;
  fill: #919191;
  transform: translateX(3px);
}

.manifesto-card {
  min-height: 238px;
  border-radius: 25px;
  margin-top: 33px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 31px 50px 28px;
  background: linear-gradient(100deg, #fb0067 0%, #d40058 52%, #99003f 100%);
  box-shadow: 46px 45px 42px rgba(0, 0, 0, .18);
}

.manifesto-card h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.45px;
}

.manifesto-card p {
  margin: 32px 0 0;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 400;
}

.intro-closing {
  margin: 54px auto 0;
  font-size: 16px;
  line-height: 1.45;
  color: #696969;
}

.intro-closing strong {
  color: #444;
  font-weight: 700;
}

.pillars {
  height: 829px;
  background: #fff;
  padding: 207px 0 0;
}

.pillars h2 {
  margin: 0;
  text-align: center;
  color: var(--pink-dark);
  font-size: 43px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.9px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 84px;
}

.pillar-card {
  min-height: 373px;
  border-radius: 29px;
  padding: 42px 31px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.pillar-card-light {
  background: #f3f3f3;
  color: #555;
}

.pillar-card-pink {
  background: #c80052;
  color: #fff;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.pillar-card-light .pillar-icon {
  background: #fff;
  color: #e9005f;
}

.pillar-card-pink .pillar-icon {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.pillar-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card:nth-child(2) .pillar-icon svg {
  fill: currentColor;
  stroke: none;
  width: 31px;
  height: 31px;
}

.pillar-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.37;
  font-weight: 600;
  letter-spacing: -.35px;
}

.pillar-card p {
  margin: 21px 0 0;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
}

.join {
  height: 902px;
  position: relative;
  overflow: hidden;
  background: url(assets/efeito-02.png) no-repeat bottom left, linear-gradient(108deg, #b4004b 0%, #c50052 48%, #ce0055 100%);
  color: #fff;
}

.join-decoration {
  position: absolute;
  left: -190px;
  bottom: -250px;
  width: 1240px;
  height: 740px;
  border: 74px solid rgba(92, 0, 38, .22);
  border-radius: 50%;
  transform: rotate(23deg);
}

.join-decoration::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 360px;
  right: -450px;
  bottom: -260px;
  border-radius: 52% 48% 45% 55%;
  background: rgba(92, 0, 38, .25);
  transform: rotate(15deg);
}

.join-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 76px;
}

.join-art {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.join-art img {
  width: 560px;
  max-width: 100%;
  filter: drop-shadow(0 35px 30px rgba(60, 0, 24, .26));
}

.join-copy {
  max-width: 610px;
  margin-top: -12px;
}

.join-copy h2 {
  margin: 0 0 38px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 61px;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.join-copy p {
  margin: 0 0 29px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.join-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  margin-top: 33px;
}

.join-actions a {
  min-width: 420px;
  min-height: 51px;
  padding: 0 22px;
  border-radius: 9px;
  background: #fff;
  color: var(--pink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.join-actions a:nth-child(2) {
  min-width: 410px;
}

.join-actions a:nth-child(3) {
  min-width: 530px;
}

.join-actions a:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 26px rgba(74, 0, 29, .16);
}

.join-actions span {
  font-size: 22px;
  line-height: 1;
  margin-left: 18px;
}

.brand-statement {
  height: 530px;
  position: relative;
  overflow: hidden;
  background: #eee;
}

.brand-statement-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 245, 245, .79), rgba(245, 245, 245, .79)),
    url("assets/brand-bg.webp");
  background-size: cover;
  background-position: center 46%;
  filter: grayscale(1);
}

.brand-statement-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
}

.movement-logo {
  width: 585px;
  max-width: 70%;
  height: auto;
}

.brand-statement p {
  margin: 45px 0 0;
  font-size: 20px;
  line-height: 1.48;
  color: #6c6c6c;
}

.brand-statement p strong {
  font-weight: 700;
  color: #585858;
}

.brand-banner {
  width: 1080px;
  max-width: 92%;
  min-height: 104px;
  margin-top: 50px;
  border-radius: 21px;
  background: linear-gradient(100deg, #fb0067 0%, #ca0053 55%, #9d0041 100%);
  box-shadow: 40px 30px 40px rgba(0, 0, 0, .19);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 35px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.35px;
}

.site-footer {
  min-height: 555px;
  background: #FFF;
  padding: 73px 0 42px;
  color: #777;
}

.footer-inner {
  max-width: 1320px;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 43px;
}

.footer-content {
  display: grid;
  grid-template-columns: 220px 300px 270px;
  justify-content: center;
  column-gap: 43px;
  align-items: start;
}

.footer-content h3 {
  margin: 0 0 23px;
  color: #666;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 23px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: #fff;
  transition: transform .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.footer-contact,
.footer-units {
  font-size: 13px;
  line-height: 1.58;
}

.footer-contact a {
  color: #888;
  text-decoration: underline;
}

.footer-contact p,
.footer-units p {
  margin: 22px 0 0;
}

.footer-units p:first-child {
  margin-top: 0;
}

.footer-contact strong,
.footer-units strong {
  font-weight: 500;
  color: #777;
}

.footer-legal {
  border-top: 1px solid #c8c8c8;
  margin-top: 68px;
  padding-top: 37px;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: #929292;
}

.footer-legal p {
  margin: 0;
}

.footer-legal nav {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 35px;
}

.footer-legal a {
  color: #555;
  text-decoration: underline;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .84);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-content {
  width: min(100%, 1120px);
  aspect-ratio: 16 / 9;
  background: #111;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
}

.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-empty-state {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 30px;
}

.video-empty-state strong {
  font-size: 24px;
}

.video-empty-state span {
  opacity: .7;
}

.video-modal-close {
  position: fixed;
  top: 20px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1440px) {
  :root {
    --container: 1120px;
  }

  .hero-copy {
    width: 610px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero h2 {
    font-size: 21px;
  }

  .hero p {
    font-size: 16px;
  }

  .video-placeholder {
    height: 630px;
  }

  .pillar-card {
    padding-inline: 23px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 58px;
  }

  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero-photo {
    background-size: cover;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(245,246,247,.99) 0%, rgba(245,246,247,.92) 42%, rgba(245,246,247,.28) 73%, rgba(245,246,247,.06) 100%);
  }

  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    width: 58%;
  }

  .hero h1 {
    font-size: clamp(62px, 8vw, 82px);
  }

  .hero h2 {
    margin-top: 38px;
  }

  .intro,
  .pillars {
    height: auto;
    min-height: 0;
  }

  .video-placeholder {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join {
    height: auto;
    min-height: 850px;
    padding: 80px 0;
  }

  .join-inner {
    grid-template-columns: .9fr 1.1fr;
  }

  .join-copy h2 {
    font-size: 54px;
  }

  .join-actions a,
  .join-actions a:nth-child(2),
  .join-actions a:nth-child(3) {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 56px;
  }

  .site-header .brand img {
    width: 128px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    background-size: cover;
    background-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(245,246,247,.28) 0%, rgba(245,246,247,.1) 40%, rgba(245,246,247,.95) 69%, rgba(245,246,247,1) 100%),
      linear-gradient(90deg, rgba(245,246,247,.78) 0%, rgba(245,246,247,.08) 60%);
  }

  .hero-inner {
    min-height: 760px;
    align-items: flex-end;
    padding-bottom: 46px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    font-size: 17px;
  }

  .eyebrow span {
    width: 34px;
    height: 4px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .hero h2 {
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.35;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 15px;
  }

  .button {
    min-height: 50px;
    font-size: 14px;
  }

  .intro {
    padding: 78px 0 70px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .video-placeholder {
    margin-top: 42px;
    border-radius: 16px;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .play-button svg {
    width: 35px;
    height: 35px;
  }

  .manifesto-card {
    min-height: 0;
    margin-top: 22px;
    padding: 29px 20px;
    border-radius: 16px;
    box-shadow: 18px 20px 28px rgba(0,0,0,.15);
  }

  .manifesto-card h3 {
    font-size: 19px;
  }

  .manifesto-card h3 br,
  .manifesto-card p br,
  .intro-closing br,
  .brand-statement p br {
    display: none;
  }

  .manifesto-card p {
    margin-top: 20px;
    font-size: 14px;
  }

  .intro-closing {
    margin-top: 47px;
    font-size: 13px;
  }

  .pillars {
    padding: 76px 0 85px;
  }

  .pillars h2 {
    font-size: 32px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 45px;
  }

  .pillar-card {
    min-height: 0;
    padding: 32px 24px 34px;
  }

  .join {
    padding: 58px 0 70px;
  }

  .join-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .join-art {
    height: auto;
    padding: 0;
  }

  .join-art img {
    width: 310px;
  }

  .join-copy {
    margin: 0;
    max-width: none;
    text-align: center;
  }

  .join-copy h2 {
    margin-bottom: 28px;
    font-size: 47px;
  }

  .join-copy p {
    font-size: 14px;
  }

  .join-actions {
    align-items: stretch;
    margin-top: 30px;
    gap: 13px;
  }

  .join-actions a {
    font-size: 12px;
    text-align: left;
  }

  .brand-statement {
    height: auto;
    min-height: 490px;
    padding: 66px 0;
  }

  .movement-logo {
    max-width: 86%;
  }

  .brand-statement p {
    margin-top: 32px;
    font-size: 15px;
  }

  .brand-banner {
    min-height: 82px;
    margin-top: 38px;
    font-size: 19px;
    border-radius: 15px;
  }

  .site-footer {
    padding: 58px 0 35px;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact p,
  .footer-units p {
    margin-top: 15px;
  }

  .footer-legal {
    margin-top: 46px;
    padding-top: 28px;
  }

  .footer-legal nav {
    flex-direction: column;
    gap: 13px;
    margin-top: 26px;
  }
}
