/* ═══════════════════════════════════════════
   Braine.ai Landing — Light Theme + Mascota
   ═══════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-alt: #f0f2f8;
  --surface: #ffffff;
  --border: #e2e5ef;
  --border-hover: #c8cde0;
  --text: #1B2A4A;
  --text-secondary: #4a5578;
  --text-muted: #8892ad;
  --accent: #1A7AF8;
  --accent-hover: #1565d8;
  --accent-light: #e8f1fe;
  --accent-glow: rgba(26,122,248,0.2);
  --accent-dim: rgba(26,122,248,0.08);
  --purple: #8b5cf6;
  --purple-dim: rgba(139,92,246,0.08);
  --green: #16a34a;
  --green-dim: rgba(22,163,74,0.08);
  --amber: #e5890a;
  --amber-dim: rgba(229,137,10,0.08);
  --red: #dc2626;
  --red-dim: rgba(220,38,38,0.08);
  --teal: #0d9488;
  --teal-dim: rgba(13,148,136,0.08);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 16px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 40px rgba(27,42,74,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #1A7AF8, #3b9bff, #1565d8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Reveal Animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 8px rgba(27,42,74,0.08);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-nav:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: rgba(26,122,248,0.08);
  top: -15%; right: -5%;
  animation: blob-drift 12s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.06);
  bottom: -10%; left: 5%;
  animation: blob-drift 15s ease-in-out infinite reverse;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-15px, 20px); }
}

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

/* Hero logo grande */
.hero-logo {
  height: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(26,122,248,0.15));
}

.hero-text {
  max-width: 560px;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--accent), #3b8ffa);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.3s;
}
.btn-hero-primary:hover {
  box-shadow: 0 8px 32px rgba(26,122,248,0.3);
  transform: translateY(-2px);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* Hero Mascota */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascota {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(26,122,248,0.2));
  animation: mascota-float 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes mascota-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.float-card-1 {
  top: 8%; left: -30px;
  animation: float-card 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 15%; right: -20px;
  animation: float-card 5s ease-in-out infinite 1.5s;
}
.float-card-3 {
  top: 55%; left: -40px;
  animation: float-card 4.5s ease-in-out infinite 3s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.float-card-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   TRUSTED
   ═══════════════════════════════════════════ */
.trusted {
  padding: 3rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trusted-item {
  padding: 0.5rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.trusted-item:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   SECTION INTRO
   ═══════════════════════════════════════════ */
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--accent-light);
  border: 1px solid rgba(26,122,248,0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  padding: 6rem 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-icon-blue { background: var(--accent-light); color: var(--accent); }
.feature-icon-purple { background: var(--purple-dim); color: var(--purple); }
.feature-icon-green { background: var(--green-dim); color: var(--green); }
.feature-icon-amber { background: var(--amber-dim); color: var(--amber); }
.feature-icon-red { background: var(--red-dim); color: var(--red); }
.feature-icon-teal { background: var(--teal-dim); color: var(--teal); }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how {
  padding: 6rem 0;
  background: var(--bg-soft);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.step-reverse .step-content { order: 2; }
.step-reverse .step-visual { order: 1; }
.step-number {
  position: absolute;
  top: -1rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(26,122,248,0.05);
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: 0;
}
.step-content {
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-light);
  border: 1px solid rgba(26,122,248,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.step-icon svg { width: 28px; height: 28px; }
.step-icon-purple { background: var(--purple-dim); border-color: rgba(139,92,246,0.12); color: var(--purple); }
.step-icon-green { background: var(--green-dim); border-color: rgba(22,163,74,0.12); color: var(--green); }
.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Step Visuals */
.step-visual {
  position: relative;
  z-index: 1;
}
.step-mockup, .step-extract, .step-report {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.mock-msg {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.mock-msg:last-child { margin-bottom: 0; }
.mock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mock-bubble {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.extract-input {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}
.extract-arrow {
  text-align: center;
  padding: 0.8rem 0;
  color: var(--accent);
  animation: bounce-arrow 2s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.extract-facts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.extract-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.8rem;
  background: var(--bg-soft);
  border-radius: 8px;
}
.ef-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 80px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ef-value {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}
.ef-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}
.ef-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 3px;
}
.ef-pct {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

/* Report mockup */
.report-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.report-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.report-title {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.report-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.report-table {
  display: flex;
  flex-direction: column;
}
.report-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.report-row:last-child { border-bottom: none; }
.report-row-head {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.report-row span:first-child { color: var(--text-secondary); }
.report-done { color: var(--green) !important; font-weight: 600; }
.report-progress { color: var(--amber) !important; font-weight: 600; }

/* ═══════════════════════════════════════════
   SECTORS
   ═══════════════════════════════════════════ */
.sectors {
  padding: 6rem 0;
  background: var(--bg);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sector-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.sector-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sector-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sector-icon svg { width: 26px; height: 26px; }
.sector-icon-amber { background: var(--amber-dim); color: var(--amber); }
.sector-icon-green { background: var(--green-dim); color: var(--green); }
.sector-icon-red { background: var(--red-dim); color: var(--red); }
.sector-icon-teal { background: var(--teal-dim); color: var(--teal); }
.sector-icon-purple { background: var(--purple-dim); color: var(--purple); }
.sector-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.sector-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.sectors-more {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #eef2ff 100%);
  overflow: hidden;
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
}
.cta-mascota {
  width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(26,122,248,0.15));
  animation: mascota-float 5s ease-in-out infinite;
}
.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}
.cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
  transition: all 0.3s;
}
.btn-cta:hover {
  background: #20bd5a;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transform: translateY(-2px);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  height: 36px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .hero-mascota { width: 340px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }

  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-logo { height: 60px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mascota { width: 280px; }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }

  .section-intro h2 { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-reverse .step-content { order: 1; }
  .step-reverse .step-visual { order: 2; }
  .step-number { font-size: 4rem; }

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

  .cta h2 { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; }
  .footer-links { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .hero-mascota { width: 220px; }
}
