/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --blue-dark:    #0A1F44;
  --blue-mid:     #1A3A6B;
  --blue-vivid:   #2563EB;
  --blue-soft:    #EEF3FC;
  --blue-light:   #DBEAFE;
  --yellow:       #F5C518;
  --yellow-soft:  #FFF8DC;
  --gold:         #E8A000;
  --white:        #FFFFFF;
  --text-dark:    #0A1F44;
  --text-body:    #374151;
  --text-muted:   #6B7280;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-blue:  0 8px 32px rgba(37, 99, 235, 0.25);
  --shadow-card:  0 4px 24px rgba(10, 31, 68, 0.10);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:        72px;
  --section-pad:  96px 24px;
  --max-w:        1200px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.font-syne { font-family: 'Syne', sans-serif; }
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-vivid);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAV
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 31, 68, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(10,31,68,0.3);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--white);
  letter-spacing: 0.04em;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
  line-height: 1;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* CTA button */
.btn-nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-dark);
  background: var(--yellow);
  padding: 10px 24px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.btn-nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10, 31, 68, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px 32px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
}
#mobile-menu.open {
  display: flex;
}
#mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: var(--yellow); }
#mobile-menu .btn-mobile-cta {
  display: inline-block;
  margin-top: 12px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-dark);
  background: var(--yellow);
  padding: 14px 24px;
  border-radius: 8px;
  border-bottom: none !important;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 55%, var(--blue-vivid) 100%);
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}

/* Orbes decorativos */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(245,197,24,0.18) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero-h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.45s ease both;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark);
  background: var(--yellow);
  padding: 14px 32px;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.45);
}

.btn-outline-white {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.45);
  padding: 13px 32px;
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  animation: fadeUp 0.6s 0.6s ease both;
}
.hero-stat {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICIOS
============================================================ */
#servicios {
  padding: var(--section-pad);
  background: var(--blue-soft);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-vivid), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  margin-bottom: 14px;
  display: block;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SOBRE NOSOTROS
============================================================ */
#nosotros {
  padding: var(--section-pad);
  background: var(--white);
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}

/* Panel izquierdo */
.nosotros-panel-left {
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue-vivid) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.nosotros-panel-left::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.nosotros-panel-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--yellow);
  margin-bottom: 8px;
}
.nosotros-panel-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.valores-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.valor-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.2);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.valor-text-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  margin-bottom: 3px;
}
.valor-text-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Panel derecho */
.nosotros-panel-right .section-desc { max-width: 100%; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
}
.check-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue-vivid);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   GALERÍA
============================================================ */
#galeria {
  padding: var(--section-pad);
  background: var(--blue-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-light);
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item:not(:first-child) {
  aspect-ratio: 4/3;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #c7d9f7 100%);
  transition: background var(--transition);
}
.gallery-placeholder-icon { display: none; }
.gallery-placeholder-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue-mid);
  text-align: center;
  padding: 0 16px;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.0);
  border: 3px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  text-align: center;
  padding: 0 16px;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(10, 31, 68, 0.72);
  border-color: var(--yellow);
}
.gallery-item:hover .gallery-overlay-label { opacity: 1; }

/* ============================================================
   MAPA (condicional)
============================================================ */
#mapa {
  padding: var(--section-pad);
  background: var(--white);
}
.map-frame {
  max-width: var(--max-w);
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--blue-light);
}
.map-frame iframe { display: block; width: 100%; height: 480px; border: 0; }

/* ============================================================
   CONTACTO
============================================================ */
#contacto {
  padding: var(--section-pad);
  background: var(--blue-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: flex-start;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-blue);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.icon-whatsapp { background: #dcfce7; }
.icon-phone    { background: var(--blue-light); }
.icon-email    { background: var(--yellow-soft); }
.contact-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-card-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--blue-dark);
}

/* Formulario */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--blue-soft);
  border: 1.5px solid #d1ddf7;
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3A6B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-vivid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }

.btn-submit {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  background: var(--blue-vivid);
  padding: 14px 28px;
  border-radius: 10px;
  width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.btn-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.btn-whatsapp {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--white);
  background: #16a34a;
  padding: 14px 28px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-whatsapp:hover {
  background: #15803d;
  transform: translateY(-1px);
}

/* Form messages */
#form-success {
  display: none;
  background: #dcfce7;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 16px 20px;
  color: #166534;
  font-size: 0.93rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}
#form-success.show { display: block; }

#form-error {
  display: none;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 10px;
  padding: 16px 20px;
  color: #991b1b;
  font-size: 0.93rem;
  font-weight: 500;
  margin-bottom: 16px;
}
#form-error.show { display: block; }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-top: 4px solid var(--yellow);
  padding: 52px 24px;
  text-align: center;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
  padding-bottom: 4px;
}
.footer-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-divider {
  width: 48px; height: 2px;
  background: rgba(245,197,24,0.35);
  margin: 0 auto 24px;
  border-radius: 1px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-copy strong { color: rgba(255,255,255,0.65); }

/* ============================================================
   RESPONSIVE — >= 1400px
============================================================ */
@media (min-width: 1400px) {
  :root { --section-pad: 120px 48px; }
  #navbar { padding: 0 60px; }
}

/* ============================================================
   RESPONSIVE — <= 900px (tablet)
============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .hero-stats { gap: 20px; }
  .hero-stat { padding-right: 20px; margin-right: 20px; }
}

/* ============================================================
   RESPONSIVE — <= 600px (móvil)
============================================================ */
@media (max-width: 600px) {
  :root { --section-pad: 64px 20px; --nav-h: 64px; }

  #navbar { padding: 0 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 16/9; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline-white { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 0 0 20px 0;
    margin: 0;
  }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .map-frame iframe { height: 320px; }
}

/* ============================================================
   RESPONSIVE — <= 380px (móvil pequeño)
============================================================ */
@media (max-width: 380px) {
  :root { --section-pad: 52px 16px; }
  .hero-h1 { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .nav-logo { font-size: 1.4rem; }
  .nosotros-panel-left { padding: 32px 22px; }
}

/* ============================================================
   LUCIDE ICONS — estilos globales
============================================================ */
svg { display: block; }
.svc-svg        { color: var(--blue-vivid); }
.val-svg        { color: var(--yellow); flex-shrink: 0; }
.contact-svg    { color: currentColor; flex-shrink: 0; }
.wa-svg         { color: #fff; flex-shrink: 0; }
.gallery-ph-svg { color: rgba(255,255,255,0.3); margin-bottom: 10px; }
