:root {
  --bg: #0b0d12;
  --bg-soft: #11141b;
  --panel: #161a23;
  --text: #e8eaf0;
  --text-dim: #9aa1b1;
  --cyan: #00e5ff;
  --magenta: #ff3df0;
  --green: #6dff6d;
  --orange: #ff8a3d;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

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

/* ---------- HEADER ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.logo img { height: 92px; width: auto; }

.logo span.accent { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #060708;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.12), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 61, 240, 0.10), transparent 45%),
              var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,18,0.55) 0%, rgba(11,13,18,0.85) 70%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #060708;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(0, 229, 255, 0.4); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- SECTIONS ---------- */
section { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-head p { color: var(--text-dim); }

.section-alt { background: var(--bg-soft); }

/* ---------- CARDS / GRID ---------- */
.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.4);
}

.card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}

.card h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.card p { color: var(--text-dim); font-size: 0.92rem; }

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  position: relative;
}

.media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}

.media-card:hover img { transform: scale(1.06); }

.media-card .media-body { padding: 20px; }
.media-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.media-card p { color: var(--text-dim); font-size: 0.9rem; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.tag-cyan { color: var(--cyan); background: rgba(0,229,255,0.12); }
.tag-magenta { color: var(--magenta); background: rgba(255,61,240,0.12); }
.tag-orange { color: var(--orange); background: rgba(255,138,61,0.12); }
.tag-green { color: var(--green); background: rgba(109,255,109,0.12); }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,6,9,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- PRICING / PACKAGES ---------- */
.pkg-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.pkg-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.pkg-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #060708;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
}

.pkg-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.pkg-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
  color: var(--cyan);
}
.pkg-card .price small { font-size: 0.9rem; color: var(--text-dim); font-weight: 500; }

.pkg-card ul { list-style: none; margin: 20px 0 28px; }
.pkg-card li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pkg-card li:before { content: '✓ '; color: var(--cyan); font-weight: 700; }

/* ---------- TIMELINE (eventos) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.step .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #060708;
}

/* ---------- CONTACT FORM ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,229,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-dim); font-size: 0.9rem; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

.form-msg {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-msg.ok { background: rgba(109,255,109,0.1); color: var(--green); border: 1px solid rgba(109,255,109,0.3); }
.form-msg.err { background: rgba(255,61,240,0.1); color: var(--magenta); border: 1px solid rgba(255,61,240,0.3); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(255,61,240,0.10));
  border: 1px solid var(--border);
  padding: 64px 40px;
  text-align: center;
}

.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; font-weight: 800; }
.cta-banner p { color: var(--text-dim); margin-bottom: 28px; }

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid h4 { font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--cyan); }

.footer-bottom {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.social-row a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- PAGE HEADER (subpages) ---------- */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(0,229,255,0.10), transparent 60%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-dim); max-width: 600px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--cyan); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
}
