/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #648263;
  --primary-dark: #4a6249;
  --primary-light: #8aaa89;
  --secondary: #f2a9c6;
  --dark: #1a2419;
  --light: #f9f7f5;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-muted: #666666;

  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 2rem;
}

.section-title.centered {
  text-align: center;
}

.section-title.light {
  color: var(--white);
}

.highlight {
  color: var(--primary);
}

.highlight-pink {
  color: var(--secondary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 130, 99, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  background-color: var(--light);
  background-image: url('assets/fundo-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 247, 245, 0.64);
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-text-wrapper {
  flex: 1;
  padding: 0;
}

.hero-logo {
  width: 160px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  flex: 0 0 460px;
  will-change: transform;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}

picture {
  display: block;
}

/* ============================================
   FEEDBACKS SECTION
   ============================================ */
.feedbacks-section {
  background-color: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.feedbacks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 15% 50%, rgba(100, 130, 99, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 45% 80% at 85% 50%, rgba(242, 169, 198, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.feedbacks-container {
  text-align: center;
}

.reviews-widget-wrapper {
  margin-top: 40px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-content {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* Glassmorphism feedback cards */
.feedback-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 28px 24px;
  width: 320px;
  flex-shrink: 0;
  text-align: left;
  transition: background 0.3s, border-color 0.3s;
}

.feedback-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(100, 130, 99, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  min-width: 0;
}

.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.author-source {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin: 2px 0 0;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.stars i {
  color: #FFD700;
  font-size: 0.85rem;
}

.feedback-card .text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}

.reviews-google-badge {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.reviews-google-badge img {
  height: 38px;
  width: auto;
  opacity: 0.8;
}

/* ============================================
   PILARES SECTION
   ============================================ */
.pilares-section {
  background-color: var(--white);
  padding: 100px 0;
}

.pilares-intro {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
}

.pilares-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pilar-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  will-change: transform;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-dark);
}

.pilar-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.pilar-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.pilar-card:hover .pilar-image-wrapper img {
  transform: scale(1.05);
}

.pilar-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.5px;
  padding: 20px 20px 8px;
  line-height: 1.2;
}

.pilar-desc {
  font-size: 0.9rem;
  color: var(--white);
  padding: 0 20px 24px;
  line-height: 1.6;
  text-align: justify;
}

.cta-pilares {
  text-align: center;
}

.btn-cta {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(100, 130, 99, 0.3);
}

/* ============================================
   TAGLINE / BUSCA SECTION
   ============================================ */
.tagline-section {
  background-color: var(--light);
  background-image: url('assets/fundo-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.tagline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 247, 245, 0.60);
}

.tagline-section .container {
  position: relative;
  z-index: 1;
}

.busca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.busca-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  will-change: transform;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.busca-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.busca-card-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.busca-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.busca-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: justify;
}

.tagline-conclusion {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--dark);
  letter-spacing: 0.5px;
}

.tagline-cta {
  margin-top: 32px;
}

/* ============================================
   ESTATÍSTICAS SECTION
   ============================================ */
.estatisticas-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.estatisticas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.estatisticas-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 36, 25, 0.85);
  z-index: 1;
}

.estatisticas-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.estatistica-item {
  color: var(--white);
}

.numero {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 10rem);
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 12px;
}

.titulo-estatistica {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.descricao-estatistica {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  text-align: justify;
}

/* ============================================
   PROGRAMA SECTION
   ============================================ */
.programa-section {
  position: relative;
  background-image: url('assets/sunset-hero-esmaecida.jpg');
  background-size: cover;
  background-position: center 42%;
  padding: 0 0 100px;
}

.carrossel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 72px 0 56px;
  position: relative;
  z-index: 1;
  touch-action: none;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carrossel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.carrossel-track picture {
  flex-shrink: 0;
  min-width: 140px;
}

.carrossel-track img {
  height: 220px;
  width: auto;
  min-width: 140px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  flex-shrink: 0;
}

.programa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 36, 25, 0.12);
}

.programa-container {
  position: relative;
  z-index: 1;
  margin-top: 72px;
}

/* Split card: verde, na lateral — o resto do fundo (foto) fica visível */
.programa-split {
  display: flex;
}

.programa-split-esq {
  background: var(--primary);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  max-width: 540px;
  width: 100%;
}

.programa-split-titulo {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.programa-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.programa-lista {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.programa-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.programa-split-esq .programa-lista li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.programa-lista li::before {
  content: '✦';
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.programa-split-esq .programa-lista li::before {
  color: var(--secondary);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  margin-top: auto;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-white:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.programa-subtitulo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.intro-texto {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sobre-mim-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* ============================================
   SOBRE MIM SECTION
   ============================================ */
.sobre-mim-section {
  background-color: var(--secondary);
  padding: 80px 0;
}

.sobre-mim-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-mim-imagem {
  will-change: transform;
}

.sobre-mim-imagem img {
  width: 100%;
  height: auto;
  display: block;
}

.sobre-mim-texto p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.sobre-mim-texto p:first-child {
  font-size: 1.05rem;
  color: var(--text);
}

.sobre-mim-heading .highlight {
  color: var(--dark);
}

.sobre-mim-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dark);
  text-align: center;
  margin: 20px 0 0;
  padding: 0 8px;
  line-height: 1.6;
  border: none;
}

.formacao-lista {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
}

.formacao-lista li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.formacao-lista li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   PARCEIROS SECTION
   ============================================ */
.parceiros-section {
  background-color: var(--white);
  padding: 100px 0;
}

.parceiros-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.parceiro-intro {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.parceiro-principal {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
}

.parceiro-descricao {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.parceiros-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.parceiro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.parceiro-item a,
.parceiro-item .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.parceiro-item a:hover,
.parceiro-item .logo-item:hover {
  background-color: var(--light);
  transform: scale(1.06);
}

.parceiro-item img {
  height: 130px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.parceiro-cupom {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--primary-dark);
  background: rgba(100, 130, 99, 0.12);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  border: none;
}

button.parceiro-cupom {
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

button.parceiro-cupom:hover {
  background: var(--primary);
  color: var(--white);
}

button.parceiro-cupom:active {
  transform: scale(0.96);
}

button.parceiro-cupom.copiado {
  background: var(--primary);
  color: var(--white);
}

.parceiro-info-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.parceiro-info-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.parceiro-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 36, 25, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.parceiro-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.parceiro-modal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s ease;
}

.parceiro-modal-overlay.open .parceiro-modal-card {
  transform: translateY(0) scale(1);
}

.parceiro-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.parceiro-modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.parceiro-modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  padding-right: 20px;
}

.parceiro-modal-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background-color: var(--light);
  background-image: url('assets/fundo-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 247, 245, 0.60);
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 820px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: -12px;
  margin-bottom: 48px;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  min-height: 86px;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 2px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--primary-dark);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: justify;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
  background-color: var(--dark);
  color: var(--white);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title-cta {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.footer-subtitle-cta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-cta-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-info a:hover {
  color: var(--primary-light);
}

.info-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--secondary);
}

.social-icons i {
  font-size: 1.6rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-bar p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.developer-link {
  color: var(--primary-light);
  font-weight: 600;
  transition: color 0.2s;
}

.developer-link:hover {
  color: var(--secondary);
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    gap: 32px;
    padding: 60px 0;
  }

  .hero-image-wrapper {
    flex: 0 0 320px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  }

  .parceiros-container {
    gap: 32px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 56px 0 48px;
  }

  .hero-text-wrapper {
    padding: 0;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .hero-description {
    font-size: 0.97rem;
    margin: 0 auto 28px;
  }

  .hero-logo {
    margin: 0 auto 20px;
  }

  .hero-buttons-wrapper {
    justify-content: center;
  }

  .hero-image-wrapper {
    display: none;
  }

  .pilares-cards-wrapper {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 48px;
  }

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

  .programa-container {
    margin-top: 40px;
  }

  .programa-split-esq {
    padding: 40px 28px;
    max-width: none;
  }

  .btn-white {
    align-self: stretch;
    text-align: center;
  }

  .apresentacao-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .foto-wrapper {
    height: 400px;
    order: -1;
  }

  .texto-wrapper {
    padding: 60px 24px;
    text-align: center;
  }

  .sobre-mim-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-mim-imagem {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    will-change: auto;
    transform: none !important;
  }

  .estatisticas-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .parceiro-item img {
    height: auto;
    max-height: 70px;
    max-width: 100%;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .parceiros-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-buttons-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .tagline-image-wrapper {
    border-radius: 8px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-animate {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-animate.fade-up    { transform: translateY(48px); }
.scroll-animate.fade-left  { transform: translateX(-56px); }
.scroll-animate.fade-right { transform: translateX(56px); }
.scroll-animate.scale-up   { transform: scale(0.88); }
.scroll-animate.fade-in    { transform: none; }

.scroll-animate.is-visible {
  opacity: 1;
  transform: none;
}
