/* ============================================================
   STORE72 — Premium Digital Products Platform
   Design: Dark luxury with golden accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0F172A;
  --navy-deep: #070D1A;
  --navy-mid: #1E293B;
  --navy-light: #334155;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --white: #FFFFFF;
  --gray-light: #F8FAFC;
  --gray-mid: #CBD5E1;
  --gray-dark: #64748B;
  --success: #10B981;
  --danger: #EF4444;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,.4);
  --shadow-lg: 0 10px 50px rgba(0,0,0,.5);
  --shadow-gold: 0 0 30px rgba(245,158,11,.2);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: var(--gold); color: var(--navy); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-title); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--gray-mid); }
a { text-decoration: none; color: inherit; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title { margin-bottom: .75rem; }
.section-title span { color: var(--gold); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-mid); max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,158,11,.05);
}

.btn-ghost {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .82rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(7,13,26,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,158,11,.15);
  padding: .65rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: var(--white);
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--navy);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  padding: .5rem .9rem;
  font-size: .88rem;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--gray-mid);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(245,158,11,.1); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,158,11,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,158,11,.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 0%, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.12), transparent 70%);
  right: -100px; top: 10%;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,.08), transparent 70%);
  left: -50px; bottom: 20%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--gold);
  font-size: .78rem;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp .8s .1s ease both;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeInUp .8s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp .8s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  animation: fadeInUp .8s .4s ease both;
}
.hero-stat-value {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat-label {
  font-size: .78rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight .8s .2s ease both;
}

.hero-card-main {
  background: linear-gradient(135deg, rgba(30,41,59,.9) 0%, rgba(15,23,42,.95) 100%);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.hero-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hero-card-title { font-family: var(--font-title); font-weight: 700; font-size: .95rem; }
.hero-card-sub { font-size: .75rem; color: var(--gray-dark); }

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.hero-metric-val {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-metric-lbl { font-size: .72rem; color: var(--gray-dark); }

.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray-mid);
  margin-bottom: .5rem;
}
.hero-progress-bar {
  height: 6px;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: .75rem;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  animation: progressFill 2s 1s ease both;
}
@keyframes progressFill { from { width: 0 !important; } }

.hero-floating-badge {
  position: absolute;
  background: var(--success);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .75rem;
  padding: .5rem .9rem;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(16,185,129,.4);
  white-space: nowrap;
}
.hero-floating-badge.top-right { top: -15px; right: -20px; animation: floatBadge 3s ease-in-out infinite; }
.hero-floating-badge.bottom-left { bottom: -15px; left: -20px; animation: floatBadge 3s 1.5s ease-in-out infinite; background: var(--gold); color: var(--navy); box-shadow: 0 4px 15px rgba(245,158,11,.4); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   PRODUTOS / CARDS
   ============================================================ */
#produtos { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); }

.section-head { margin-bottom: 3.5rem; }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: linear-gradient(135deg, rgba(30,41,59,.7) 0%, rgba(15,23,42,.8) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(245,158,11,.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245,158,11,.15);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover::before { opacity: 1; }

.product-img {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder {
  font-size: 4rem;
  opacity: .3;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .7rem;
  padding: .3rem .7rem;
  border-radius: 100px;
  letter-spacing: .05em;
}
.product-discount-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .7rem;
  padding: .3rem .7rem;
  border-radius: 100px;
}

.product-body { padding: 1.5rem; }
.product-category {
  font-size: .72rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--white);
  line-height: 1.3;
}
.product-desc {
  font-size: .85rem;
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.product-pricing {}
.product-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.product-price-original {
  font-size: .8rem;
  color: var(--gray-dark);
  text-decoration: line-through;
  margin-right: .35rem;
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
#beneficios {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
#beneficios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245,158,11,.05) 0%, transparent 70%);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(30,41,59,.5);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  border-color: rgba(245,158,11,.3);
  transform: translateY(-4px);
  background: rgba(30,41,59,.7);
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.benefit-card:hover::after { opacity: 1; }

.benefit-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(245,158,11,.2) 0%, rgba(245,158,11,.05) 100%);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.benefit-desc { font-size: .85rem; color: var(--gray-mid); line-height: 1.6; }

/* ============================================================
   SOBRE
   ============================================================ */
#sobre { background: var(--navy); }

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}
.sobre-card-main {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.sobre-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sobre-logo {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: .25rem;
}
.sobre-logo span { color: var(--gold); }
.sobre-slogan { font-size: .85rem; color: var(--gray-dark); margin-bottom: 2rem; }
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sobre-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.sobre-stat-val {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.sobre-stat-lbl { font-size: .72rem; color: var(--gray-dark); text-transform: uppercase; letter-spacing: .05em; }

.sobre-floating {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 12px;
  padding: .75rem 1.25rem;
  font-size: .8rem;
  font-family: var(--font-title);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}
.sobre-floating.right { top: -20px; right: -30px; color: var(--gold); animation-delay: -2s; }
.sobre-floating.left { bottom: -20px; left: -30px; color: var(--success); border-color: rgba(16,185,129,.3); animation-delay: 0s; }

.sobre-content h2 { margin-bottom: 1.25rem; }
.sobre-content p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }
.sobre-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.sobre-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--gray-mid);
}
.sobre-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
#depoimentos { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); }

.carousel-wrapper { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(100% / 3 - 1rem);
  min-width: 0;
  background: linear-gradient(135deg, rgba(30,41,59,.7) 0%, rgba(15,23,42,.8) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover { border-color: rgba(245,158,11,.25); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(245,158,11,.07);
  line-height: 1;
}

.stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text { font-size: .9rem; color: var(--gray-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--navy);
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-title); font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .75rem; color: var(--gray-dark); }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 1rem;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--navy); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: rgba(30,41,59,.5);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: rgba(245,158,11,.3); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .95rem;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.active .faq-question { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  transition: var(--transition);
  color: var(--gold);
}
.faq-item.active .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-mid);
  line-height: 1.8;
}

/* ============================================================
   CAPTURA DE LEADS
   ============================================================ */
#leads {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
#leads::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,158,11,.06) 0%, transparent 70%);
}

.leads-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.leads-content h2 { margin-bottom: 1rem; }
.leads-content p { margin-bottom: 2rem; }
.leads-perks { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.leads-perks li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--gray-mid);
}
.perk-icon {
  width: 28px; height: 28px;
  background: rgba(245,158,11,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  color: var(--gold);
}

.leads-form-card {
  background: rgba(30,41,59,.7);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
}
.leads-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--gray-mid);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--gray-dark); }
.form-control:focus {
  border-color: var(--gold);
  background: rgba(245,158,11,.05);
  box-shadow: 0 0 0 3px rgba(245,158,11,.1);
}
.form-control.error { border-color: var(--danger); }

.form-msg {
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}
.form-msg.success { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); color: var(--success); display: block; }
.form-msg.error-msg { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: var(--danger); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: .5rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .85rem; color: var(--gray-dark); margin-bottom: 1.5rem; max-width: 260px; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  color: var(--gray-mid);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-title);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col li a {
  font-size: .87rem;
  color: var(--gray-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-col li a:hover { color: var(--gold); transform: translateX(4px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  gap: 1rem;
}
.footer-copy { font-size: .8rem; color: var(--gray-dark); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: var(--gray-dark); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.toast {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  animation: toastIn .4s ease;
  font-size: .88rem;
}
.toast.success { border-color: rgba(16,185,129,.3); }
.toast.error { border-color: rgba(239,68,68,.3); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } }

/* ============================================================
   LOADING OVERLAY
   ============================================================ */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}
.loading-overlay.hidden { opacity: 0; pointer-events: none; }
.loader {
  width: 48px; height: 48px;
  border: 3px solid rgba(245,158,11,.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }
.animate-delay-5 { transition-delay: .5s; }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245,158,11,.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1.25rem; }
.cta-inner p { margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,13,26,.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(20px);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
  }
  .mobile-menu a:hover { color: var(--gold); }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-floating-badge { display: none; }

  .sobre-inner { grid-template-columns: 1fr; }
  .leads-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .testimonial-card { flex: 0 0 calc(100% - 1.5rem); }

  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-card-main { margin: 0 -0.5rem; }
}

@media (max-width: 480px) {
  .produtos-grid { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .toast-container { right: 1rem; left: 1rem; }
  .toast { min-width: auto; }
}
