/* ═══════════════════════════════════════════
   E-COM Planner – Premium Landing Page CSS
   ═══════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #FFFFFF;
  --bg-card:  #F9FAFB;
  --bg-card2: #F3F4F6;
  --green:    #17C964;
  --green-d:  #11a351;
  --green-g:  rgba(23,201,100,0.12);
  --white:    #111827; /* Inverted for text */
  --gray-100: #1F2937; /* Inverted */
  --gray-300: #4B5563; /* Inverted */
  --gray-500: #6B7280; /* Inverted */
  --border:   rgba(0,0,0,0.08); /* Dark border for light theme */
  --shadow:   0 8px 40px rgba(0,0,0,0.06); /* Lighter shadow */
  --radius:   16px;
  --radius-sm:10px;
  --font:     'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 800; }
p { line-height: 1.7; }
a { text-decoration: none; }

.text-green { color: var(--green); }
.center     { text-align: center; }

/* ─── Container ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.btn:hover { transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: #000;
  box-shadow: 0 4px 24px rgba(23,201,100,0.35);
}
.btn-green:hover {
  background: #20e07a;
  box-shadow: 0 8px 32px rgba(23,201,100,0.5);
}

.btn-dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.btn-dark:hover {
  background: #111;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.btn-sm  { font-size: 13px; padding: 10px 20px; }
.btn-md  { font-size: 15px; padding: 14px 28px; }
.btn-lg  { font-size: 16px; padding: 18px 36px; }
.btn-xl  { font-size: 18px; padding: 20px 44px; width: 100%; justify-content: center; }

/* ─── Section Shared ─── */
.section { padding: 80px 0; }
.section-header { margin-bottom: 40px; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--green);
  background: var(--green-g);
  border: 1px solid rgba(23,201,100,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-tag {
  display: inline-flex;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 580px;
  margin: 0 auto;
}
.section-body {
  font-size: 16px;
  color: var(--gray-300);
  margin-bottom: 20px;
  max-width: 520px;
}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.brand-green { color: var(--green); }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(23,201,100,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-g);
  border: 1px solid rgba(23,201,100,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  margin-left: auto;
  margin-right: auto;
}

.hero-headline {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero-detail {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 36px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
  line-height: 1.7;
}
.hero-detail strong { color: var(--gray-300); }

.hero-cta { margin-bottom: 24px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}
.hero-badge {
  font-size: 12.5px;
  color: var(--gray-300);
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mobile-visual {
  display: none;
}
.mockup-glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,201,100,0.14) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.7; }
}
.mockup-img {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(23,201,100,0.2));
  animation: floatUpDown 5s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 2;
  animation: floatUpDown 5s ease-in-out infinite;
}
.float-tag-1 { top: 15%; left: -10%; animation-delay: -1s; }
.float-tag-2 { bottom: 20%; right: -5%; animation-delay: -2.5s; }

/* ════════════════════════════
   SECTION 2
════════════════════════════ */
.s2 { background: var(--bg-card); }
.s2-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.s2-text {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.s2-text .section-body {
  max-width: 100%;
}
.s2-text .section-tag { margin-bottom: 16px; }
.s2-text .section-title { margin-bottom: 20px; }

/* Sheet Card (used in multiple sections) */
.sheet-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sheet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.7);
}
.sheet-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid var(--border);
}
.sheet-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sheet-dot.red    { background: #ff5f57; }
.sheet-dot.yellow { background: #febc2e; }
.sheet-dot.green  { background: #28c840; }
.sheet-filename {
  font-size: 12px;
  color: var(--gray-500);
  margin-left: 8px;
  font-weight: 500;
}
.sheet-img {
  width: 100%;
  display: block;
  padding: 16px;
  object-fit: contain;
}

.s3 { 
  background: var(--bg); 
}

/* GRID BASE */
.cards-grid.is-visible {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* DESKTOP */
@media (min-width: 992px) {
  .cards-grid.is-visible {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* CARD */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover::before { 
  opacity: 1; 
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23,201,100,0.25);
  box-shadow: 0 12px 40px rgba(23,201,100,0.08);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-body {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ════════════════════════════
   SECTION 4 – TIMELINE
════════════════════════════ */
.s4 { background: var(--bg-card); }
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 300px;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #000;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(23,201,100,0.4);
  flex-shrink: 0;
}
.step-content {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  text-align: center;
  min-height: 180px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-list li {
  font-size: 14px;
  color: var(--gray-300);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.step-list li:last-child { border-bottom: none; }

.timeline-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  margin-top: 32px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ════════════════════════════
   SECTION 5 – RESPOSTAS
════════════════════════════ */
.s5 { 
  background: var(--bg-card2); 
}

/* GRID BASE (mobile primeiro) */
.answers-grid.is-visible {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* DESKTOP */
@media (min-width: 992px) {
  .answers-grid.is-visible {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

.answer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition);
  height: 100%;
}

.answer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23,201,100,0.3);
}

.answer-icon {
  width: 40px;
  height: 40px;
  background: var(--green-g);
  border: 1px solid rgba(23,201,100,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.answer-card p {
  font-size: 14px;
  color: var(--gray-100);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding-top: 8px;
}

/* ════════════════════════════
   SECTION 6 – ANTES / DEPOIS
════════════════════════════ */
.s6 {
  background: var(--bg-card2);
  padding: 100px 0;
}
.s6-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.s6-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.s6-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.s6-col-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.s6-col-header.bad  h3 { color: #ff6b6b; }
.s6-col-header.good h3 { color: var(--green); }
.s6-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}
.bad  .s6-icon { background: rgba(255,107,107,0.15); color: #ff6b6b; }
.good .s6-icon { background: var(--green-g); color: var(--green); }

.s6-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s6-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-300);
}
.s6-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-arrow {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #000;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(23,201,100,0.4);
}

/* ════════════════════════════
   SECTION 7 – GALLERY
════════════════════════════ */
.s7{
  background: var(--bg);
}

/* ==========================
   DESKTOP (EDITORIAL LAYOUT)
========================== */

.gallery-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  margin-top:40px;
  max-width: 900px;
  margin-left:auto;
  margin-right:auto;
}

/* primeira imagem maior destaque */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  cursor:pointer;
  border:1px solid var(--border);
  background:var(--bg-card);
  transition:transform var(--transition), box-shadow var(--transition);
  aspect-ratio:16/9;
}

/* destaque visual maior no hover */
.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow: 0 12px 40px rgba(23,201,100,0.08);
}

.gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform var(--transition);
}

.gallery-item:hover img{
  transform:scale(1.03);
}

/* overlay */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(23,201,100,.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  opacity:0;
  transition:opacity var(--transition);
  backdrop-filter:blur(3px);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

.gallery-overlay span{
  font-size:13px;
  font-weight:600;
  color:#fff;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* ==========================
   MOBILE (NÃO ALTERADO)
========================== */

@media (max-width:768px){

  .gallery-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

}

/* ==========================
   LIGHTBOX
========================== */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.93);
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
  padding:40px 20px;
}

.lightbox.active{
  opacity:1;
  pointer-events:all;
}

.lightbox img{
  max-width:90vw;
  max-height:80vh;
  object-fit:contain;
  border-radius:var(--radius);
  box-shadow:0 0 80px rgba(0,0,0,.8);
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:28px;
  background:rgba(255,255,255,.1);
  border:1px solid var(--border);
  border-radius:50%;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#fff;
  transition:background var(--transition);
}

.lightbox-close:hover{
  background:rgba(255,255,255,.2);
}

#lightbox-caption{
  margin-top:16px;
  font-size:14px;
  color:var(--gray-300);
  text-align:center;
}

/* ════════════════════════════
   SECTION 8 – RECEBE
════════════════════════════ */
.s8 { background: var(--bg-card); }
.receive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.receive-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.receive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23,201,100,0.3);
}
.receive-card-highlight {
  border-color: rgba(23,201,100,0.3);
  background: rgba(23,201,100,0.05);
}
.receive-icon {
  width: 56px;
  height: 56px;
  background: var(--green-g);
  border: 1px solid rgba(23,201,100,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.receive-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-100);
}

/* ════════════════════════════
   SECTION 9 – PARA QUEM
════════════════════════════ */
.s9 { background: var(--bg-card2); }
.s9-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-100);
  font-weight: 500;
}
.cl-check {
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
}

/* ════════════════════════════
   SECTION 10 – BANNER CTA
════════════════════════════ */
.s10-banner {
  background: linear-gradient(135deg, var(--green) 0%, #0fa851 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.s10-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.s10-inner {
  position: relative;
  text-align: center;
}
.banner-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
}
.banner-sub {
  font-size: 18px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 36px;
}

/* ════════════════════════════
   PRICE SECTION
════════════════════════════ */
.s-preco { background: var(--bg); }
.price-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(23,201,100,0.3);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 0 80px rgba(23,201,100,0.15), 0 20px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #0fa851);
}
.price-badge-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  background: var(--green);
  border-radius: 50px;
  padding: 6px 18px;
  align-self: center;
}
.price-product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-mockup {
  width: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(23,201,100,0.2));
}
.price-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.price-type {
  font-size: 13px;
  color: var(--gray-300);
}
.price-value-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.price-from {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: line-through;
}
.price-main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.price-currency {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  padding-top: 10px;
}
.price-number {
  font-size: 88px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -4px;
}
.price-cents {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  padding-top: 14px;
}
.price-period {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}
.price-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.price-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-300);
  font-weight: 500;
}
.price-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-300);
  background: var(--green-g);
  border: 1px solid rgba(23,201,100,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  line-height: 1.5;
}
.price-guarantee strong { color: var(--green); }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.s-faq { background: var(--bg-card); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(23,201,100,0.3);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-500);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  font-size: 14px;
  color: var(--gray-300);
  padding: 0 24px 20px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 40px;
  object-fit: contain;
}
.footer-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.footer-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.footer-contact {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-contact a { color: var(--green); }
.footer-contact a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ════════════════════════════
   ANIMATIONS (AOS-like)
════════════════════════════ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos].is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .receive-grid  { grid-template-columns: repeat(2, 1fr); }
  .answers-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-grid     { gap: 48px; }
}

@media (max-width: 768px) {

  .hero {
    padding: 110px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Centraliza todo o conteúdo da Hero */
  .hero-text {
    align-items: center;
    text-align: center;
  }

  /* Badge superior */
  .badge-pill {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  /* Tag das seções */
  .section-tag {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  /* Mockup mobile */
  .hero-mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 24px auto;
    align-self: center;
  }

  .mockup-img-mobile {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  .hero-detail {
    border-left: none;
    border-top: 3px solid var(--green);
    padding-left: 0;
    padding-top: 14px;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }

  .hero-badges {
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    gap: 10px;
  }

  .hero-cta {
    margin-top: 8px;
    display: flex;
    justify-content: center;
  }

}

/* DESKTOP (padrão) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {

  /* Hide desktop visual only on mobile */
  .hero-visual {
    display: none;
  }

  /* Show mobile visual inside text */
  .hero-mobile-visual {
    display: block;
    margin: 10px 0 20px;
    text-align: center;
    position: relative;
  }

  .mockup-img-mobile {
    width: 100%;
    max-width: 280px;
    filter: drop-shadow(0 15px 40px rgba(23,201,100,0.2));
    animation: floatUpDown 5s ease-in-out infinite;
  }
}
  
  .float-tag-mobile-1 { top: 15%; left: -2%; animation-delay: -1s; font-size: 11px; padding: 6px 12px; }
  .float-tag-mobile-2 { bottom: 20%; right: -2%; animation-delay: -2.5s; font-size: 11px; padding: 6px 12px; }
  
  .s2-grid       { flex-direction: column; text-align: center; gap: 0; }
  .s9-grid       { grid-template-columns: 1fr; gap: 40px; }
  .s6-grid       { grid-template-columns: 1fr; }
  .s6-divider    { transform: rotate(90deg); }

  .cards-grid    { grid-template-columns: 1fr; }
  .answers-grid  { grid-template-columns: 1fr; }
  .receive-grid  { grid-template-columns: repeat(2, 1fr); }
  
  .gallery-carousel-wrapper { flex-direction: column; }
  .carousel-btn { display: none; }
  .gallery-item { flex: 0 0 100%; }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .timeline-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--green), transparent);
  }
  .timeline-step { max-width: 100%; width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand  { justify-content: center; }
  .footer-links  { text-align: center; flex-direction: row; justify-content: center; }

  .price-card    { padding: 32px 24px; }
  .price-number  { font-size: 64px; }
  .price-badges  { gap: 12px; }

  .section { padding: 40px 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .receive-grid  { grid-template-columns: 1fr; }
  .price-badges  { flex-direction: column; align-items: center; }
  .btn-xl        { font-size: 15px; padding: 16px 24px; }
  .hero-badges   { flex-direction: column; width: 100%; align-items: stretch; gap: 8px; }
  .hero-badge    { text-align: center; display: block; }
}

/* 🔒 proteção contra scroll horizontal */
html, body {
  overflow-x: hidden;
}
