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

:root {
  --bg:        #f0f4ff;
  --bg2:       #ffffff;
  --bg3:       #e8eeff;
  --card:      #ffffff;
  --border:    #c7d2fe;
  --accent:    #4f46e5;
  --accent-h:  #3730a3;
  --accent2:   #f43f5e;
  --text:      #0f172a;
  --muted:     #64748b;
  --tag-bg:    #eef2ff;
  --tag-text:  #4f46e5;
  --warm:      #fff1f2;
  --warm-b:    #f43f5e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3730a3 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.85);
  color: #4f46e5;
  border: 2px solid #4f46e5;
  font-weight: 700;
}
.btn-outline:hover {
  background: #eef2ff;
  border-color: #4338ca;
  color: #4338ca;
}

.btn-warm {
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  color: #fff;
}
.btn-warm:hover {
  background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,63,94,0.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tag-bg);
  border: 1px solid #a5b4fc;
  color: var(--tag-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
}

/* ── Navbar ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199,210,254,0.5);
  box-shadow: 0 2px 20px rgba(79,70,229,0.06);
}

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

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4f46e5, #a855f7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: #4f46e5;
  background: rgba(79,70,229,0.06);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 14px;
  padding: 10px 22px;
  box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}
.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(79,70,229,0.45) !important;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, #ddd6fe 0%, #c7d2fe 30%, #f0f4ff 70%, #ffffff 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-content { animation: fadeUp 0.8s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--text);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero card visual */
.hero-visual { animation: fadeUp 0.8s 0.2s ease both; }

.hero-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

.hero-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.quiz-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-q {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  background: var(--bg);
}
.quiz-option:hover,
.quiz-option.active {
  border-color: var(--accent);
  background: var(--bg3);
  color: var(--accent);
}

.quiz-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.18s;
}
.quiz-option.active .quiz-dot {
  border-color: var(--accent);
  background: var(--accent);
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 32px;
}
.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--text);
}

.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── Sections ── */
section { padding: 88px 0; }

.section-header { margin-bottom: 52px; }

.section-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 14px;
}

.section-header p { color: var(--muted); font-size: 16px; max-width: 500px; }

/* ── How it works ── */
.how-bg { background: var(--bg2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.step-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background 0.2s;
}
.step-card:hover { background: var(--bg3); }

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Categories ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cat-card {
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cat-card:hover {
  border-color: #a5b4fc;
  background: var(--bg3);
  transform: translateX(4px);
}

.cat-icon {
  width: 48px; height: 48px;
  background: var(--tag-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.cat-text h3 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.cat-text p  { font-size: 13px; color: var(--muted); }

.cat-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
  transition: transform 0.2s;
}
.cat-card:hover .cat-arrow { transform: translateX(4px); color: var(--accent); }

/* ── Top picks ── */
.picks-bg { background: var(--bg2); }

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pick-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.pick-card:hover {
  border-color: #a5b4fc;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(79,70,229,0.12);
}
.pick-featured {
  border: 2.5px solid #dc2626;
  box-shadow: 0 8px 32px rgba(220,38,38,0.15);
  transform: scale(1.03);
}
.pick-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 48px rgba(220,38,38,0.2);
}

.pick-img {
  height: 180px;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pick-featured .pick-img { height: 200px; }

.pick-ribbon {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 5px 14px;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

.pick-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }

.pick-brand { font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; }

.pick-card h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.3; color: #0f172a; }
.pick-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.pick-specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #f8faff;
  border: 1px solid #e8eeff;
  border-radius: 10px;
  padding: 12px 14px;
}
.pick-spec {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  align-items: baseline;
}
.pick-spec-label {
  font-weight: 700;
  color: #4f46e5;
  min-width: 38px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pick-footer { margin-top: auto; }

.pick-btn {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 11px 18px;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0.95;
}
.pick-btn:hover { opacity: 1; filter: brightness(1.1); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }

/* ── Compra con confianza ── */
.trust-bg { background: var(--bg); }

.trust-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.trust-left {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 60%, #a855f7 100%);
  padding: 56px 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-left .badge-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.trust-left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 16px;
}

.trust-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 32px;
}

.trust-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  align-self: flex-start;
}
.trust-contact-btn:hover {
  background: #f5f3ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.trust-right {
  background: var(--bg2);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-right h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.trust-items { display: flex; flex-direction: column; gap: 20px; }

.trust-item { display: flex; align-items: flex-start; gap: 14px; }

.trust-check {
  width: 36px; height: 36px;
  background: var(--tag-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.trust-item-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-item-text p { font-size: 13px; color: var(--muted); }

/* ── CTA ── */
.cta-section { padding: 72px 0; }

.cta-box {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 40%, #fce7f3 100%);
  border: 1.5px solid #c4b5fd;
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
  color: var(--text);
}

.cta-box p { color: var(--muted); margin-bottom: 32px; font-size: 16px; }

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--text);
  padding: 52px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand .logo {
  background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 14px;
  color: #a8a29e;
  margin-top: 10px;
  max-width: 260px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8a29e;
  margin-bottom: 14px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { font-size: 14px; color: #a8a29e; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: #64748b; }

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--tag-bg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.2s;
  z-index: 201;
  position: relative;
}
.nav-hamburger:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav-hamburger span:nth-child(2) { width: 65%; }

.nav-hamburger.open { background: #ede9fe; border-color: #a5b4fc; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer overlay ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer panel ── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100dvh;
  z-index: 200;
  background: #fff;
  box-shadow: -8px 0 40px rgba(79,70,229,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.drawer-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s;
  flex-shrink: 0;
}
.drawer-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
}

/* Drawer nav links */
.drawer-nav {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.drawer-nav a::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, #4f46e5, #7c3aed);
  transform: scaleY(0);
  transition: transform 0.2s;
}
.drawer-nav a:hover {
  background: var(--tag-bg);
  color: var(--accent);
}
.drawer-nav a:hover::before { transform: scaleY(1); }

.drawer-nav-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.drawer-nav a:hover .drawer-nav-icon {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

.drawer-nav-num {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--border);
  font-family: 'DM Serif Display', serif;
}
.drawer-nav a:hover .drawer-nav-num { color: #a5b4fc; }

/* Drawer divider */
.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 20px;
}

/* Drawer footer */
.drawer-footer {
  padding: 20px 24px 32px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(79,70,229,0.35);
  transition: all 0.2s;
}
.drawer-cta:hover {
  background: linear-gradient(135deg, #3730a3 0%, #6d28d9 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.45);
}
.drawer-cta::before { display: none !important; }

.drawer-tagline {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { text-align: center; padding: 110px 0 56px; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .trust-box { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .drawer-overlay,
  .mobile-menu { display: flex; }

  .container { padding: 0 16px; }

  .hero { padding: 88px 0 44px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: center; gap: 0; margin-top: 28px; padding-top: 20px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; margin: 0; text-align: center; width: 100%; }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-num { font-size: 26px; }

  section { padding: 44px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 26px; margin-bottom: 10px; }
  .section-header p { font-size: 14px; }

  .categories-grid { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: 1fr; }
  .pick-body { padding: 16px; }

  .trust-left { padding: 28px 20px; }
  .trust-right { padding: 28px 20px; }
  .trust-contact-btn { align-self: stretch; justify-content: center; }
  .trust-items { gap: 16px; }

  .cta-box { padding: 32px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Sección donaciones */
  .donation-cards { flex-direction: column !important; gap: 12px !important; }
  .donation-card  { min-width: unset !important; width: 100% !important; }
}
