:root {
  --bg: #ffffff;
  --text: #2a2a2a;
  --muted: #6b7280;
  --rose: #ff4d8d;
  --rose-600: #e0437f;
  --lilac: #b788f2;
  --lilac-50: #f5efff;
  --lilac-600: #9a6be3;
  --primary: #F76D25;
  --primary-600: #d85f21;
  --surface: #ffffff;
  --shadow: 0 10px 30px rgba(247, 109, 37, 0.18);
  --container: 1100px;
}

/* ===== CARROSSEL MOBILE - DESIGN MODERNO E CLEAN ===== */
@media (max-width: 767px) {
  /* Container principal do carrossel - design moderno */
  #depoimentos-carrossel .testimonial-carousel {
    position: relative;
    max-width: none;
    margin: 0 -24px; /* Quebra o container para usar toda a largura */
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  /* Viewport - area visivel do carrossel */
  #depoimentos-carrossel .carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 24px;
    margin: 0;
    /* Esconde a scrollbar mas mantem funcionalidade */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  #depoimentos-carrossel .carousel-viewport::-webkit-scrollbar {
    display: none;
  }
  
  /* Track - container dos slides */
  #depoimentos-carrossel .carousel-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  /* Cada slide - design moderno */
  #depoimentos-carrossel .carousel-slide {
    flex: 0 0 calc(100vw - 68px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  
  /* Caixa do depoimento - design ultra-moderno */
  #depoimentos-carrossel .carousel-slide blockquote {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(247, 109, 37, 0.08);
    border-radius: 24px;
    padding: 28px 24px 24px;
    margin: 0;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.04),
      0 2px 16px rgba(0, 0, 0, 0.02),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: auto;
    min-height: 220px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Efeito hover/touch para mobile */
  #depoimentos-carrossel .carousel-slide blockquote:active {
    transform: scale(0.98);
    box-shadow: 
      0 6px 20px rgba(0, 0, 0, 0.08),
      0 2px 12px rgba(0, 0, 0, 0.06);
  }
  
  /* Aspas decorativas modernas */
  #depoimentos-carrossel .carousel-slide blockquote::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 48px;
    font-weight: 300;
    color: rgba(247, 109, 37, 0.15);
    line-height: 1;
    font-family: Georgia, serif;
  }
  
  /* Texto do depoimento - tipografia moderna */
  #depoimentos-carrossel .quote {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin: 8px 0 16px 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  /* Quando expandido, mostra texto completo */
  #depoimentos-carrossel .quote-wrap.expanded .quote {
    display: block;
    -webkit-line-clamp: initial;
  }
  
  /* Botao "Ver mais" - design moderno */
  #depoimentos-carrossel .see-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    background: rgba(247, 109, 37, 0.08);
    border: 1px solid rgba(247, 109, 37, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
  }
  
  #depoimentos-carrossel .see-more:hover,
  #depoimentos-carrossel .see-more:active {
    background: rgba(247, 109, 37, 0.12);
    border-color: rgba(247, 109, 37, 0.3);
    transform: scale(1.02);
  }
  
  /* Footer com avatar e nome - layout moderno */
  #depoimentos-carrossel blockquote footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
  }
  
  #depoimentos-carrossel blockquote footer a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s ease;
  }
  
  #depoimentos-carrossel blockquote footer a:hover {
    color: var(--primary);
  }
  
  /* Avatar - design moderno */
  #depoimentos-carrossel .avatar-inline {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(247, 109, 37, 0.1);
    transition: border-color 0.2s ease;
  }
  
  #depoimentos-carrossel blockquote footer a:hover .avatar-inline {
    border-color: rgba(247, 109, 37, 0.3);
  }
  
  /* Nome - tipografia moderna */
  #depoimentos-carrossel blockquote footer strong {
    font-weight: 600;
    color: inherit;
    font-size: 15px;
    letter-spacing: 0.01em;
  }
  
  /* Ocultar botoes de navegacao no mobile para design mais clean */
  #depoimentos-carrossel .carousel-btn {
    display: none !important;
  }
  
  /* Indicador visual sutil de scroll */
  #depoimentos-carrossel::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(247, 109, 37, 0.3), transparent);
    border-radius: 2px;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
}
.container { 
  max-width: var(--container); 
  margin: 0 auto; 
  padding: 0 24px; 
  display: block;
  text-align: center;
}
/* Header container spacing */
.site-header .container { padding: 0 40px; text-align: left; }

/* Centralizacao adicional para divs principais */
.hero-inner, .about-grid, .price-banner, .cards, .testimonials {
  margin: 0 auto;
  text-align: center;
}

/* Garantir que o conteudo de texto fique alinhado adequadamente */
.section p, .section h2, .section h3 {
  text-align: center;
}

/* Manter alinhamento a esquerda para listas */
.bullet-list, .about-list, .faq-list {
  text-align: left;
}

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: linear-gradient(90deg, rgba(247,109,37,0.94), rgba(216,95,33,0.94)); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255,255,255,0.2); transition: background 200ms ease, backdrop-filter 200ms ease; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; padding: 4px 0; transition: min-height 200ms ease, padding 200ms ease; }
.brand { display: flex; align-items: center; letter-spacing: 0.2px; }
.brand img { display: block; height: 96px; transition: height 200ms ease; }
.site-header nav { display: flex; gap: 20px; align-items: center; }
.site-header nav a { color: #fff; text-decoration: none; font-weight: 700; padding: 8px 10px; border-radius: 10px; }
.site-header nav a:hover { color: #ffe9df; }

/* Shrink ao rolar */
.site-header.shrink { box-shadow: 0 6px 20px rgba(0,0,0,0.08); background: linear-gradient(90deg, rgba(247,109,37,0.98), rgba(216,95,33,0.98)); backdrop-filter: blur(2px); }
.site-header.shrink .header-inner { min-height: 76px; padding: 2px 0; }
.site-header.shrink .brand img { height: 84px; }

/* Compensar a altura do header fixo no conteudo */
main { padding-top: 100px; }

/* Buttons */
.btn { display: inline-block; border-radius: 12px; text-decoration: none; font-weight: 700; padding: 14px 18px; }
.btn-sm { padding: 10px 12px; font-size: 14px; }
.btn-lg { padding: 18px 22px; font-size: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-600); }
.btn-outline { border: 1px solid #e5e7eb; color: var(--text); }
.btn-outline:hover { border-color: var(--primary); }

/* Ultra modern button variants for header nav */
.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: all 0.2s ease;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(247, 109, 37, 0.24), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(247, 109, 37, 0.28);
}

/* Brand hover polish */
.brand img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 8px 24px rgba(255,255,255,0.12));
}

/* Sections */
.section { padding: 64px 0 48px; }
.section h2 { position: relative; font-size: 38px; line-height: 1.2; font-weight: 800; letter-spacing: 0.2px; text-align: center; margin: 0 0 18px; }
.section h2::after { content: ""; display: block; width: 84px; height: 4px; border-radius: 999px; background: var(--primary); margin: 10px auto 0; box-shadow: 0 2px 10px rgba(247,109,37,0.25); }
.section .subtitle { color: var(--muted); }
.section p { font-size: 18px; line-height: 1.75; margin-top: 14px; margin-bottom: 14px; letter-spacing: 0.1px; max-width: 70ch; margin-left: auto; margin-right: auto; hyphens: auto; }
.section-emphasis { background: linear-gradient(180deg, #fff, rgba(247,109,37,0.06)); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section-soft { background: #faf7ff; }

/* Conexao (card destacado) */
#conexao .container {
  background: linear-gradient(180deg, #ffffff, rgba(247,109,37,0.03));
  border: 1px solid rgba(247, 109, 37, 0.28);
  border-radius: 16px;
  padding: 36px 26px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 200ms ease, transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
#conexao .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--rose-600));
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
#conexao .container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(247, 109, 37, 0.22);
}
#conexao h2 { color: var(--primary); }
#conexao .highlight { color: var(--primary); font-weight: 700; }

/* Impacto (parecido com Conexao) */
#impacto .container {
  background: linear-gradient(180deg, #ffffff, rgba(247,109,37,0.03));
  border: 1px solid rgba(247, 109, 37, 0.28);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 200ms ease, transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
#impacto .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--rose-600));
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
#impacto .container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(247, 109, 37, 0.22);
}
#impacto h2 { color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 0;
  background: linear-gradient(180deg, rgba(247,109,37,0.10), rgba(247,109,37,0.04));
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; width: 700px; height: 700px; left: -200px; top: -240px;
  background: radial-gradient(closest-side, rgba(247,109,37,0.22), rgba(247,109,37,0) 70%);
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -160px; bottom: -160px;
  background: radial-gradient(closest-side, rgba(247,109,37,0.18), rgba(247,109,37,0) 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.hero-copy { text-align: center; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-image { width: 100%; max-width: 640px; height: auto; filter: drop-shadow(0 30px 50px rgba(247,109,37,0.25)) drop-shadow(0 10px 20px rgba(247,109,37,0.20)); transform: translateY(0); transition: transform 400ms ease, filter 400ms ease; will-change: transform; }
.hero-image:hover { transform: translateY(-4px) scale(1.02); filter: drop-shadow(0 40px 60px rgba(247,109,37,0.30)) drop-shadow(0 14px 26px rgba(247,109,37,0.26)); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(247,109,37,0.08); border: 1px solid rgba(247,109,37,0.25); color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 3px rgba(247,109,37,0.18); }
.hero h1 { font-size: 52px; margin: 0 0 12px; }
.hero .subtitle { max-width: 780px; margin: 18px auto 24px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* Ajuste do gap na Hero para mobile */
@media (max-width: 640px) {
  .cta-group { gap: 14px; }
}

/* Lists */
.bullet-list { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 0; margin: 16px 0 0; list-style: none; }
.bullet-list li { padding: 14px 16px; background: var(--surface); border: 1px solid #eee; border-radius: 14px; box-shadow: var(--shadow); }
.pains li { position: relative; padding-left: 38px; }
.pains li::before { content: "✦"; position: absolute; left: 14px; color: var(--primary); }
.transition { margin-top: 20px; font-weight: 600; color: var(--primary); text-align: center; }
.center { text-align: center; }

/* Emphasis narrow */
.narrow { max-width: 820px; }
.highlight { color: var(--primary); font-weight: 700; }

/* Cards - Ultra Modern Design */
.cards { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 24px; 
  padding: 0;
}

.card { 
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 109, 37, 0.1);
  border-radius: 24px; 
  padding: 32px 24px 28px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6b35, var(--rose-600));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover { 
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(247, 109, 37, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(247, 109, 37, 0.2);
}

.card .icon { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 
    0 8px 24px rgba(247, 109, 37, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 32px rgba(247, 109, 37, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card:hover .icon::before {
  left: 100%;
}

.card h3 { 
  margin: 0 0 12px; 
  font-size: 20px; 
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--primary);
}

.card p { 
  color: var(--muted); 
  font-size: 16px; 
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.card:hover p {
  color: var(--text);
}

/* Mobile reveal animation for Benefícios cards */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767px) {
  #beneficios .card {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    will-change: transform, opacity;
  }
  #beneficios .card.revealed {
    animation: fadeUp 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  #beneficios .card .icon {
    transition: transform 300ms ease, filter 300ms ease;
  }
  #beneficios .card.revealed .icon {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(247, 109, 37, 0.2));
  }
}

/* Testimonials */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testimonial { background: var(--surface); border: 1px solid #eee; border-radius: 14px; padding: 28px 20px 20px; box-shadow: var(--shadow); }
.testimonial { transition: transform 200ms ease, box-shadow 200ms ease; }
.testimonial:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(247, 109, 37, 0.22); }
.testimonial .photo { width: 100%; height: auto; border-radius: 12px; border: 1px solid #eee; box-shadow: var(--shadow); margin-bottom: 12px; display: block; }
.testimonial small { color: var(--muted); }



/* CTA / Preco */
.section-cta { text-align: center; background: linear-gradient(180deg, #fff, #faf7ff); border-top: 1px solid #eee; }
.section-cta .container { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.section-cta .btn-lg { padding: 20px 26px; font-size: 18px; }

/* Price Banner */
.section-cta .price-banner { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; background: linear-gradient(180deg, #ffffff, rgba(247,109,37,0.06)); border: 1px solid rgba(247,109,37,0.22); border-radius: 18px; padding: 22px; box-shadow: var(--shadow); }
.section-cta .price-banner .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(247,109,37,0.08); border: 1px solid rgba(247,109,37,0.24); color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; }
.section-cta .price-banner .price { margin-top: 8px; }
.section-cta .price-banner .label { color: var(--muted); font-weight: 600; font-size: 14px; }
.section-cta .price-banner .amount { display: flex; align-items: baseline; gap: 6px; color: var(--primary); font-weight: 800; }
.section-cta .price-banner .price-info { text-align: center; }
.section-cta .price-banner .amount { justify-content: center; }
.section-cta .price-banner .amount .installments { font-size: 26px; }
.section-cta .price-banner .amount .currency { font-size: 22px; transform: translateY(2px); }
.section-cta .price-banner .amount .value { font-size: 42px; line-height: 1; letter-spacing: -0.4px; }
.section-cta .price-banner .note { color: var(--text); opacity: 0.85; font-size: 14px; margin-top: 6px; }
.section-cta .price-banner .cash { margin-top: 8px; display: flex; align-items: baseline; justify-content: center; gap: 8px; font-weight: 700; color: var(--primary); }
.section-cta .price-banner .cash .label { color: var(--muted); font-weight: 600; font-size: 14px; }
.section-cta .price-banner .cash .currency { font-size: 20px; transform: translateY(2px); }
.section-cta .price-banner .cash .value { font-size: 24px; line-height: 1; letter-spacing: -0.3px; font-weight: 600; }
.section-cta .price-banner .price-cta { display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; }
.section-cta .price-banner .price-cta { text-align: center; }
.section-cta .price-banner .secure { color: var(--muted); }
/* Assurances near CTA */
.section-cta .price-banner .assurances { display: flex; gap: 12px; align-items: center; justify-content: center; color: var(--muted); margin-top: 6px; }
@media (min-width: 768px) {
  .section-cta .price-banner .assurances { justify-content: flex-start; }
}
/* Payment badges and secure badge */
.section-cta .price-banner .badges { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 10px; margin-bottom: 6px; }
.section-cta .price-banner .badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; border: 1px solid #eee; background: #fff; color: var(--text); font-weight: 700; font-size: 13px; box-shadow: var(--shadow); line-height: 1; white-space: nowrap; }
.section-cta .price-banner .badge-pill .icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.section-cta .price-banner .badge-pill:hover { border-color: var(--primary); }
/* Badge destacado para Compra segura */
.section-cta .price-banner .badge-pill.secure { border-color: var(--primary); color: var(--primary); }
.section-cta .price-banner .badge-pill.secure:hover { box-shadow: 0 8px 24px rgba(247, 109, 37, 0.18); }
@media (min-width: 768px) {
  .section-cta .price-banner .badges { justify-content: center; }
  .section-cta .price-banner .price-cta { align-items: center; text-align: center; }
}

/* Quem sou eu */
.about { background: linear-gradient(180deg, #fff, rgba(247,109,37,0.04)); border-top: 2px solid #e5e7eb; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.about-photo img { width: 100%; max-width: 560px; height: auto; border-radius: 16px; border: 1px solid #eee; box-shadow: var(--shadow); display: block; margin: 0 auto; }
.about-copy h2 { color: var(--primary); }
.about-copy p { max-width: 70ch; margin-left: auto; margin-right: auto; line-height: 1.8; }
.about-subtitle { color: var(--primary); font-weight: 700; letter-spacing: 0.2px; margin: 4px auto 8px; text-align: center; }
/* Lista suave na secao Quem sou eu */
.about-list { list-style: none; padding: 0; margin: 8px auto 8px; max-width: 70ch; }
.about-list li { position: relative; padding-left: 28px; margin: 8px 0; }
.about-list li::before { content: "✓"; position: absolute; left: 8px; color: var(--primary); font-weight: 800; }

/* FAQ */
.faq-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.faq-list details { background: var(--surface); border: 1px solid #eee; border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); }
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--text); list-style: none; position: relative; padding-right: 26px; }
.faq-list summary::marker { display: none; }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff, #fafafa);
  border-radius: 10px;
  padding: 12px 14px;
}
.faq-list summary:hover { background: linear-gradient(135deg, #ffffff, #f5f5f5); }
.faq-list summary::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  display: grid;
  place-items: center;
  transition: transform 200ms ease, background 200ms ease;
}
.faq-list details[open] summary { color: var(--primary); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(180deg); background: rgba(247,109,37,0.14); }
.faq-list details p { color: var(--muted); margin: 10px 0 0; }

@media (min-width: 768px) {
  .section-cta .price-banner { grid-template-columns: 1.2fr 0.8fr; padding: 24px; }
  .section-cta .price-banner .amount .installments { font-size: 30px; }
  .section-cta .price-banner .amount .value { font-size: 48px; }
  .section-cta .price-banner .cash .value { font-size: 28px; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
  .about-photo img { max-width: 640px; }
  .about-subtitle { text-align: left; margin: 6px 0 10px; }
  .about-list { margin-left: 0; }
  /* Na Hero, o botao WhatsApp nao deve ficar pequeno no desktop */
  .hero .cta-group .btn-outline.btn-sm { padding: 14px 18px; font-size: 16px; }
}

/* Footer */
.site-footer { border-top: 1px solid #eee; padding: 32px 0; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer .brand { font-weight: 800; letter-spacing: 0.3px; font-size: 18px; background: linear-gradient(90deg, var(--primary), var(--rose)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-copy { text-align: center; padding-top: 8px; }

/* Legal Footer (final) */
.legal-footer { border-top: 1px solid #eee; padding: 24px 0; background: linear-gradient(90deg, var(--primary), var(--primary-600)); color: #fff; box-shadow: 0 -10px 24px rgba(0,0,0,0.08); }
.legal-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.legal-mark { height: 42px; display: block; }
.icon-instagram { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.icon-whatsapp { width: 26px; height: 26px; display: inline-block; vertical-align: middle; }
.legal-inner a { color: #fff; font-weight: 700; text-decoration: none; }
.legal-inner a:hover { color: #ffe9df; }

/* Responsive */
@media (max-width: 640px) {
  .section { padding: 48px 0 32px; }
  .section h2 { font-size: 30px; }
  .section p { font-size: 17px; line-height: 1.75; margin-top: 12px; margin-bottom: 12px; }
  #conexao .container { padding: 24px 18px 18px; border-radius: 14px; }
  #impacto .container { padding: 18px; border-radius: 14px; }
  .hero h1 { font-size: 36px; }
  .header-inner { min-height: 80px; }
  .brand img { height: 72px; }
  .testimonials { gap: 12px; }
  .legal-inner { justify-content: center; text-align: center; }
  /* Encostar a parte inferior da section Hero ao final da imagem */
  #hero.section { padding-bottom: 0; }
  /* Dar leve respiro no final da section Depoimentos */
#depoimentos.section { padding-bottom: 16px; }
  /* CTA flutuante WhatsApp - aparece apenas no mobile */
  .floating-whatsapp { position: fixed; bottom: 18px; right: 18px; background: var(--primary); color: #fff; border-radius: 999px; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: var(--shadow); z-index: 100; text-decoration: none; }
}
@media (min-width: 641px) {
  .floating-whatsapp { display: none; }
}
@media (min-width: 768px) {
  .hero h1 { font-size: 60px; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  .hero-inner { align-items: end; }
  .hero-copy { text-align: left; }
  .cta-group { justify-content: flex-start; }
  .bullet-list { grid-template-columns: 1fr 1fr; }
  /* Cards responsividade avancada para tablet */
  .cards { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px;
  }
  
  .card {
    padding: 36px 28px 32px;
  }
  
  .card .icon {
    width: 72px;
    height: 72px;
    font-size: 32px;
    border-radius: 22px;
  }
}
@media (min-width: 768px) {
  .testimonials { grid-template-columns: 1fr 1fr; }
}
/* Correção: fechamento de bloco removido incorretamente */

/* Responsividade ultra avancada para cards */
@media (min-width: 480px) {
  .cards {
    gap: 20px;
  }
  
  .card {
    padding: 28px 24px;
  }
}

@media (min-width: 1024px) {
  /* Desktop pequeno - 3 colunas */
  .cards { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px;
  }
  
  .card {
    padding: 40px 32px 36px;
  }
  
  .card .icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
    border-radius: 24px;
    margin-bottom: 24px;
  }
  
  .card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .card p {
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (min-width: 1200px) {
  /* Desktop medio - layout otimizado */
  .cards { 
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .card:hover {
    transform: translateY(-12px) scale(1.03);
  }
}

@media (min-width: 1400px) {
  /* Desktop grande - 4 colunas para telas muito grandes */
  .cards { 
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
  }
  
  .card {
    padding: 44px 36px 40px;
  }
  
  .card .icon {
    width: 88px;
    height: 88px;
    font-size: 40px;
    border-radius: 26px;
  }
}

/* Animacoes especificas para mobile */
@media (max-width: 767px) {
  .card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .card .icon:hover {
    transform: scale(1.05) rotate(2deg);
  }
}

/* Carousel (Galeria abaixo dos depoimentos) */
#galeria .carousel { position: relative; }
#galeria .carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
#galeria .carousel-track {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
}
#galeria .testimonial {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
#galeria .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  box-shadow: var(--shadow);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--text);
  cursor: pointer;
}
#galeria .carousel-nav.prev { left: 6px; }
#galeria .carousel-nav.next { right: 6px; }
#galeria .carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}
#galeria .carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #e5e7eb;
  cursor: pointer;
}
#galeria .carousel-dots button[aria-current="true"] { background: var(--primary); }

@media (min-width: 768px) {
  #galeria .testimonial { flex-basis: 50%; }
}

/* Meta (nome e link) no carrossel */
#galeria .testimonial .meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
#galeria .testimonial .name { font-weight: 700; color: var(--text); }
#galeria .testimonial .link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; border: 1px solid #eee; background: #fff; color: var(--text); font-weight: 600; font-size: 13px; box-shadow: var(--shadow); text-decoration: none; }
#galeria .testimonial .link:hover { border-color: var(--primary); color: var(--primary); }

/* Carousel de Depoimentos (apos "Transformacoes reais") */
#depoimentos-carrossel .testimonial-carousel { position: relative; }
#depoimentos-carrossel .carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
}
#depoimentos-carrossel .carousel-track {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}
#depoimentos-carrossel .carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
/* Estilos base dos botoes - REMOVIDOS para evitar conflitos com mobile */


/* Foto ao lado do nome, proporcional */
#depoimentos-carrossel blockquote footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
#depoimentos-carrossel .avatar-inline {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}
#depoimentos-carrossel blockquote footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
#depoimentos-carrossel blockquote footer a:hover { color: var(--primary); }

/* Caixa do carrossel */
#depoimentos-carrossel .testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 16px 28px;
  box-shadow: var(--shadow);
}
#depoimentos-carrossel .carousel-viewport {
  padding-inline: 6px;
  scroll-padding-inline-start: 6px;
  overscroll-behavior-x: contain;
}

#depoimentos-carrossel blockquote .quote {
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  margin: 0 0 8px;
}
#depoimentos-carrossel .quote-wrap { margin: 0 0 8px; }
#depoimentos-carrossel .see-more {
  display: inline-block;
  color: var(--primary);
  background: none;
  border: 0;
  padding: 0;
  font-weight: 600;
  cursor: pointer;
}
#depoimentos-carrossel blockquote {
  margin: 0;
}

@media (min-width: 768px) {
  #depoimentos-carrossel .carousel-slide { flex-basis: 100%; }
  #depoimentos-carrossel .carousel-track { gap: 16px; }
  /* Botoes desktop - REMOVIDOS para evitar conflitos */
  #depoimentos-carrossel .avatar-inline { width: 44px; height: 44px; }
  #depoimentos-carrossel .testimonial-carousel {
    padding: 20px 20px 32px;
    max-width: 740px;
  }
  #depoimentos-carrossel blockquote .quote { 
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #depoimentos-carrossel .quote-wrap.expanded .quote {
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  #depoimentos-carrossel .see-more {
    font-size: 16px;
    margin-top: 8px;
  }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 68px; }
  .section h2 { font-size: 44px; }
}

/* BOTOES CAROUSEL - Design Glassmorphism Ultra-Moderno */
section#depoimentos-carrossel .carousel-btn:hover {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.05) !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

section#depoimentos-carrossel .carousel-btn:hover svg {
  stroke: rgba(0, 0, 0, 1) !important;
  transform: scale(1.1) !important;
}

section#depoimentos-carrossel .carousel-btn:active {
  transform: translateY(-50%) scale(0.95) !important;
  transition: all 0.1s ease !important;
}

/* Animacao suave para os icones */
section#depoimentos-carrossel .carousel-btn svg {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* DESKTOP: Ajustes para telas maiores */
@media (min-width: 768px) {
  section#depoimentos-carrossel .carousel-btn.prev {
    left: 16px !important;
  }
  
  section#depoimentos-carrossel .carousel-btn.next {
    right: 16px !important;
  }
}