/* 1. VARIÁVEIS CSS (Design Tokens) */
:root {
  /* Cores */
  --azul-profundo: #0A1E3C;
  --azul-claro: #1A3A5C;
  --verde-neon: #00FF88;
  --amarelo-ouro: #FFD700;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
  --cinza-medio: #CCCCCC;
  --cinza-escuro: #333333;
  --preto: #000000;
  --whatsapp-green: #25d366;

  /* Tipografia */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --size-h1: 36px;
  --size-h2: 33px;
  --size-h3: 24px;
  --size-h4: 22px;
  --size-h5: 19px;
  --size-h6: 17px;
  --size-body: 16px;
  --size-small: 14px;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;

  /* Espaçamentos */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 22px;
  --spacing-lg: 36px;
  --spacing-xl: 58px;
  --spacing-xxl: 85px;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Transições */
  --transition: all 0.3s ease-in-out;
}

/* 2. RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--cinza-escuro);
  background-color: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. TIPOGRAFIA GLOBAL */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-md);
  color: var(--azul-profundo);
}

h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }
h4 { font-size: var(--size-h4); }
h5 { font-size: var(--size-h5); }
h6 { font-size: var(--size-h6); }

p {
  font-size: var(--size-body);
  margin-bottom: var(--spacing-sm);
}

strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 4. LAYOUT GLOBAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

/* 5. COMPONENTES REUTILIZÁVEIS */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: var(--size-body);
}

.btn--primary {
  background-color: var(--verde-neon);
  color: var(--azul-profundo);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background-color: #00E676;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--large {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--size-h5);
}

.btn__subtitle {
  display: block;
  font-size: var(--size-small);
  font-weight: 400;
  margin-top: var(--spacing-xs);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--azul-profundo);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--verde-neon);
  margin: var(--spacing-xs) auto 0;
  border-radius: 2px;
}

/* 6. HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-claro) 100%);
  color: var(--branco);
  padding: var(--spacing-xxl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero__content {
  flex: 1;
  max-width: 600px;
  animation: fadeInLeft 1s ease-out;
}

.hero__title {
  font-size: var(--size-h1);
  color: var(--branco);
  margin-bottom: var(--spacing-md);
}

.hero__subtitle {
  font-size: 35px;
  line-height: 1.6;
  color: var(--verde-neon);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.hero__subtitle-small {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
}

.hero__description {
  font-size: var(--size-body);
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-base);
}

.hero__description strong {
  color: var(--verde-neon);
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

.hero__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* 7. PROBLEM SECTION */
.problem {
  background: linear-gradient(135deg, #6793c6 0%, #001e40 100%);
}

.problem .section-title {
  color: var(--branco);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.problem__item {
  background-color: var(--branco);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.problem__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem__icon {
  font-size: 48px;
  color: var(--azul-profundo);
  margin-bottom: var(--spacing-md);
}

.problem__title {
  font-size: var(--size-h4);
  color: var(--azul-profundo);
  margin-bottom: var(--spacing-sm);
}

.problem__text {
  font-size: var(--size-body);
  color: var(--cinza-escuro);
}

.problem__text strong {
  color: var(--azul-profundo);
}

/* 8. AGITATION SECTION */
.agitation {
  background-color: var(--cinza-claro);
  padding: var(--spacing-xxl) 0;
}

.agitation .section-title {
  color: var(--azul-profundo);
}

.agitation__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.agitation__item {
  background-color: var(--branco);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 4px solid var(--azul-profundo);
  transition: var(--transition);
  flex: 0 1 calc(33.333% - var(--spacing-lg));
  min-width: 250px;
}

.agitation__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--verde-neon);
}

.agitation__item h3 {
  font-size: var(--size-h4);
  color: var(--azul-profundo);
  margin-bottom: var(--spacing-sm);
}

.agitation__item h4 {
  font-size: var(--size-h4);
  color: var(--azul-profundo);
  margin-bottom: var(--spacing-sm);
}

.agitation__item p {
  font-size: var(--size-body);
  color: var(--cinza-escuro);
}

.agitation__conclusion {
  text-align: center;
  font-size: var(--size-h4);
  color: var(--azul-profundo);
  margin-top: var(--spacing-xl);
}

.agitation__conclusion strong {
  color: var(--azul-profundo);
}

/* 9. SOLUTION SECTION */
.solution {
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-profundo) 100%);
  color: var(--branco);
  padding: var(--spacing-xxl) 0;
}

.solution .section-title {
  color: var(--branco);
}

.solution__intro {
  text-align: center;
  font-size: var(--size-h4);
  color: var(--verde-neon);
  margin-bottom: var(--spacing-lg);
}

.solution__intro strong {
  color: var(--verde-neon);
}

.solution__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.solution__service-item {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 6px;
  color: var(--branco);
  font-size: var(--size-body);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex: 1 1 auto;
  max-width: 350px;
}

.solution__service-item i {
  color: var(--verde-neon);
  font-size: var(--size-h5);
}

.solution__service-item strong {
  color: var(--verde-neon);
  font-weight: 700;
}

.solution__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.solution__step {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--spacing-lg);
  border-radius: 12px;
  text-align: center;
  color: var(--branco);
  box-shadow: var(--shadow-sm);
}

.solution__step-number {
  font-size: var(--size-h1);
  font-family: var(--font-secondary);
  color: var(--verde-neon);
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.solution__step-icon {
  font-size: 48px;
  color: var(--verde-neon);
  margin-bottom: var(--spacing-md);
}

.solution__step-title {
  font-size: var(--size-h3);
  color: #00D4FF;
  margin-bottom: var(--spacing-sm);
}

.solution__step-text {
  font-size: var(--size-body);
  margin-bottom: var(--spacing-sm);
}

.solution__step-list {
  text-align: left;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
  list-style: disc;
}

.solution__step-list li {
  font-size: var(--size-body);
  margin-bottom: var(--spacing-xs);
}

.solution__step-result {
  font-size: var(--size-body);
  margin-top: var(--spacing-md);
  color: var(--verde-neon);
}

.solution__step-result strong {
  color: var(--verde-neon);
}

.solution__bonus {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--verde-neon);
  padding: var(--spacing-lg);
  border-radius: 12px;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.solution__bonus-title {
  font-size: var(--size-h3);
  color: var(--amarelo-ouro);
  margin-bottom: var(--spacing-md);
}

.solution__bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution__bonus-list li {
  font-size: var(--size-h5);
  color: var(--branco);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.solution__bonus-list li::before {
  content: '✓';
  color: var(--verde-neon);
  font-weight: 700;
  margin-right: var(--spacing-xs);
}

/* 10. VALUE STACK SECTION */
.value-stack {
  background: linear-gradient(135deg, #0A1E3C 0%, #1A3A5C 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  color: var(--branco);
}

.value-stack .section-title {
  color: var(--branco);
  background-color: transparent;
  padding: var(--spacing-lg) var(--spacing-lg);
  border-radius: 10px;
  margin-bottom: var(--spacing-xl);
  box-shadow: none;
  font-size: var(--size-h3);
  font-weight: 700;
  text-align: center;
}

.value-stack .section-title::after {
  background: linear-gradient(90deg, transparent, var(--verde-neon), transparent);
  margin-top: var(--spacing-sm);
}

.value-stack__wrapper {
  width: 100%;
  padding: var(--spacing-xl) 0;
}

.value-stack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.value-stack__item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: 12px;
  border: 2px solid var(--verde-neon);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  text-align: center;
}

.value-stack__item:hover {
  transform: translateY(-8px);
  background-color: rgba(0, 255, 136, 0.1);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
}

.value-stack__title {
  color: var(--azul-profundo);
  background-color: var(--branco);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: var(--size-h3);
  font-weight: 700;
}

.value-stack__description {
  color: #B0E0E6;
  margin-bottom: var(--spacing-sm);
  font-size: var(--size-body);
}

.value-stack__value {
  color: var(--verde-neon);
  font-weight: 700;
  font-size: var(--size-body);
  margin-top: var(--spacing-sm);
}

.value-stack__value strong {
  color: var(--verde-neon);
}

.value-stack__summary {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--verde-neon);
  padding: var(--spacing-xl);
  border-radius: 16px;
  text-align: center;
  margin-top: var(--spacing-xl);
  backdrop-filter: blur(10px);
}

.value-stack__total {
  font-size: var(--size-h3);
  color: var(--branco);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.value-stack__total strong {
  color: var(--verde-neon);
}

.value-stack__price {
  font-size: 28px;
  color: var(--amarelo-ouro);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.value-stack__savings {
  font-size: var(--size-body);
  color: var(--branco);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.value-stack__savings strong {
  color: var(--verde-neon);
}

.value-stack__explanation {
  font-size: var(--size-body);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.value-stack__explanation p {
  color: var(--branco);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.value-stack__explanation strong {
  color: var(--verde-neon);
  font-weight: 700;
}

/* 11. SOCIAL PROOF SECTION */
.social-proof {
  background-color: var(--cinza-medio);
  padding: var(--spacing-xxl) 0;
}

.social-proof .section-title {
  color: var(--azul-profundo);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial {
  background-color: var(--branco);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== FOTO CIRCULAR DO DEPOIMENTO ===== */
.testimonial__image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--azul-claro);
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* Responsividade para Tablet */
@media (max-width: 1024px) {
  .testimonial__image {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
  .testimonial__image {
    width: 110px;
    height: 110px;
    border-width: 3px;
    margin-bottom: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .testimonial__image {
    width: 95px;
    height: 95px;
    border-width: 2px;
    margin-bottom: var(--spacing-xs);
  }
}

.testimonial__quote {
  font-style: italic;
  font-size: var(--size-body);
  color: var(--cinza-escuro);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.testimonial__author {
  font-size: var(--size-small);
  color: var(--azul-profundo);
  font-weight: 600;
  text-align: center;
}

.testimonial__author strong {
  font-size: var(--size-body);
  color: var(--azul-profundo);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.testimonial__author::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--azul-profundo);
  margin: var(--spacing-sm) auto 0;
}

/* 12. GUARANTEE SECTION */
.guarantee {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-claro) 100%);
  color: var(--branco);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.guarantee .section-title {
  color: var(--amarelo-ouro);
}

.guarantee .section-title::after {
  background-color: var(--verde-neon);
}

.guarantee__content {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.guarantee__text {
  font-size: var(--size-h2);
  color: var(--verde-neon);
  margin-bottom: var(--spacing-md);
}

.guarantee__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}

.guarantee__list li {
  white-space: normal;
  word-wrap: break-word;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
  position: relative;
}

.guarantee__list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde-neon);
  font-weight: bold;
}

.guarantee__promise {
  font-size: var(--size-h3);
  color: var(--verde-neon);
  margin-bottom: var(--spacing-md);
}

.guarantee__promise strong {
  color: var(--verde-neon);
}

.guarantee__explanation {
  font-size: var(--size-h5);
  color: var(--branco);
  margin-bottom: var(--spacing-lg);
}

.guarantee__conclusion {
  font-size: var(--size-h4);
  color: var(--amarelo-ouro);
  margin-bottom: var(--spacing-xl);
}

.guarantee__conclusion strong {
  color: var(--amarelo-ouro);
}

/* 13. URGENCY SECTION */
.urgency {
  background: linear-gradient(135deg, #0A1E3C 0%, #1A3A5C 100%);
  color: var(--branco);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.urgency .section-title {
  color: var(--branco);
}

.urgency .section-title::after {
  background-color: var(--verde-neon);
}

.urgency__content {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.urgency__text {
  font-size: var(--size-h4);
  color: var(--branco);
  margin-bottom: var(--spacing-md);
}

.urgency__highlight {
  font-size: var(--size-h3);
  color: var(--verde-neon);
  margin-bottom: var(--spacing-md);
}

.urgency__highlight strong {
  color: var(--verde-neon);
}

.urgency__warning {
  font-size: var(--size-h3);
  color: var(--amarelo-ouro);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.urgency__warning strong {
  color: var(--amarelo-ouro);
}

.urgency__consequence {
  font-size: var(--size-h4);
  color: var(--branco);
  margin-bottom: var(--spacing-xl);
}

/* ===========================
   FAQ SECTION
=========================== */

.faq {
  background: linear-gradient(135deg, #012d60 0%, #346fb3 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.faq .section-title {
  color: var(--branco);
}

.faq__items {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--branco);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--sombra);
  overflow: hidden;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 19px;
  font-weight: 600;
  color: var(--azul-profundo);
  background-color: var(--branco);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq__question:hover {
  background-color: var(--cinza-claro);
}

.faq__question i {
  transition: transform 0.3s ease;
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: var(--cinza-claro);
  color: var(--cinza-escuro);
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-md);
}

.faq__answer p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.6;
}

/* ===========================
   RESPONSIVIDADE FAQ
=========================== */

@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq__question {
    font-size: 18px;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .faq__answer {
    padding: 0 var(--spacing-md);
    max-height: 0; /* ← GARANTIR que está 0 quando fechado */
    overflow: hidden; /* ← GARANTIR que está oculto */
  }

  /* CORREÇÃO: Aumentar o container das respostas no mobile */
  .faq__item.active .faq__answer {
    max-height: 400px; /* ← AUMENTADO para caber as respostas longas */
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg);
  }

  .faq__answer p {
    font-size: 16px; /* Mantém a fonte igual */
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .faq__question {
    font-size: 16px;
  }

  .faq__answer {
    max-height: 0; /* ← GARANTIR que está 0 quando fechado */
    overflow: hidden; /* ← GARANTIR que está oculto */
  }

  .faq__item.active .faq__answer {
    max-height: 450px; /* ← Ainda maior para telas muito pequenas */
  }

  .faq__answer p {
    font-size: 15px;
  }
}

/* 15. FINAL CTA SECTION */
.final-cta {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--preto) 100%);
  color: var(--branco);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.final-cta .section-title {
  color: var(--branco);
  font-size: var(--size-h2);
}

.final-cta .section-title::after {
  background-color: var(--verde-neon);
}

.final-cta__content {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.final-cta__text {
  font-size: var(--size-h4);
  color: var(--branco);
  margin-bottom: var(--spacing-md);
}

.final-cta__text strong {
  color: var(--verde-neon);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #061348;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-section-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 100px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    background: white;
    padding: 2px;
}

.footer-link-whatsapp {
    color: #25d366 !important;
    font-weight: 600;
}

.footer-link-whatsapp:hover {
    color: #34d399 !important;
}

.footer-link-maps {
    color: var(--primary-light) !important;
}

.footer-link-maps:hover {
    color: #60a5fa !important;
}

/* Social Media Bar */
.footer-social {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-social-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social-link.facebook { background: #1877f2; }
.footer-social-link.facebook:hover { background: #166fe5; }

.footer-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social-link.instagram:hover { filter: brightness(1.1); }

.footer-social-link.googlemaps { background: #ea4335; }
.footer-social-link.googlemaps:hover { background: #d33b28; }

.footer-social-link.whatsapp { background: #25d366; }
.footer-social-link.whatsapp:hover { background: #128c7e; }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsivo Footer */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* 17. ANIMAÇÕES */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero__title, .hero__subtitle, .hero__description, .hero .btn {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero__title { animation-delay: 0.1s; }
.hero__subtitle { animation-delay: 0.3s; }
.hero__description:nth-of-type(1) { animation-delay: 0.5s; }
.hero__description:nth-of-type(2) { animation-delay: 0.7s; }
.hero__description:nth-of-type(3) { animation-delay: 0.9s; }
.hero .btn { animation-delay: 1.1s; }

/* 18. RESPONSIVIDADE COMPLETA */
@media (max-width: 1024px) {
  :root {
    --size-h1: 40px;
    --size-h2: 38px;
    --size-h3: 24px;
    --size-h4: 20px;
    --size-h5: 18px;
    --size-body: 15px;
    --spacing-xl: 48px;
    --spacing-xxl: 72px;
  }

  .hero__container {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    margin-bottom: var(--spacing-lg);
  }

  .hero__image {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }

  .problem__grid,
  .agitation__content,
  .solution__steps,
  .testimonials__grid,
  .value-stack__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial__image {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
}

@media (max-width: 768px) {
  :root {
    --size-h1: 36px;
    --size-h2: 32px;
    --size-h3: 22px;
    --size-h4: 18px;
    --size-h5: 16px;
    --size-body: 14px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-xxl: 64px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .section-title {
    margin-bottom: var(--spacing-lg);
  }

  .hero__title {
    font-size: var(--size-h1);
  }

  .hero__subtitle {
    font-size: 32px;
  }

  .hero__image {
    margin-bottom: var(--spacing-md);
  }

  .btn--large {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--size-h5);
  }

  .problem__grid,
  .agitation__content,
  .solution__steps,
  .testimonials__grid,
  .value-stack__grid {
    grid-template-columns: 1fr;
  }

  .agitation__item {
    flex: 0 1 100%;
  }

  .solution__step-number {
    font-size: var(--size-h3);
  }

  .solution__step-icon {
    font-size: 30px;
  }

  .solution__bonus-list li {
    font-size: var(--size-body);
  }

  .value-stack__title {
    font-size: var(--size-h4);
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .value-stack__total {
    font-size: var(--size-h4);
  }

  .value-stack__price {
    font-size: 24px;
  }

  .guarantee__list {
    max-width: 100%;
  }

  .guarantee__list li {
    font-size: var(--size-body);
  }

  .guarantee__promise {
    font-size: var(--size-h4);
  }

  .urgency__warning {
    font-size: var(--size-h3);
  }

  .faq__question {
    font-size: 18px;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .faq__answer {
    padding: var(--spacing-xs) var(--spacing-md) var(--spacing-sm);
  }

  .faq__answer p {
    font-size: 16px;
  }

  .final-cta__text {
    font-size: var(--size-body);
  }

  .testimonial__image {
    width: 110px;
    height: 110px;
    border-width: 3px;
  }

  .footer__social-icons {
    gap: var(--spacing-sm);
  }

  .footer__social-link {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
      0 8px 24px rgba(0, 255, 136, 0.4),
      0 0 0 6px rgba(0, 255, 136, 0.15),
      inset -2px -2px 4px rgba(0, 0, 0, 0.2),
      inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    color: white;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }

  .whatsapp-floating-btn:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 
      0 12px 32px rgba(0, 255, 136, 0.5),
      0 0 0 8px rgba(0, 255, 136, 0.2),
      inset -2px -2px 6px rgba(0, 0, 0, 0.25),
      inset 2px 2px 6px rgba(255, 255, 255, 0.4);
  }

  .whatsapp-floating-btn svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    pointer-events: none;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-modal-content {
    width: 95%;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  :root {
    --size-h1: 37px;
    --size-h2: 30px;
    --size-h3: 24px;
    --size-h4: 21px;
    --size-body: 17px;
  }

  .hero__title {
    font-size: var(--size-h2);
  }

  .hero__subtitle {
    font-size: 24px;
  }

  .btn--large {
    font-size: var(--size-body);
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .btn__subtitle {
    font-size: 11px;
  }

  .section-title {
    font-size: var(--size-h2);
  }

  .problem__icon {
    font-size: 38px;
  }

  .agitation__item h3,
  .agitation__item h4 {
    font-size: var(--size-h4);
  }

  .solution__service-item {
    font-size: var(--size-small);
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .solution__step-title {
    font-size: var(--size-h4);
  }

  .solution__bonus-title {
    font-size: var(--size-h4);
  }

  .value-stack__title {
    font-size: var(--size-h5);
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .value-stack__price {
    font-size: 20px;
  }

  .testimonial__quote {
    font-size: var(--size-small);
  }

  .testimonial__image {
    width: 95px;
    height: 95px;
    border-width: 2px;
  }

  .guarantee__list li {
    font-size: var(--size-small);
  }

  .urgency__warning {
    font-size: var(--size-h4);
  }

  .faq__question {
    font-size: 16px;
  }

  .faq__answer p {
    font-size: 14px;
  }

  .final-cta__text {
    font-size: var(--size-small);
  }

  .footer {
    padding: var(--spacing-sm) 0;
  }

  .footer__content {
    gap: var(--spacing-xs);
  }

  .footer__logo img {
    max-width: 90px;
  }

  .footer__text {
    font-size: 12px;
  }

  .footer__contact {
    font-size: 12px;
    line-height: 1.2;
  }

  .footer__social-title {
    font-size: var(--size-body);
    margin-bottom: var(--spacing-xs);
  }

  .footer__social-icons {
    gap: var(--spacing-xs);
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-floating-btn svg {
    width: 32px;
    height: 32px;
  }
}

/* 19. UTILITÁRIOS */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-sm { margin-top: var(--spacing-sm); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mb-md { margin-bottom: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
/* ===== VARIÁVEIS CSS ===== */
:root {
  --topbar-bg-primary: #0d2443;
  --topbar-bg-secondary: #3e3b87;
  --topbar-text-white: #ffffff;
  --topbar-shadow: rgba(0, 0, 0, 0.15);
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #1fa855;
}

/* ===== TOP BAR PRINCIPAL ===== */
.top-bar {
  background: linear-gradient(90deg, var(--topbar-bg-primary), var(--topbar-bg-secondary));
  padding: 12px 20px;
  box-shadow: 0 4px 8px var(--topbar-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ===== SEÇÃO LOGO + NOME ===== */
.top-bar__logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.top-bar__logo-image {
  width: 100px;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
}

.top-bar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-bar__clinic-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--topbar-text-white);
  letter-spacing: 0.5px;
}

.top-bar__doctor-name {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== SEÇÃO ENDEREÇO ===== */
.top-bar__address-section {
  flex: 1;
  display: flex;
  align-items: center;
}

.top-bar__address-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--topbar-text-white);
  transition: opacity 0.3s ease;
}

.top-bar__address-link:hover {
  opacity: 0.85;
}

.top-bar__location-icon {
  font-size: 18px;
  flex-shrink: 0;
  color: var(--whatsapp-green);
}

.top-bar__address-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
/* ===== BOTÃO WHATSAPP ===== */
.top-bar__whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--whatsapp-green);
  color: var(--topbar-text-white);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}


/* ===== BOTÃO FLUTUANTE WHATSAPP - 3D MODERN DESIGN ===== */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 
    0 8px 24px rgba(0, 255, 136, 0.4),
    0 0 0 6px rgba(0, 255, 136, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  color: white;
  border: none;
  padding: 0;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 
    0 12px 32px rgba(0, 255, 136, 0.5),
    0 0 0 8px rgba(0, 255, 136, 0.2),
    inset -2px -2px 6px rgba(0, 0, 0, 0.25),
    inset 2px 2px 6px rgba(255, 255, 255, 0.4);
}

.whatsapp-floating-btn:active {
  transform: scale(0.95);
}

.whatsapp-floating-btn svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.whatsapp-tooltip {
  position: absolute;
  right: 85px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ===== MODAL DO FORMULÁRIO ===== */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.whatsapp-modal.active {
  opacity: 1;
  pointer-events: all;
}

.whatsapp-modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  padding: 35px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  padding: 0;
}

.whatsapp-modal-close:hover {
  color: #333;
}

.whatsapp-modal-header {
  margin-bottom: 25px;
  text-align: center;
}

.whatsapp-modal-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--azul-profundo);
  margin-bottom: 8px;
}

.whatsapp-modal-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== FORMULÁRIO ===== */
.whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--verde-neon);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
  background-color: rgba(0, 255, 136, 0.02);
}

.whatsapp-submit-btn {
  padding: 14px 20px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-submit-btn:active {
  transform: translateY(0);
}

.whatsapp-form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .top-bar__container {
    gap: 20px;
  }

  .top-bar__address-text {
    font-size: 12px;
  }

  .top-bar__clinic-name {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 12px 15px;
  }

  .top-bar__container {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .top-bar__logo-section {
    width: 100%;
    justify-content: center;
    order: 1;
  }

  .top-bar__address-section {
    width: 100%;
    justify-content: center;
    order: 2;
    flex: none;
  }

  .top-bar__address-link {
    flex-direction: column;
    text-align: center;
  }

  .top-bar__whatsapp-btn {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .top-bar__clinic-name {
    font-size: 16px;
  }

  .top-bar__doctor-name {
    font-size: 12px;
  }

  .top-bar__address-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 10px 12px;
  }

  .top-bar__container {
    gap: 12px;
  }

  .top-bar__logo-image {
    width: 45px;
    height: 45px;
  }

  .top-bar__clinic-name {
    font-size: 15px;
  }

  .top-bar__whatsapp-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .top-bar__whatsapp-icon {
    font-size: 16px;
  }
}