:root {
  --bg: #0b1620;
  --fg: #f6f7f3;
  --card: #142231;
  --muted: #9aa8b6;
  --border: #243747;
  --primary: #4cb0d8;
  --primary-fg: #0c1b27;
  --accent: #e8a93b;
  --whatsapp: #25d366;
  --gradient-brand: linear-gradient(135deg, #4cb0d8, #e8a93b);
  --gradient-hero: linear-gradient(180deg, rgba(11,22,32,0.6), rgba(11,22,32,0.95));
  --shadow-glow: 0 20px 60px -20px rgba(76,176,216,0.5);
  --shadow-accent: 0 16px 40px -16px rgba(232,169,59,0.6);
  --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: "Inter", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: "Space Grotesk", system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.muted { color: var(--muted); }
.muted.lg { font-size: 1.125rem; line-height: 1.7; }
.strong { font-weight: 600; }
.max-w-md { max-width: 28rem; }
.mt-12 { margin-top: 3rem; }
.eyebrow { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; }
.gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.icon { width: 1.1rem; height: 1.1rem; }
.icon-sm { width: 0.9rem; height: 0.9rem; color: var(--primary); }
.site-header { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(10px); background: rgba(11,22,32,0.7); border-bottom: 1px solid var(--border); }
.header-inner { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(76,176,216,0.4); }
.logo span { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.main-nav { display: none; gap: 2rem; color: var(--muted); font-size: 0.9rem; }
.main-nav a:hover { color: var(--fg); }
@media (min-width: 768px) { .main-nav { display: flex; } }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 1.75rem; border-radius: 999px; font-weight: 600; transition: opacity 0.2s, transform 0.2s; }
.btn:hover { opacity: 0.92; }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
.btn-brand { background: var(--gradient-brand); color: var(--primary-fg); box-shadow: var(--shadow-glow); }
.btn-whats { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-glow); border-radius: var(--radius); padding: 1rem 1.75rem; }
.btn-ghost { border: 1px solid var(--border); background: rgba(20,34,49,0.4); }
.btn-ghost:hover { background: var(--card); }
.btn-block { width: 100%; justify-content: center; margin-top: 1.5rem; }
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-content { position: relative; padding: 5rem 1.5rem 7rem; max-width: 1200px; }
@media (min-width: 768px) { .hero-content { padding: 7rem 1.5rem 10rem; } }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); background: rgba(20,34,49,0.6); padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero-content h1 { margin-top: 1.5rem; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; max-width: 48rem; }
.hero-content > p { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted); max-width: 36rem; }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.section { padding: 6rem 1.5rem; }
.section-band { background: rgba(20,34,49,0.4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.section-head-center { text-align: center; max-width: 38rem; margin: 0 auto 3.5rem; }
.section-head h2, .section-head-center h2 { margin-top: 0.75rem; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 4rem; grid-template-columns: 1fr; align-items: center; }
.grid-2-start { display: grid; gap: 4rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-2-start { grid-template-columns: 1fr 1fr; } }
.grid-2 h2, .grid-2-start h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.75rem; }
.grid-2-start p { margin-top: 1.5rem; }
.card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; }
.card-icon { display: inline-flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--gradient-brand); box-shadow: var(--shadow-accent); margin-bottom: 1.5rem; color: var(--primary-fg); }
.card-icon svg { width: 1.75rem; height: 1.75rem; }
.card h3 { font-size: 1.5rem; font-weight: 600; }
.card > p { margin-top: 0.75rem; line-height: 1.7; }
.panel { background: var(--bg); }
.glow-card { transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s; }
.glow-card:hover { transform: translateY(-2px); border-color: rgba(76,176,216,0.5); box-shadow: var(--shadow-glow); }
.values { margin-top: 1.5rem; list-style: none; display: flex; flex-direction: column; gap: 1rem; color: var(--muted); }
.values li { padding-left: 1.25rem; position: relative; }
.values li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); }
.stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-n { font-size: 1.875rem; font-weight: 700; color: var(--accent); }
.stat-l { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.contact-list { margin-top: 1.5rem; list-style: none; display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.ico { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ico svg { width: 1.15rem; height: 1.15rem; }
.ico-primary { background: rgba(76,176,216,0.15); color: var(--primary); }
.ico-accent { background: rgba(232,169,59,0.2); color: var(--accent); }
.contact-list .strong { font-size: 1rem; }
.review { text-align: center; }
.stars { margin-top: 0.5rem; color: var(--accent); letter-spacing: 0.2em; }
.review p { margin-top: 1rem; line-height: 1.7; }
.review .who { margin-top: 1.25rem; font-size: 0.875rem; }
.site-footer { border-top: 1px solid var(--border); }
.footer-inner { padding: 2.5rem 0; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.875rem; color: var(--muted); }
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: 2rem; height: 2rem; border-radius: 50%; }
.fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-glow); display: inline-flex; align-items: center; justify-content: center; }
.fab svg { width: 1.75rem; height: 1.75rem; }
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.modal-backdrop.open { display: flex; }
.modal { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; max-width: 32rem; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 2rem; height: 2rem; font-size: 1.5rem; line-height: 1; color: var(--muted); }
.modal-close:hover { color: var(--fg); }
.modal h3 { font-size: 1.25rem; }
.modal > p { margin-top: 0.5rem; font-size: 0.9rem; }
.field { margin-top: 1.5rem; }
.field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.75rem; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.cat-grid button { border: 1px solid var(--border); background: var(--card); color: var(--fg); border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; text-align: left; transition: border-color 0.2s, background 0.2s; }
.cat-grid button:hover { border-color: rgba(76,176,216,0.4); }
.cat-grid button.active, .chip-row button.active { border-color: var(--primary); background: rgba(76,176,216,0.1); color: var(--primary); }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-row button { border: 1px solid var(--border); background: var(--card); color: var(--fg); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 500; }
.chip-row button:hover { border-color: rgba(76,176,216,0.4); }
.modal textarea { width: 100%; border: 1px solid var(--border); background: var(--card); color: var(--fg); border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; font-family: inherit; resize: none; outline: none; }
.modal textarea:focus { border-color: var(--primary); }
