/* ── RESET BASE PARA ESTA VISTA ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--sn-surface);
  color: #1a1a18;
}

/* ── VARIABLES LOCALES ── */
:root {
  --sn-blue: #185FA5;
  --sn-blue-light: #E6F1FB;
  --sn-teal: #0F6E56;
  --sn-teal-light: #E1F5EE;
  --sn-text-muted: #6b6b67;
  --sn-border: rgba(0,0,0,0.10);
  --sn-surface: #f8f7f4;
  --sn-radius: 14px;
}

/* ── PAGE WRAPPER ── */
.sn-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sn-blue);
  background: var(--sn-blue-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sn-blue);
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--sn-blue); }

.hero-desc {
  font-size: 15px;
  color: var(--sn-text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-group { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-sn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sn-blue); color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 11px 20px; border-radius: 8px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-sn-primary:hover { background: #0C447C; transform: translateY(-1px); }
.btn-sn-primary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.btn-sn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; padding: 11px 20px; border-radius: 8px;
  text-decoration: none; border: 1px solid var(--sn-border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-sn-ghost:hover { border-color: rgba(0,0,0,0.25); background: #fff; }

/* STAT CARD */
.hero-card {
  background: #fff; border: 1px solid var(--sn-border);
  border-radius: var(--sn-radius); padding: 1.75rem;
  display: flex; flex-direction: column;
}
.hero-card-header {
  font-size: 12px; font-weight: 500; text-transform: uppercase;
  color: var(--sn-text-muted); margin-bottom: 1.5rem;
}
.stat-row {
  display: flex; align-items: center; gap: 14px;
  padding: 1rem 0; border-bottom: 1px solid var(--sn-border);
}
.stat-row:last-child { border-bottom: none; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--sn-blue-light); display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 18px; height: 18px; stroke: var(--sn-blue); fill: none; stroke-width: 2; }
.stat-icon.green { background: var(--sn-teal-light); }
.stat-icon.green svg { stroke: var(--sn-teal); }
.stat-label { font-size: 12px; color: var(--sn-text-muted); }
.stat-val { font-size: 14px; font-weight: 500; }

/* ── SERVICES ── */
.section-label { font-size: 11px; font-weight: 500; text-transform: uppercase; color: var(--sn-text-muted); margin-bottom: 1rem; }
.divider { border: none; border-top: 1px solid var(--sn-border); margin: 3rem 0; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-card {
  background: #fff; border: 1px solid var(--sn-border);
  border-radius: var(--sn-radius); padding: 1.25rem 1.1rem;
  transition: all 0.2s ease;
}
.service-card:hover { border-color: rgba(24,95,165,0.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.srv-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--sn-teal-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
}
.srv-icon svg { width: 18px; height: 18px; stroke: var(--sn-teal); fill: none; stroke-width: 2; }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 16px; font-weight: 400; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--sn-text-muted); line-height: 1.55; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.gallery img {
  width: 100%; height: 230px; object-fit: cover;
  border-radius: var(--sn-radius); border: 1px solid var(--sn-border);
  cursor: zoom-in; transition: all 0.3s ease;
}
.gallery img:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.gallery-col { display: flex; flex-direction: column; gap: 12px; }
.gallery-col img { height: 109px; }

/* LIGHTBOX */
.sn-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 9999;
  align-items: center; justify-content: center;
}
.sn-lightbox.open { display: flex; }
.sn-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.contact-item {
  background: #fff; border: 1px solid var(--sn-border);
  border-radius: var(--sn-radius); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit;
  transition: all 0.2s;
}
.contact-item:hover { border-color: var(--sn-blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,43,146,0.1); }
.contact-dot { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-dot svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dot-wa { background: #EAF3DE; color: #3B6D11; } 
.dot-mail { background: var(--sn-blue-light); color: var(--sn-blue); }
.dot-ig { background: #FBEAF0; color: #993556; }
.contact-label { font-size: 11px; color: var(--sn-text-muted); }
.contact-val { font-size: 14px; font-weight: 500; }

/* ── LOCATION ── */
.location-bar {
  background: #fff; border: 1px solid var(--sn-border);
  border-radius: var(--sn-radius); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
}
.location-bar svg { width: 18px; height: 18px; stroke: var(--sn-blue); fill: none; stroke-width: 2; }
.location-text { font-size: 14px; }
.location-text span { color: var(--sn-text-muted); font-size: 13px; margin-right: 6px; }
.location-link { margin-left: auto; font-size: 13px; color: var(--sn-blue); text-decoration: none; }

/* ── MAPA ── */
.map-container {
  width: 100%;
  border-radius: var(--sn-radius);
  overflow: hidden;
  border: 1px solid var(--sn-border);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 200px; }
  .gallery-col { flex-direction: row; }
  .gallery-col img { flex: 1; height: 140px; }
  .cta-group { flex-direction: column; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}