:root {
  --black: #000000;
  --black2: #060608;
  --dark: #0c0c10;
  --dark2: #111116;
  --dark3: #18181f;
  --border: #222230;
  --border-light: #2a2a3a;
  --gold: #C9A84C;
  --gold2: #E8C97A;
  --gold3: #F5E0A0;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-glow: rgba(201,168,76,0.06);
  --text: #c8c8d4;
  --text2: #7a7a8e;
  --white: #f0ece4;
  --red: #ff4d4d;
  --red-dim: rgba(255,77,77,0.08);
  --green: #27c93f;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --section-py: 110px;
  --container-px: 24px;
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section.dark {
  background-color: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn i { width: 18px; height: 18px; }

.btn-sm { font-size: 12px; padding: 10px 24px; }
.btn-lg { font-size: 14px; padding: 16px 36px; }
.btn-block { width: 100%; padding: 18px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
}

.btn-outline {
  background: transparent;
  color: var(--gold2);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 220px;
  height: 100%;
}

.logo img {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  height: 180px;
  max-width: 400px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text2);
  position: relative;
  padding: 4px 0;
}

.nav-links a:not(.btn):hover { color: var(--gold2); }

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:not(.btn):hover::after { width: 100%; }

.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: var(--white);
  cursor: pointer;
}

/* ── HERO ── */
#hero-scroll-container {
  position: relative;
  height: 350vh;
}

.hero {
  position: sticky; top: 0;
  padding: 160px 0 80px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

#hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  z-index: -2;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 50%, var(--black) 100%);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  top: 30%; left: 25%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.label-badge i { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.metric { display: flex; flex-direction: column; }

.metric-value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1.2;
}

.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2);
  margin-top: 4px;
}

.hero-metrics .divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ── GLASS CARD / MOCKUP ── */
.glass-card {
  background: rgba(17, 17, 22, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.mockup-header {
  background: rgba(0,0,0,0.5);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-title {
  margin-left: auto; margin-right: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text2);
  padding-right: 48px;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 360px;
}

.msg-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: floatUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.msg-bubble.system {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg-bubble.system:nth-child(1) { animation-delay: 0.2s; }
.msg-bubble.system.typing { animation-delay: 1.5s; padding: 14px 24px; }
.msg-bubble.system.hide-typing { animation-delay: 2.5s; }
.msg-bubble.system.highlight {
  animation-delay: 3.5s;
  background: var(--gold-dim);
  border-color: rgba(201,168,76,0.2);
}
.msg-bubble.system i { color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

.msg-bubble.user {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  color: var(--gold2);
  animation-delay: 0.8s;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2);
}

.trust-item i {
  width: 16px; height: 16px;
  color: var(--gold);
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 60px; max-width: 650px; }
.section-header.center { margin: 0 auto 60px; text-align: center; }

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sec-eyebrow i { width: 14px; height: 14px; }

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.sec-title em { font-style: italic; color: var(--gold); }

.sec-desc {
  font-size: 16px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.7;
}

/* ── O PROBLEMA ── */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius-sm);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,77,77,0.3);
  box-shadow: 0 8px 30px rgba(255,77,77,0.06);
}

.pain-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}

.icon-wrapper {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-wrapper.red {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(255,77,77,0.15);
}

.pain-card h4 { font-size: 18px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.pain-card p { color: var(--text2); font-size: 14px; line-height: 1.6; }
.pain-card p strong { color: var(--white); }

.problem-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.problem-cta p {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ── SOLUTION TIMELINE ── */
.solution-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
}

.timeline-line {
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-dim), var(--gold), var(--gold-dim));
}

.timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.step-number {
  width: 50px; height: 50px;
  min-width: 50px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
}

.step-card {
  padding: 28px;
  flex: 1;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateX(4px);
  border-color: rgba(201,168,76,0.2);
}

.step-card .gold-icon {
  color: var(--gold);
  width: 28px; height: 28px;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.step-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── WORKFLOW VISUAL ── */
.workflow-visual {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.workflow-header h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold2);
  margin-bottom: 32px;
  font-family: var(--font-mono);
}

.workflow-image-container img {
  border-radius: var(--radius-sm);
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* ── STATS / RESULTADOS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 36px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: transparent;
  transition: background 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
}

.stat-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.stat-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.stat-icon i { width: 22px; height: 22px; }

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
}

.stat-desc {
  display: block;
  font-size: 13px;
  color: var(--text2);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.15);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.stars i {
  width: 16px; height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}

.testimonial-text strong { color: var(--white); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,0.2));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--white);
}

.author-info span {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── EXPERT / QUEM SOMOS ── */
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-wrapper::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.expert-content p {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 1.7;
}

.expert-content strong { color: var(--white); }

.expert-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.expert-stats .stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-num i { width: 18px; height: 18px; }

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text2);
  margin-top: 4px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--dark2);
  transition: border-color 0.3s;
}

.faq-item.active { border-color: rgba(201,168,76,0.3); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold2); }

.faq-question i {
  width: 18px; height: 18px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── CTA & FORM ── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.target-container {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content .sec-desc { margin-bottom: 28px; }

.cta-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.guarantee i {
  width: 18px; height: 18px;
  color: var(--green);
}

.contact-form-wrapper { padding: 36px; }

.form-header {
  margin-bottom: 24px;
  text-align: center;
}

.form-header h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 13px;
  color: var(--text2);
}

.lead-form .form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input, .form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.small-icon { width: 12px; height: 12px; }

/* ── FOOTER ── */
.footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 220px;
  height: 100%;
}

.footer-logo img {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  height: 180px;
  max-width: 400px;
  object-fit: contain;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 13px;
  color: var(--text2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i { width: 14px; height: 14px; color: var(--gold); }

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-links p {
  font-size: 12px;
  color: var(--text2);
  text-align: right;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a { color: var(--text2); transition: all 0.3s ease; }
.social-links a:hover { color: var(--gold); transform: translateY(-2px); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: floatBounce 3s ease-in-out infinite;
}

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

.whatsapp-float i { width: 28px; height: 28px; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── ANIMATIONS ── */
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.typing { display: flex; align-items: center; gap: 4px; }

.typing-dot {
  width: 6px; height: 6px;
  background: var(--text2);
  border-radius: 50%;
  animation: typingPulse 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingPulse {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.dl-1 { transition-delay: 0.1s; }
.dl-2 { transition-delay: 0.2s; }
.dl-3 { transition-delay: 0.3s; }
.dl-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 992px) {
  .hero-container, .target-container, .expert-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-metrics { justify-content: center; }

  .grid-2x2, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .target-container { grid-template-columns: 1fr; }
  .cta-content { text-align: center; }
  .cta-guarantees { align-items: center; }
}

@media screen and (max-width: 768px) {
  :root { --section-py: 80px; }

  .mobile-menu-btn { display: block; }

  .nav-links {
    position: fixed;
    top: 80px; left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: left 0.3s ease;
  }

  .nav-links.active { left: 0; }
  .nav-links a:not(.btn) { font-size: 16px; color: var(--white); }

  .grid-2x2, .testimonial-grid, .stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-items { gap: 20px; }

  .expert-grid { gap: 40px; }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-logo { justify-content: center; }
  .footer-info { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { align-items: center; }
  .footer-links p { text-align: center; }
  .social-links { justify-content: center; }
}

@media screen and (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .hero-metrics .divider { width: 40px; height: 1px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}
