/* =============================================
   VARIÁVEIS E RESET
   ============================================= */
:root {
  /* Paleta — base IGT + toque Bautz */
  --azul-escuro:   #0d2b45;
  --azul-medio:    #163d5e;
  --amarelo:       #f5c518;
  --amarelo-hover: #dba90e;
  --branco:        #ffffff;
  --cinza-claro:   #f4f4f4;
  --cinza-borda:   #e0e0e0;
  --bege:          #faf7f2;   /* respiro premium (Bautz) */
  --amarelo-suave: #fffbea;
  --vermelho:      #c0392b;

  --texto-escuro:  #0d2b45;
  --texto-corpo:   #333333;
  --texto-suave:   #666666;

  /* Tipografia */
  --fonte: 'Montserrat', sans-serif;

  /* Espaçamento de seções */
  --sec-pad:    5rem 0;
  --sec-pad-lg: 7rem 0;

  /* Container */
  --max-w:      1100px;
  --pad-h:      1.25rem;

  /* Misc */
  --raio:      4px;
  --trans:     220ms ease;
  --sombra:    0 4px 20px rgba(0, 0, 0, 0.08);
  --sombra-md: 0 8px 32px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fonte);
  color: var(--texto-corpo);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background: var(--branco);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* =============================================
   UTILITÁRIOS
   ============================================= */

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* Botão CTA — amarelo vibrante sobre fundo escuro */
.btn-cta {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-family: var(--fonte);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.95rem 2.1rem;
  border-radius: var(--raio);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-align: center;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--amarelo-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 197, 24, 0.38);
  outline: none;
}


/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--azul-escuro);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Gradiente sutil de profundidade */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2b45 55%, #1a4a6e 100%);
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.15;
  max-width: 18ch;
}

.hero__subheadline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--amarelo);
  max-width: 40ch;
  line-height: 1.5;
}

.hero__body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 38ch;
}

.hero__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

/* Mockup de celular — visível só no desktop */
.hero__mockup {
  display: none;
}

.phone-mockup {
  width: 210px;
  background: #0a1e30;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--sombra-md);
  padding: 0.5rem;
}

.phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin: 0 auto 0.4rem;
}

.phone-screen {
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #075e54;
  color: var(--branco);
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-body {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #ece5dd;
}

.chat-bubble {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.68rem;
  line-height: 1.45;
  max-width: 88%;
}

.chat-bubble--in {
  background: var(--branco);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-bubble--out {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* Indicador de scroll */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.4rem;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* =============================================
   SECTION 2 — DEMONSTRAÇÃO
   ============================================= */
.demo {
  padding: var(--sec-pad);
  background: var(--branco);
}

.demo__container {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.demo__text {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--texto-corpo);
}

.demo__divider {
  width: 56px;
  height: 3px;
  background: var(--amarelo);
  margin: 0.25rem 0;
}

.demo__highlight {
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--azul-escuro);
  border-left: 4px solid var(--amarelo);
  padding: 1rem 1.5rem;
  background: var(--cinza-claro);
  border-radius: 0 var(--raio) var(--raio) 0;
}


/* =============================================
   SECTION 3 — DOR
   ============================================= */
.pain {
  padding: var(--sec-pad);
  background: var(--cinza-claro);
}

.pain__container {
  max-width: 700px;
}

.pain__title {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--azul-escuro);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.pain__subtitle {
  font-size: 0.95rem;
  color: var(--texto-suave);
  margin-bottom: 0.85rem;
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pain__list li {
  font-size: 1rem;
  color: var(--texto-corpo);
  padding-left: 1.5rem;
  position: relative;
}

.pain__list li::before {
  content: '•';
  position: absolute;
  left: 0.3rem;
  color: var(--azul-escuro);
  font-weight: 700;
}

.pain__ending {
  font-size: 1rem;
  color: var(--texto-corpo);
  margin-bottom: 0.75rem;
}

.pain__ending--bold {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-escuro);
}


/* =============================================
   SECTION 4 — SOLUÇÃO
   ============================================= */
.solution {
  padding: var(--sec-pad);
  background: var(--azul-escuro);
  color: var(--branco);
}

.solution__container {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad-h);
}

.solution__intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.solution__focus {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 1.75rem;
}

.solution__highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.45);
  border-radius: var(--raio);
  padding: 1.75rem 2rem;
  margin-bottom: 1.75rem;
}

.solution__highlight p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--amarelo);
  line-height: 1.4;
}

.solution__close {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}


/* =============================================
   SECTION 5 — O QUE É
   ============================================= */
.what-is {
  padding: var(--sec-pad);
  background: var(--branco);
}

.what-is__container {
  max-width: 660px;
}

.what-is__transition {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--texto-suave);
  margin-bottom: 2.5rem;
  text-align: center;
}

.what-is__title {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 2rem;
}

.what-is__subtitle {
  font-size: 1.05rem;
  color: var(--texto-suave);
  margin-bottom: 1.25rem;
}

.what-is__checklist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.what-is__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--texto-corpo);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--azul-escuro);
  color: var(--amarelo);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.what-is__close {
  border-top: 1px solid var(--cinza-borda);
  padding-top: 1.5rem;
}

.what-is__emphasis {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 0.4rem;
}


/* =============================================
   SECTION 6 — DIREÇÃO DE USO
   ============================================= */
.usage-direction {
  padding: var(--sec-pad);
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.usage-direction__container {
  max-width: 700px;
}

.usage-direction__title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--amarelo);
  margin-bottom: 1.25rem;
}

.usage-direction__intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
}

.usage-direction__list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.9rem;
}

.usage-direction__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  color: var(--branco);
}

.usage-direction .check-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--amarelo);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.usage-direction__close {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.2rem;
}

.usage-direction__close p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.usage-direction__emphasis {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amarelo);
  margin-top: 0.25rem;
}


/* =============================================
   SECTION 7 — DEMONSTRAÇÃO VISUAL
   ============================================= */
.visual-demo {
  padding: var(--sec-pad);
  background: var(--bege);
}

.visual-demo__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.visual-demo__label {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azul-escuro);
  text-align: center;
}

.visual-demo__mockups {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Desktop (CSS mockup) */
.device--desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device--desktop .device__screen {
  width: 260px;
  height: 160px;
  background: var(--branco);
  border: 2px solid var(--cinza-borda);
  border-radius: 6px;
  padding: 1rem;
  box-shadow: var(--sombra);
}

.device--desktop .device__stand {
  width: 60px;
  height: 8px;
  background: var(--cinza-borda);
  border-radius: 0 0 4px 4px;
}

/* Mobile (CSS mockup) */
.device--mobile .device__screen {
  width: 110px;
  height: 180px;
  background: var(--branco);
  border: 2px solid var(--cinza-borda);
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: var(--sombra);
}

/* Mini page bars */
.mini-page {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini-bar {
  border-radius: 2px;
}

.mini-bar--title {
  height: 12px;
  background: var(--azul-escuro);
  opacity: 0.7;
}

.mini-bar--sub {
  height: 7px;
  background: var(--azul-medio);
  opacity: 0.35;
  width: 75%;
}

.mini-bar--short {
  width: 55%;
}

.mini-bar--cta {
  height: 18px;
  background: var(--amarelo);
  width: 50%;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* WhatsApp badge */
.device--whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.whatsapp-bubble {
  width: 72px;
  height: 72px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.whatsapp-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--texto-suave);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}


/* =============================================
   SECTION 8 — VISIBILIDADE
   ============================================= */
.visibility {
  padding: var(--sec-pad);
  background: linear-gradient(180deg, #f7fbff 0%, var(--branco) 100%);
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
}

.visibility__container {
  max-width: 700px;
}

.visibility__transition {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--texto-suave);
  margin-bottom: 2.5rem;
  text-align: center;
}

.visibility__title {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 1.25rem;
}

.visibility__intro {
  font-size: 1.05rem;
  color: var(--texto-suave);
  margin-bottom: 1rem;
}

.visibility__lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 0.9rem;
}

.visibility__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.visibility__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  color: var(--texto-corpo);
}

.visibility__diagnosis {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.visibility__diagnosis li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul-escuro);
}

.visibility__diagnosis li::before {
  content: "👉";
  flex-shrink: 0;
}


/* =============================================
   SECTION 7 — BENEFÍCIOS
   ============================================= */
.benefits {
  padding: var(--sec-pad);
  background: var(--cinza-claro);
  border-top: 4px solid var(--amarelo);
}

.benefits__title {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--azul-escuro);
  text-align: center;
  margin-bottom: 1.75rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--branco);
  border-radius: var(--raio);
  border: 1px solid var(--cinza-borda);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--trans), box-shadow var(--trans);
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra);
}

.benefit-card__dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--amarelo);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul-escuro);
}


/* =============================================
   SECTION 8 — ALINHAMENTO
   ============================================= */
.alignment {
  padding: var(--sec-pad);
  background: var(--amarelo-suave);
  border-top: 3px solid var(--amarelo);
  border-bottom: 3px solid var(--amarelo);
}

.alignment__container {
  max-width: 660px;
}

.alignment__title {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 1.75rem;
}

.alignment__nao {
  color: var(--vermelho);
}

.alignment__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.alignment__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--texto-corpo);
}

.x-icon {
  color: var(--vermelho);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.alignment__highlight {
  background: var(--branco);
  border-left: 4px solid var(--azul-escuro);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--raio) var(--raio) 0;
  box-shadow: var(--sombra);
}

.alignment__highlight p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--azul-escuro);
}


/* =============================================
   SECTION 9 — DIREÇÃO
   ============================================= */
.direction {
  padding: var(--sec-pad);
  background: var(--branco);
}

.direction__container {
  max-width: 660px;
}

.direction__intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 1.5rem;
}

.direction__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.direction__list li {
  font-size: 1rem;
  color: var(--texto-corpo);
  padding-left: 1.5rem;
  position: relative;
}

.direction__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--azul-escuro);
  font-weight: 700;
}

.direction__close {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-escuro);
}


/* =============================================
   SECTION 10 — OFERTA
   ============================================= */
.offer {
  padding: var(--sec-pad-lg);
  background: var(--azul-escuro);
  color: var(--branco);
}

.offer__container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad-h);
}

.offer__intro {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.offer__list {
  display: inline-flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.offer__list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1.5rem;
  position: relative;
}

.offer__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--amarelo);
  font-size: 0.85rem;
}

.offer__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 0.5rem 0 2.5rem;
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amarelo);
  line-height: 1;
}

.price-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.18);
}

.offer__cta {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}


/* =============================================
   SECTION 11 — GARANTIA
   ============================================= */
.guarantee {
  padding: var(--sec-pad);
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-borda);
}

.guarantee__container {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.guarantee__title {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 2rem;
}

.guarantee__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--texto-suave);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.guarantee__risk {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vermelho);
  margin-bottom: 1.5rem;
}

.guarantee__turn {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--texto-suave);
  font-style: italic;
  margin-bottom: 1rem;
}

.guarantee__emphasis {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.guarantee__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.guarantee__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul-escuro);
}

.guarantee__list li::before {
  content: "👉";
  flex-shrink: 0;
}

.guarantee__list--refund li {
  font-size: 1.1rem;
}

.guarantee__and {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}


/* =============================================
   SECTION 12 — CTA FINAL
   ============================================= */
.cta-final {
  padding: var(--sec-pad-lg);
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
  text-align: center;
}

.cta-final__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-final__headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
}

.cta-final__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

.cta-final__btn {
  font-size: 1.15rem;
  padding: 1.1rem 2.75rem;
}


/* =============================================
   RESPONSIVO — TABLET  (≥ 640px)
   ============================================= */
@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =============================================
   RESPONSIVO — DESKTOP  (≥ 900px)
   ============================================= */
@media (min-width: 900px) {
  /* Hero — duas colunas */
  .hero__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero__content {
    max-width: 52%;
  }

  .hero__mockup {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
  }

  /* Benefícios — 3 colunas */
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Oferta — lista em 2 colunas */
  .offer__list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 3rem;
    row-gap: 0.65rem;
  }
}
