:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #181818;
  --text: #f5f5f5;
  --muted: #c8c8c8;
  --red: #dd1020;
  --red-dark: #8c0a14;
  --line: rgba(255,255,255,0.09);
  --shadow: 0 18px 40px rgba(0,0,0,0.35);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow); }
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; color: var(--muted); font-size: 0.85rem; }
.nav nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav nav a:hover { color: white; }
.hero { position: relative; min-height: 86vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.48) 42%, rgba(0,0,0,0.70) 100%),
    linear-gradient(180deg, rgba(221,16,32,0.20) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 84px 0; }
.hero-copy { width: min(700px, 100%); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08); color: #fff; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1.02; margin: 18px 0 18px; max-width: 11ch; }
.lead { font-size: 1.1rem; line-height: 1.7; color: #ececec; max-width: 60ch; }
.hero-actions, .contact-mini, .social-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red) 0%, #ff394a 100%); color: white; box-shadow: 0 12px 28px rgba(221,16,32,0.35); }
.btn-secondary { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10); }
.section { padding: 92px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
.card h2, .card h3 { margin-top: 0; }
.highlight { background: linear-gradient(180deg, rgba(221,16,32,0.12), rgba(255,255,255,0.04)); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 26px; color: #efefef; }
.check-list li::before { content: '•'; position: absolute; left: 0; top: 0; color: #ff4757; font-size: 1.5rem; line-height: 1; }
.dark-section { background: radial-gradient(circle at top left, rgba(221,16,32,0.16), transparent 35%), #090909; }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0; }
.section-heading p:last-child { color: var(--muted); line-height: 1.7; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.program-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.program-card h3 { margin-top: 0; font-size: 1.25rem; }
.program-card p { color: var(--muted); line-height: 1.7; }
.stats-section { padding-top: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.stat { padding: 28px; border-radius: 22px; background: #101010; border: 1px solid var(--line); }
.stat strong { display: block; font-size: 1.4rem; margin-bottom: 8px; }
.stat span { color: var(--muted); line-height: 1.6; }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.gallery-item {
  padding: 0; border: 0; background: transparent; border-radius: 22px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.social-grid .card { min-height: 100%; }
.social-links a, .contact-mini a {
  padding: 12px 18px; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid var(--line); font-weight: 600;
}
.video-wrap {
  position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.video-wrap iframe, .map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; background: #0d0d0d; border: 1px solid rgba(255,255,255,0.11); color: white;
  border-radius: 16px; padding: 14px 16px; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255,71,87,0.7); box-shadow: 0 0 0 3px rgba(221,16,32,0.12); }
.map-wrap { position: relative; margin-top: 22px; padding-top: 58%; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); padding: 22px 0 38px; background: #080808; }
.footer-wrap { display: flex; justify-content: center; text-align: center; }
.footer-wrap p { color: var(--muted); }
.footer-wrap a { color: #fff; }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; background: linear-gradient(135deg, var(--red), #ff384a); color: white; box-shadow: 0 16px 30px rgba(221,16,32,0.4);
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.lightbox {
  position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 960px); max-height: 88vh; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; border: 0; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white; font-size: 2rem; cursor: pointer;
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .grid-2, .cards-3, .stats-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero { min-height: 72vh; }
  .hero h1 { max-width: 13ch; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 0; align-items: flex-start; }
  .nav, .brand { flex-direction: column; align-items: flex-start; }
  .nav nav { gap: 14px; }
  .hero-content { padding: 60px 0; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .lead { font-size: 1rem; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 14px; }
  .section { padding: 74px 0; }
  .card, .program-card, .stat { padding: 24px; }
}
@media (max-width: 480px) {
  .container { width: min(100% - 22px, 1140px); }
  .gallery { grid-template-columns: 1fr; }
  .hero-actions, .social-links, .contact-mini { flex-direction: column; align-items: stretch; }
  .btn, .social-links a, .contact-mini a { width: 100%; }
  .floating-whatsapp { width: 56px; height: 56px; }
}
