/* ── CORE DESIGN SYSTEM ─────────────────────── */
:root {
  --white:    #ffffff;
  --bg:       #f8fafc;
  --bg2:      #f1f5f9;
  --dark:     #080b14;
  --dark2:    #0d1120;
  --dark3:    #141827;
  --border:   #e2e8f0;
  --border2:  #cbd5e1;
  --text:     #0a0e1a;
  --muted:    #64748b;
  --muted2:   #94a3b8;
  --green:    #059669;
  --green2:   #06D6A0;
  --green-bg: rgba(5,150,105,0.08);
  --green-glow: rgba(5,150,105,0.3);
  --green-lt: rgba(6,214,160,0.5);
  --teal-lt:  rgba(6,214,160,0.35);
  --blue-lt:  rgba(99,102,241,0.12);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILS ─────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border2); border-radius: 99px;
  background: var(--white); padding: 6px 8px 6px 16px;
  font-size: 13px; color: var(--muted); font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pill-badge-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pill-badge-arrow svg { width: 13px; height: 13px; color: white; }

.section-tag {
  display: inline-flex; align-items: center;
  background: var(--green-bg); color: var(--green);
  border-radius: 99px; padding: 4px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  padding: 12px 24px; text-decoration: none; border: none;
  cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #1e293b; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-outline { background: white; color: var(--text); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--border); background: var(--bg); transform: translateY(-1px); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(5,150,105,.3); }

/* ── NAVBAR ────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 28px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; color: var(--text); text-decoration: none;
}
.nav-logo-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.nav-logo-pro { color: var(--green); }
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 7px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-price { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── HERO ──────────────────────────────── */
.hero {
  padding: 130px 0 0;
  position: relative; overflow: hidden;
  background: var(--white);
  min-height: 100vh; display: flex; flex-direction: column;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-blob-1 {
  width: 500px; height: 500px; top: -80px; right: -100px;
  background: radial-gradient(circle, rgba(134,239,172,.55) 0%, rgba(52,211,153,.3) 50%, transparent 75%);
}
.hero-blob-2 { width: 400px; height: 400px; top: 60px; right: 120px; background: radial-gradient(circle, rgba(20,184,166,.35) 0%, transparent 70%); }
.hero-blob-3 { width: 300px; height: 300px; top: 200px; left: -60px; background: radial-gradient(circle, rgba(134,239,172,.25) 0%, transparent 70%); }

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 28px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px); font-weight: 900;
  letter-spacing: -2.5px; line-height: 1.06;
  color: var(--text); max-width: 820px; margin: 24px 0 20px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 520px; line-height: 1.75; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 12px; }
.hero-note { font-size: 12px; color: var(--muted2); margin-bottom: 64px; }

/* hero mockup scene */
.hero-mockup-scene { display: flex; align-items: center; gap: 0; max-width: 1480px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.hero-mockup-wrap { flex: 1; min-width: 0; max-width: 880px; position: relative; z-index: 2; }
.hero-side-card {
  flex-shrink: 0; width: 252px; background: white; border: 1px solid rgba(226,232,240,.9);
  border-radius: 22px; padding: 22px; box-shadow: 0 20px 64px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.06);
  align-self: center; position: relative;
}
.side-left { transform: rotate(-3.5deg) translateX(28px); z-index: 1; }
.side-right { transform: rotate(3.5deg) translateX(-28px); z-index: 1; }

.side-card-title { font-size: 11px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.side-card-sub { font-size: 10px; color: var(--muted2); margin-bottom: 16px; }

.act-bars { display: flex; align-items: flex-end; gap: 6px; height: 96px; margin-bottom: 10px; }
.act-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%; justify-content: flex-end; }
.act-bar { width: 100%; border-radius: 5px 5px 3px 3px; background: rgba(5,150,105,.13); }
.act-bar.today { background: linear-gradient(180deg,#059669,#06D6A0); box-shadow: 0 4px 12px rgba(5,150,105,.35); }
.act-label { font-size: 9px; color: var(--muted2); font-weight: 500; }
.act-label.today-lbl { color: var(--green); font-weight: 700; }
.act-footer { display: flex; align-items: center; gap: 6px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 4px; }
.act-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* Category chips */
.cat-chips { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 14px; }
.cat-chip {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 9px; padding: 8px 7px;
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center;
}
.cat-chip-icon {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; background: rgba(5,150,105,.1);
}
.cat-chip-name { font-size: 9px; font-weight: 700; color: var(--text); line-height: 1.2; }
.cat-chip-count { font-size: 8px; color: var(--muted2); margin-top: 1px; }

/* Favorites strip */
.fav-strip { display: flex; flex-direction: column; gap: 7px; }
.fav-item { display: flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 9px; padding: 9px 11px; }
.fav-heart { color: var(--green); font-size: 11px; flex-shrink: 0; }
.fav-name { font-size: 10px; font-weight: 600; color: var(--text); flex: 1; }
.fav-badge { font-size: 9px; font-weight: 700; color: var(--green); background: var(--green-bg); padding: 2px 6px; border-radius: 99px; }

/* Quick actions grid */
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qa-item { background: var(--bg); border: 1px solid var(--border); border-radius: 11px; padding: 12px 10px; display: flex; flex-direction: column; gap: 5px; transition: background .15s; }
.qa-icon { width: 30px; height: 30px; border-radius: 9px; background: rgba(5,150,105,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; margin-bottom: 2px; }
.qa-label { font-size: 10px; font-weight: 700; color: var(--text); line-height: 1.2; }
.qa-desc { font-size: 9px; color: var(--muted2); }
.qa-soon { font-size: 8px; font-weight: 700; color: #fb923c; background: rgba(251,146,60,.15); padding: 2px 5px; border-radius: 99px; width: fit-content; }

.hero-mockup { background: white; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 24px 80px rgba(0,0,0,.1); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--bg); border-bottom: 1px solid var(--border); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r{background:#ff5f57;} .mock-dot.y{background:#febc2e;} .mock-dot.g{background:#27c840;}
.mock-url { flex: 1; background: white; border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 11px; color: var(--muted2); font-family: monospace; display: flex; align-items: center; gap: 5px; }
.mock-url-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green2); }

/* app mockup */
.mock-app { display: flex; height: 610px; }
.mock-side { width: 168px; background: var(--bg); border-right: 1px solid var(--border); padding: 14px 0; flex-shrink: 0; display: flex; flex-direction: column; }
.mock-side-logo { padding: 0 14px 14px; font-size: 14px; font-weight: 800; color: var(--text); border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.mock-side-logo span { background: linear-gradient(90deg,#0EA5E9,#06D6A0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.mock-nav { display: flex; align-items: center; gap: 7px; padding: 8px 14px; font-size: 12px; font-weight: 500; color: var(--muted); cursor: default; }
.mock-nav.active { color: var(--text); background: white; border-right: 2px solid var(--green); font-weight: 600; }
.mock-nav svg { width: 13px; height: 13px; flex-shrink: 0; }
.mock-body { flex: 1; padding: 20px; background: var(--bg); overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.mock-search-bar { display: flex; align-items: center; gap: 8px; background: white; border: 1.5px solid var(--border2); border-radius: 10px; padding: 10px 14px; font-size: 13px; color: var(--muted2); box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.mock-search-bar svg { width: 14px; height: 14px; color: var(--muted2); flex-shrink: 0; }
.typing-target:empty::before { content: '\00bf Qué necesitas ahora?'; color: var(--muted2); }
.mock-cursor { display: inline-block; width: 1.5px; height: 13px; background: var(--green); animation: blink 1s step-end infinite; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

.mock-stat-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 12px; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.mock-stat-label { font-size: 10px; color: var(--muted2); margin-bottom: 4px; }
.mock-stat-val { font-size: 20px; font-weight: 800; color: var(--text); line-height: 1; }
.mock-protocol-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.mock-p-title { font-size: 11px; font-weight: 600; color: var(--text); }
.mock-p-sub { font-size: 10px; color: var(--muted2); margin-top: 1px; }
.mock-year { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 99px; background: var(--green-bg); color: var(--green); }

/* ── MARQUEE ───────────────────────────── */
.marquee-section { background: var(--dark); padding: 28px 0; overflow: hidden; position: relative; }
.marquee-label { text-align: center; font-size: 11px; color: #475569; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 8px; padding: 5px 28px; font-size: 13px; font-weight: 600; color: #475569; white-space: nowrap; border-right: 1px solid #1e293b; }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.marquee-fade-l, .marquee-fade-r { position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }

/* ── SECTION GENERIC ───────────────────── */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: var(--text); }
.section-header p { font-size: 16px; color: var(--muted); margin-top: 14px; max-width: 520px; line-height: 1.75; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 14px auto 0; }
.section-header.center h2 { margin: 0 auto; max-width: 640px; }

/* ── FEATURE CARDS ─────────────────────── */
.feat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 28px; overflow: hidden; transition: all .25s ease; position: relative; }
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.feat-card-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--green-bg); border: 1px solid rgba(5,150,105,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-card-icon svg { width: 24px; height: 24px; color: var(--green); }
.feat-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── DARK SECTION ──────────────────────── */
.dark-section { background: var(--dark); padding: 100px 0; }
.dark-section h2 { color: white; }
.dark-section .section-tag { background: rgba(5,150,105,.12); color: var(--green2); }
.dark-section .section-header p { color: #94a3b8; }

/* ── SPLIT LAYOUT ──────────────────────── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.15; margin-bottom: 16px; }
.split-text p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.split-text .btn { margin-top: 28px; }
.split-visual-card { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 64px rgba(0,0,0,.1); border: 1px solid var(--border); background: white; }

/* ── PROBLEM CARDS ─────────────────────── */
.problem-apps { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.prob-card { background: var(--dark2); border: 1px solid #1e2235; border-radius: 12px; padding: 16px; transition: transform .2s ease, border-color .2s ease; }
.prob-card:hover { transform: translateY(-3px); border-color: #ef4444; }
.prob-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.prob-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; flex-shrink: 0; }
.prob-name { font-size: 11px; font-weight: 700; color: #475569; }
.prob-body { font-size: 11px; color: #475569; line-height: 1.55; }
.prob-body strong { color: #94a3b8; }
.prob-timer { display: flex; align-items: center; gap: 4px; margin-top: 10px; padding-top: 8px; border-top: 1px solid #1e2235; font-size: 10px; color: #ef4444; font-weight: 600; }
.prob-timer svg { width: 10px; height: 10px; }

.prob-total { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.2); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }

/* source comparison */
.source-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.source-card { border-radius: 12px; padding: 18px; }
.source-card.good { background: rgba(5,150,105,.06); border: 1px solid rgba(5,150,105,.2); }
.source-card.bad { background: rgba(239,68,68,.04); border: 1px solid rgba(239,68,68,.15); }
.source-card-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.source-card.good .source-card-label { color: var(--green2); }
.source-card.bad .source-card-label { color: #f87171; }
.source-title { font-size: 12px; font-weight: 700; color: white; margin-bottom: 6px; }
.source-body { font-size: 11px; color: #64748b; line-height: 1.6; }

/* Showcase refinements */
@keyframes travelSourceLine { 0% { left: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes flarePass { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(5,150,105,0.4); } 70% { box-shadow: 0 0 0 10px rgba(5,150,105,0); } 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); } }
.showcase-card { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; transform: translateY(0); }
.showcase-card:hover { transform: translateY(-8px); }

/* ── PRICING ───────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; margin: 0 auto; }
.price-card { background: white; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.price-card.featured { border-color: rgba(5,150,105,0.4); }
.price-card.featured::before { content: 'MAIS POPULAR'; position: absolute; top: 18px; right: -28px; transform: rotate(35deg); font-size: 8px; font-weight: 800; letter-spacing: .08em; color: white; background: var(--green); padding: 4px 36px; }

.of-item:hover { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.1) !important; transform: translateX(4px); }
.of-cta-btn { animation: ofGlow 2.5s ease-in-out infinite; }
@keyframes ofGlow { 0%,100% { box-shadow: 0 4px 24px rgba(5,150,105,0.35), 0 0 0 0 rgba(6,214,160,0.3); } 50% { box-shadow: 0 8px 40px rgba(5,150,105,0.55), 0 0 0 8px rgba(6,214,160,0); } }

/* ── FAQ ───────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 600; color: var(--text); gap: 16px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q svg { width: 16px; height: 16px; color: var(--muted2); flex-shrink: 0; transition: transform .2s; }
details[open] .faq-q svg { transform: rotate(45deg); color: var(--green); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.8; padding-bottom: 20px; padding-right: 32px; animation: faqOpen .25s ease; }
@keyframes faqOpen { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

/* ── FOOTER ────────────────────────────── */
.footer { background: white; border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 14px; font-weight: 800; color: var(--muted); }
.footer-logo span { background: linear-gradient(90deg,#0EA5E9,#06D6A0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--muted2); text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--muted2); }

/* ── ANIMATIONS ────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal].visible { opacity: 1; transform: translate(0) scale(1); }
[data-delay="1"] { transition-delay: .1s; } [data-delay="2"] { transition-delay: .2s; } [data-delay="3"] { transition-delay: .3s; } [data-delay="4"] { transition-delay: .4s; } [data-delay="5"] { transition-delay: .5s; }

@keyframes radarPing { 0% { transform: scale(0.1); opacity: 1; } 80% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes radarBlink { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes sweepLight { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }
@keyframes radarSpin { 100% { transform: rotate(360deg); } }
@keyframes floatStat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1140px) { .hero-side-card { display: none; } }

@media (max-width: 900px) {
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .feat-cards, .audience-grid, .pricing-grid, .problem-apps, .source-compare { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .source-showcase { flex-direction: column; gap: 32px; }
  .connect-line, .showcase-arrow { display: none; }
  .source-feature-grid { grid-template-columns: 1fr; }
  .dev-composition { flex-direction: column; align-items: center; gap: 24px; }
  .dev-monitor, .dev-tablet, .dev-phone { order: unset; margin: 0; }
  #preco > .container > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(34px, 9vw, 42px); letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .nav-actions .nav-price { display: none; }
  .dev-monitor, .dev-tablet { display: none; }
  .mock-side { display: none; }
  .cat-chips { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
