:root {
  --campaign-green: #008a1f;
  --campaign-green-dark: #00751a;
  --campaign-navy: #082e67;
  --campaign-blue: #08478d;
  --campaign-yellow: #ffdd00;
  --campaign-ink: #111827;
  --campaign-muted: #364152;
  --campaign-line: #dfe4ea;
  --campaign-soft: #eff7f1;
  --campaign-shadow: 0 4px 12px rgba(8, 46, 103, 0.12);
  --campaign-header-height: 128px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fff;
  color: var(--campaign-ink);
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(255, 221, 0, 0.78);
  outline-offset: 4px;
}

.campaign-page {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.campaign-frame {
  width: min(100%, 1066px);
  margin: 0 auto;
}

.campaign-header {
  width: 100%;
  height: var(--campaign-header-height);
  background: var(--campaign-green);
  color: #fff;
}

.campaign-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1066px);
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.campaign-brand {
  margin: 0;
  color: #fff;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1;
  text-transform: uppercase;
}

.campaign-brand span {
  color: var(--campaign-yellow);
}

.campaign-brand-lockup {
  display: flex;
  width: 178px;
  height: calc(var(--campaign-header-height) - 8px);
  flex: 0 0 auto;
  align-items: center;
  filter: drop-shadow(0 5px 8px rgba(1, 32, 12, 0.25));
}

.campaign-brand-lockup img {
  display: block;
  width: 178px;
  height: auto;
}

.channel-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--campaign-yellow);
  color: #102136;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.channel-button:hover {
  background: #ffe42f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.23);
  transform: translateY(-2px);
}

.channel-button:active {
  transform: translateY(0);
}

.channel-button .bi {
  font-size: 23px;
}

.campaign-header .channel-button {
  min-width: 170px;
  padding: 10px 18px;
}

.campaign-hero {
  position: relative;
  min-height: 481px;
  aspect-ratio: 1066 / 481;
  overflow: hidden;
  background: #fff;
}

.campaign-hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(
    0 0,
    50.6% 0,
    50.6% 50%,
    46% 62%,
    42% 75%,
    39% 100%,
    0 100%
  );
  content: "";
}

.campaign-hero__visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62.2%;
}

.campaign-hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("/canal-assets/hero-reference.jpeg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 114.14%;
}

.campaign-hero__highlights {
  position: absolute;
  z-index: 2;
  top: 20.5%;
  right: clamp(42px, 4vw, 58px);
  display: flex;
  width: clamp(200px, 15.4vw, 242px);
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(14px, 1.25vw, 20px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(8, 46, 103, 0.16);
  padding: 4px;
}

.campaign-highlight {
  display: grid;
  width: 100%;
  min-height: clamp(64px, 4.8vw, 76px);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 0.9vw, 14px);
  border: 1px solid rgba(8, 46, 103, 0.14);
  border-radius: clamp(12px, 1vw, 16px);
  background: #fff;
  color: #15243a;
  box-shadow:
    0 2px 3px rgba(8, 46, 103, 0.08),
    0 10px 24px rgba(8, 46, 103, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  padding: clamp(7px, 0.7vw, 10px) clamp(10px, 0.9vw, 14px);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.13;
  text-decoration: none;
}

.campaign-highlight__icon {
  display: grid;
  width: clamp(38px, 3.4vw, 50px);
  height: clamp(38px, 3.4vw, 50px);
  place-items: center;
  border-radius: 50%;
  background: var(--campaign-green);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 138, 31, 0.24);
  font-size: clamp(20px, 1.8vw, 27px);
}

.campaign-highlight.is-blue .campaign-highlight__icon {
  background: var(--campaign-blue);
  box-shadow: 0 4px 10px rgba(8, 71, 141, 0.26);
}

.campaign-highlight.is-yellow .campaign-highlight__icon {
  background: #f5c900;
  color: #fff;
  box-shadow: 0 4px 10px rgba(208, 168, 0, 0.28);
}

.campaign-highlight.is-whatsapp .campaign-highlight__icon {
  background: #0a9d38;
}

.campaign-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 47.2%;
  height: 100%;
  min-height: 481px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 12px 26px 48px;
  background: transparent;
}

.campaign-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  border: 1.5px solid #4eaf6a;
  border-radius: 999px;
  background: #fff;
  color: var(--campaign-navy);
  padding: 4px 12px 4px 5px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.campaign-eyebrow .bi {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: var(--campaign-yellow);
  color: #071a31;
  font-size: 22px;
}

.campaign-eyebrow strong {
  color: var(--campaign-green);
}

.campaign-hero h1 {
  max-width: 440px;
  margin: 0;
  color: var(--campaign-navy);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 49px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.15;
}

.campaign-hero h1 .green {
  color: var(--campaign-green);
}

.campaign-hero h1 .headline-line {
  white-space: nowrap;
}

.campaign-hero h1 .whatsapp-mark {
  display: inline-flex;
  margin-left: 4px;
  color: #18a942;
  font-size: 0.9em;
  vertical-align: 0.04em;
}

.campaign-hero__lead {
  max-width: 390px;
  margin: 11px 0 18px;
  color: #202a36;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.36;
}

.campaign-hero__cta {
  min-height: 55px;
  border-radius: 7px;
  background: var(--campaign-green);
  color: #fff;
  padding: 13px 20px;
  font-size: 18px;
  text-transform: uppercase;
}

.campaign-hero__cta:hover {
  background: var(--campaign-green-dark);
}

.campaign-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
  margin: 17px 0 0;
  padding: 0;
  color: #182534;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.campaign-trust li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.campaign-trust li:not(:last-child)::after {
  margin-left: 5px;
  color: #5e6873;
  content: "•";
}

.campaign-trust .bi {
  color: #16a33b;
  font-size: 14px;
}

.campaign-section {
  border-top: 1px solid #edf0f2;
  background: #fff;
}

.campaign-section__inner {
  width: min(calc(100% - 92px), 974px);
  margin: 0 auto;
}

.campaign-section h2 {
  margin: 0;
  color: var(--campaign-navy);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1.15;
  text-align: center;
}

.benefits {
  padding: 19px 0 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 13px;
}

.benefit-card {
  display: grid;
  min-height: 126px;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  background: #fff;
  padding: 14px 14px;
  box-shadow: var(--campaign-shadow);
}

.campaign-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--campaign-green);
  color: #fff;
  font-size: 31px;
}

.campaign-icon.is-blue {
  background: #0a4c9b;
}

.campaign-icon.is-yellow {
  background: var(--campaign-yellow);
  color: #fff;
}

.benefit-card h3 {
  margin: 0 0 3px;
  color: var(--campaign-green-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.benefit-card.is-blue h3 {
  color: #124b98;
}

.benefit-card p {
  margin: 0;
  color: #202a36;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
}

.steps {
  padding: 12px 0 9px;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1.35fr;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-item .campaign-icon {
  width: 68px;
  height: 68px;
  background: var(--campaign-soft);
  color: var(--campaign-green);
  font-size: 32px;
}

.step-item p {
  margin: 0;
  color: #121927;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.25;
}

.step-item strong {
  color: var(--campaign-green);
}

.step-arrow {
  color: #15478c;
  font-size: 40px;
  font-weight: 300;
  text-align: center;
}

.themes {
  padding: 6px 0 10px;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 20px;
  margin-top: 10px;
}

.theme-card {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  border: 1px solid #dfe4e8;
  border-radius: 9px;
  background: #fff;
  padding: 8px 14px;
  box-shadow: var(--campaign-shadow);
}

.theme-card .bi {
  min-width: 39px;
  color: #16873c;
  font-size: 35px;
  text-align: center;
}

.theme-card:nth-child(2) .bi,
.theme-card:nth-child(6) .bi {
  color: #1450a0;
}

.theme-card:nth-child(3) .bi,
.theme-card:nth-child(7) .bi {
  color: #e6c400;
}

.theme-card span {
  color: #121927;
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.18;
}

.themes-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 0;
  color: #2c3542;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
}

.themes-note .bi {
  color: var(--campaign-green);
  font-size: 15px;
}

.community-wrap {
  border-top: 1px solid #edf0f2;
  padding: 8px 0;
}

.community-banner {
  position: relative;
  display: grid;
  min-height: 97px;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border-radius: 10px;
  background: #06499a;
  color: #fff;
  padding: 0 27px 0 0;
}

.community-flag {
  align-self: stretch;
  background-image: url("/canal-assets/full-reference.jpeg");
  background-position: -42px -1233px;
  background-repeat: no-repeat;
  background-size: 1066px 1398px;
}

.community-copy h2 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
}

.community-copy p {
  margin: 0;
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
}

.community-banner .channel-button {
  min-width: 274px;
  padding: 13px 19px;
  text-transform: uppercase;
}

.campaign-footer {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--campaign-navy);
  color: #fff;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.campaign-footer .bi {
  font-size: 22px;
}

.campaign-toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: min(420px, calc(100% - 36px));
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #d6e1dc;
  border-radius: 12px;
  background: #fff;
  color: #16322a;
  padding: 14px 16px;
  box-shadow: 0 16px 42px rgba(2, 35, 21, 0.24);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(calc(100% + 40px));
  visibility: hidden;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    visibility 0s linear 0.22s;
}

.campaign-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.campaign-toast .bi {
  color: var(--campaign-green);
  font-size: 22px;
}

@media (min-width: 1067px) {
  .campaign-page {
    border-right: 1px solid #eef1f4;
    border-left: 1px solid #eef1f4;
  }
}

@media (min-width: 901px) {
  body.campaign-short-page,
  .campaign-short-page .campaign-page {
    min-height: 100vh;
  }

  .campaign-short-page .campaign-page {
    width: 100%;
    max-width: none;
    border-right: 0;
    border-left: 0;
  }

  .campaign-short-page .campaign-header__inner {
    width: 100%;
    max-width: none;
    padding-right: clamp(48px, 5vw, 88px);
    padding-left: clamp(48px, 5vw, 88px);
  }

  .campaign-short-page .campaign-hero {
    height: calc(100vh - var(--campaign-header-height));
    min-height: 481px;
    aspect-ratio: auto;
  }

  .campaign-short-page .campaign-hero::after {
    clip-path: polygon(
      0 0,
      56.5% 0,
      56.5% 30%,
      54.5% 50%,
      51% 67%,
      49% 100%,
      0 100%
    );
  }

  .campaign-short-page .campaign-hero__copy {
    width: 47.2%;
    height: 100%;
    min-height: 100%;
    padding-right: clamp(12px, 1.2vw, 22px);
    padding-left: clamp(48px, 5vw, 88px);
  }

  .campaign-short-page .campaign-eyebrow {
    gap: clamp(9px, 0.75vw, 13px);
    margin-bottom: clamp(10px, 1vh, 14px);
    padding-right: clamp(12px, 1vw, 18px);
    font-size: clamp(16px, min(1.35vw, 2.5vh), 22px);
  }

  .campaign-short-page .campaign-eyebrow .bi {
    width: clamp(39px, min(3.3vw, 6vh), 54px);
    height: clamp(39px, min(3.3vw, 6vh), 54px);
    font-size: clamp(22px, min(1.9vw, 3.5vh), 31px);
  }

  .campaign-short-page .campaign-hero h1 {
    max-width: min(92%, 610px);
    font-size: clamp(49px, min(4.2vw, 9.2vh), 72px);
    letter-spacing: clamp(-3px, -0.18vw, -2px);
  }

  .campaign-short-page .campaign-hero__lead {
    max-width: min(88%, 530px);
    margin-top: clamp(11px, 1.4vh, 16px);
    margin-bottom: clamp(18px, 2.2vh, 25px);
    font-size: clamp(15.5px, min(1.3vw, 2.7vh), 21px);
  }

  .campaign-short-page .campaign-hero__cta {
    min-height: clamp(55px, 7.5vh, 68px);
    padding: clamp(13px, 1.8vh, 18px) clamp(20px, 1.8vw, 30px);
    font-size: clamp(18px, min(1.45vw, 2.9vh), 23px);
  }

  .campaign-short-page .campaign-trust {
    gap: 8px 10px;
    margin-top: clamp(17px, 2.2vh, 25px);
    font-size: clamp(12px, min(1vw, 2vh), 16px);
  }

  .campaign-short-page .campaign-trust .bi {
    font-size: clamp(14px, min(1.15vw, 2.2vh), 18px);
  }
}

@media (min-width: 1200px) {
  .campaign-short-page .campaign-hero::after {
    z-index: 1;
    clip-path: polygon(
      0 0,
      60% 0,
      60% 30%,
      58% 50%,
      56% 67%,
      53% 100%,
      0 100%
    );
  }

  .campaign-short-page .campaign-hero__visual {
    z-index: 0;
    width: min(62.2%, 720px);
  }

  .campaign-short-page .campaign-hero__copy {
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .campaign-header__inner {
    padding: 0 24px;
  }

  .campaign-hero {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
  }

  .campaign-hero::after {
    display: none;
  }

  .campaign-hero__copy {
    width: 100%;
    min-height: 0;
    padding: 34px 24px 28px;
    background: #fff;
  }

  .campaign-hero__visual {
    position: relative;
    order: 2;
    width: 100%;
    min-height: 430px;
  }

  .campaign-hero__art {
    position: absolute;
    inset: 0;
    width: 100%;
    background-position: right bottom;
    background-size: auto 114.14%;
  }

  .campaign-hero__highlights {
    top: 14%;
    right: 24px;
    width: 180px;
    gap: 3px;
    padding: 3px;
  }

  .campaign-highlight {
    min-height: 60px;
    gap: 9px;
    border-radius: 12px;
    padding: 6px 9px;
    font-size: 11.5px;
  }

  .campaign-highlight__icon {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .campaign-hero__copy {
    order: 1;
  }

  .campaign-hero h1,
  .campaign-hero__lead {
    max-width: 680px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }

  .step-arrow {
    line-height: 0.6;
    transform: rotate(90deg);
  }

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

  .community-banner {
    grid-template-columns: 160px 1fr;
    padding: 14px 18px 14px 0;
  }

  .community-flag {
    grid-row: 1 / 3;
  }

  .community-banner .channel-button {
    min-width: 0;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .campaign-header {
    height: 92px;
  }

  .campaign-header__inner {
    padding: 0 16px;
  }

  .campaign-brand {
    font-size: 19px;
    letter-spacing: -0.4px;
  }

  .campaign-brand-lockup {
    width: 112px;
    height: 88px;
  }

  .campaign-brand-lockup img {
    width: 112px;
  }

  .campaign-header .channel-button {
    min-width: 0;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0;
  }

  .campaign-header .channel-button::after {
    font-size: 12px;
    content: "Entrar na Comunidade";
  }

  .campaign-header .channel-button .bi {
    font-size: 19px;
  }

  .campaign-hero__copy {
    align-items: stretch;
    padding: 28px 18px 24px;
  }

  .campaign-eyebrow {
    align-self: flex-start;
    font-size: 13px;
  }

  .campaign-eyebrow .bi {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .campaign-hero h1 {
    font-size: clamp(35px, 11vw, 47px);
    letter-spacing: -1.6px;
  }

  .campaign-hero h1 .headline-line {
    white-space: normal;
  }

  .campaign-hero__lead {
    font-size: 15px;
  }

  .campaign-hero__cta {
    width: 100%;
    font-size: 16px;
  }

  .campaign-trust {
    justify-content: center;
    font-size: 11.5px;
  }

  .campaign-trust li::after {
    display: none;
  }

  .campaign-hero__visual {
    min-height: 335px;
  }

  .campaign-hero__art {
    background-size: auto 114.14%;
  }

  .campaign-hero__highlights {
    top: 16%;
    right: 17px;
    width: 138px;
    gap: 2px;
    padding: 2px;
  }

  .campaign-highlight {
    min-height: 44px;
    gap: 7px;
    border-radius: 10px;
    padding: 4px 7px;
    font-size: 9px;
  }

  .campaign-highlight__icon {
    width: 29px;
    height: 29px;
    font-size: 15px;
  }

  .campaign-section__inner {
    width: min(calc(100% - 28px), 974px);
  }

  .campaign-section h2 {
    font-size: 23px;
  }

  .benefits,
  .steps,
  .themes {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .benefit-card {
    grid-template-columns: 55px 1fr;
  }

  .campaign-icon {
    width: 54px;
    height: 54px;
    font-size: 27px;
  }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .theme-card {
    min-height: 58px;
  }

  .community-wrap {
    padding: 12px 14px;
  }

  .community-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 18px 18px;
    text-align: center;
  }

  .community-flag {
    width: calc(100% + 36px);
    min-height: 82px;
    margin: 0 -18px;
    background-position: -61px -1790px;
    background-size: 1546px 2027px;
  }

  .community-copy h2 {
    font-size: 21px;
  }

  .community-banner .channel-button {
    width: 100%;
    justify-self: stretch;
    font-size: 14px;
  }

  .campaign-footer {
    align-items: flex-start;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
