/* ═══════════════════════════════════════════════
   RECAD — Premium CSS v3
   Fuentes: Playfair Display + DM Sans
════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --navy:      #0A1628;
  --navy-mid:  #0D2045;
  --blue:      #0E4D8F;
  --blue-lt:   #1A73D4;
  --accent:    #C9A84C;   /* Dorado elegante */
  --accent-lt: #E8C870;
  --wa:        #25D366;
  --white:     #FFFFFF;
  --off-white: #F7F6F4;
  --gray-100:  #F0EEE9;
  --gray-200:  #DDD9CF;
  --gray-400:  #9A9486;
  --gray-700:  #3D3A34;
  --text:      #1C1A16;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r: 12px;
  --r-lg: 20px;
  --sh: 0 4px 24px rgba(10,22,40,0.10);
  --sh-lg: 0 16px 56px rgba(10,22,40,0.18);
  --t: 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── Contenedor ─── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Tipografía compartida ─── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8em;
}
.section-label.light { color: var(--accent-lt); }
.section-label.dark  { color: var(--blue); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.6em;
}
.section-header.light h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto;
}
.section-header.light p { color: rgba(255,255,255,0.65); }
h2 em { font-style: italic; color: var(--accent); }

/* ─── Botones ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--accent);
  color: var(--navy);
  padding: 0.85em 2.2em;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--t);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 0.85em 2em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--t);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-ghost i { transition: transform 0.3s; }
.btn-ghost:hover i { transform: translateX(4px); }

/* ══════════════════════════════════
   PAGE LOADER
══════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-logo { height: 64px; margin: 0 auto 2rem; opacity: 0.95; }
.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  border-radius: 2px;
  animation: loadFill 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loadFill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ══════════════════════════════════
   CURSOR PERSONALIZADO (solo desktop)
══════════════════════════════════ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }

  #cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%,-50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  #cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%,-50%);
    transition: transform 0.12s ease, width 0.25s, height 0.25s, opacity 0.3s;
    opacity: 0.5;
  }
  body.cursor-hover #cursor { width: 16px; height: 16px; background: var(--accent-lt); }
  body.cursor-hover #cursor-follower { width: 52px; height: 52px; opacity: 0.25; }
}
#cursor, #cursor-follower { display: none; }
@media (pointer: fine) {
  #cursor, #cursor-follower { display: block; }
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 500;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.35s ease;
}
#site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
#site-header.hidden { transform: translateY(-100%); }

.header-logo img {
  height: 48px;
  object-fit: contain;
  transition: opacity 0.3s;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5em 0.9em;
  border-radius: 8px;
  transition: var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--accent); }

.nav-link.nav-cta {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 0.55em 1.4em;
  border-radius: 50px;
  margin-left: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.nav-link.nav-cta:hover { background: var(--accent-lt); transform: translateY(-1px); }

/* Hamburger */
#nav-toggle {
  display: none;
  z-index: 600;
}
.toggle-lines {
  width: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toggle-lines span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--t);
  transform-origin: left center;
}
#nav-toggle.open .toggle-lines span:nth-child(1) { transform: rotate(37deg); }
#nav-toggle.open .toggle-lines span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle.open .toggle-lines span:nth-child(3) { transform: rotate(-37deg); }

/* PANEL MÓVIL */
#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 490;
  backdrop-filter: blur(4px);
}
#nav-overlay.visible { display: block; }

#mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 90vw);
  height: 100dvh;
  background: var(--navy);
  z-index: 550;
  display: flex;
  flex-direction: column;
  transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
#mobile-menu.open { right: 0; }

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-logo { height: 42px; }
#mobile-close {
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  padding: 0.4em;
  transition: color 0.2s;
}
#mobile-close:hover { color: white; }

.mobile-nav {
  flex: 1;
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 1.2em;
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0.9em 0.4em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-nav a span {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  min-width: 24px;
}
.mobile-nav a:hover { color: var(--white); padding-left: 0.6em; }

.mobile-menu-footer {
  padding: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background: var(--wa);
  color: white;
  padding: 1em;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.2em;
  transition: var(--t);
}
.mobile-wa-btn:hover { filter: brightness(1.1); }
.mobile-menu-footer p {
  color: rgba(255,255,255,0.45);
  font-size: 0.83rem;
  text-align: center;
  line-height: 1.8;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(10,22,40,0.92) 0%,
    rgba(14,77,143,0.65) 45%,
    rgba(10,22,40,0.45) 100%
  );
  z-index: 1;
}

/* Acento de color en esquina */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(201,168,76,0.12) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 780px;
  margin-left: max(2.5rem, calc(50vw - 620px));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4em;
  animation: heroFadeUp 0.9s 0.3s both;
}
.dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  color: white;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 0.5em;
}
.hero-title-line {
  display: block;
  animation: heroFadeUp 0.9s both;
}
.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.55s; }
.hero-title-line:nth-child(3) { animation-delay: 0.7s; }
.hero-title-line.italic {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.97rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.2em;
  line-height: 1.7;
  animation: heroFadeUp 0.9s 0.85s both;
}

.hero-actions {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 1s both;
}

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

/* Dots de navegación del hero */
.hero-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5em;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.hero-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2.5s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats flotantes */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: rgba(10,22,40,0.82);
  backdrop-filter: blur(12px);
  border-top-left-radius: var(--r-lg);
  padding: 1.4em 2.4em;
  gap: 2em;
  z-index: 3;
  animation: heroFadeUp 0.9s 1.2s both;
}
.hstat { text-align: center; }
.hstat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--accent); line-height: 1; }
.hstat span { font-size: 0.72rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }
.hstat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 1.1em 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5em;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i {
  color: var(--accent);
  font-size: 0.45em;
  opacity: 0.7;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   NOSOTROS
══════════════════════════════════ */
.section-nosotros {
  padding: 7rem 0;
  background: var(--off-white);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.nosotros-media {
  position: relative;
}

.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--sh-lg);
}
.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-badge {
  position: absolute;
  top: 1.2em;
  left: 1.2em;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5em 1.1em;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.float-card {
  position: absolute;
  background: white;
  border-radius: var(--r);
  padding: 1em 1.4em;
  display: flex;
  align-items: center;
  gap: 0.9em;
  box-shadow: var(--sh-lg);
  z-index: 2;
}
.float-card i { font-size: 1.6em; color: var(--blue); }
.float-card strong { display: block; font-size: 0.88rem; color: var(--navy); }
.float-card p { font-size: 0.75rem; color: var(--gray-400); }

.float-card-left { bottom: -1.8em; left: -2em; }
.float-card-right { top: -1.5em; right: -1.5em; }

.nosotros-text .section-label { display: block; }
.nosotros-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1.2em;
}
.nosotros-text p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1em;
  font-size: 1.02rem;
}

.nosotros-valores {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  padding: 1.1em 0;
  border-bottom: 1px solid var(--gray-200);
}
.valor-item:last-child { border-bottom: none; }
.valor-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  min-width: 36px;
  padding-top: 0.1em;
}
.valor-item strong { display: block; font-size: 0.97rem; color: var(--navy); margin-bottom: 0.2em; }
.valor-item p { font-size: 0.87rem; color: var(--gray-400); line-height: 1.5; }

/* ══════════════════════════════════
   COBERTURA
══════════════════════════════════ */
.section-cobertura {
  background: var(--navy);
  overflow: hidden;
}

.cobertura-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.cobertura-img {
  position: relative;
  overflow: hidden;
}
.cobertura-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.cobertura-inner:hover .cobertura-img img { opacity: 0.75; }

.cobertura-pill {
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.cobertura-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cobertura-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1em;
}
.cobertura-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.8em;
}

.cobertura-zonas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  margin-bottom: 2.2em;
}
.cobertura-zonas span {
  display: flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4em 1em;
  border-radius: 50px;
}
.cobertura-zonas span i { color: var(--accent); font-size: 0.9em; }

/* ══════════════════════════════════
   VENTAJAS
══════════════════════════════════ */
.section-ventajas {
  padding: 7rem 0;
  background: var(--white);
}

.ventajas-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.ventaja-feature {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 2.8em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  position: sticky;
  top: 100px;
  box-shadow: var(--sh-lg);
}
.vf-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vf-icon i { font-size: 2em; color: var(--accent); }
.vf-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.6em;
}
.vf-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.vf-list { list-style: none; display: flex; flex-direction: column; gap: 0.6em; }
.vf-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.vf-list li i { color: #7DF9A6; font-size: 0.85em; }

.ventajas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2em;
}
.ventaja-card {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 1.8em;
  border: 1.5px solid var(--gray-200);
  transition: var(--t);
  cursor: default;
}
.ventaja-card:hover {
  background: var(--navy);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.ventaja-card:hover h4,
.ventaja-card:hover p { color: white; }
.ventaja-card:hover .vc-icon { background: rgba(201,168,76,0.15); }
.ventaja-card:hover .vc-icon i { color: var(--accent); }

.vc-icon {
  width: 48px; height: 48px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  box-shadow: var(--sh);
  transition: var(--t);
}
.vc-icon i { font-size: 1.4em; color: var(--blue); transition: var(--t); }
.ventaja-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4em; transition: var(--t); }
.ventaja-card p { font-size: 0.87rem; color: var(--gray-400); line-height: 1.55; transition: var(--t); }

/* ══════════════════════════════════
   SERVICIOS
══════════════════════════════════ */
.section-servicios {
  padding: 7rem 0;
  background: var(--navy-mid);
}

.servicios-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-bottom: 3em;
}

.showcase-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  isolation: isolate;
}
.si-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.showcase-item:hover .si-img { transform: scale(1.06); }
.si-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}
.showcase-item:hover .si-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, transparent 100%);
}
.si-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8em;
  z-index: 1;
}
.si-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.4em;
  font-weight: 700;
}
.si-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.si-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.showcase-item:hover .si-content p { max-height: 80px; }
.si-arrow {
  position: absolute;
  top: 1.5em; right: 1.5em;
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1em;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: var(--t);
}
.showcase-item:hover .si-arrow { opacity: 1; transform: scale(1) rotate(0deg); }

/* Grid iconos */
.servicios-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em;
  margin-bottom: 2em;
}
.sig-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 1.4em 0.8em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
  transition: var(--t);
  cursor: default;
}
.sig-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.sig-item i { font-size: 1.7em; color: rgba(255,255,255,0.6); transition: var(--t); }
.sig-item:hover i { color: var(--accent); }
.sig-item span { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 500; transition: var(--t); }
.sig-item:hover span { color: rgba(255,255,255,0.85); }

.servicios-nota {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  font-size: 0.82rem;
}

/* ══════════════════════════════════
   CLIENTES — carrusel con imágenes naturales
══════════════════════════════════ */
.section-clientes {
  padding: 7rem 0;
  background: var(--navy);
  overflow: hidden;
}
.section-clientes .section-header h2 { color: var(--white); }
.section-clientes .section-header p  { color: rgba(255,255,255,0.55); }

.clientes-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
}

.cl-btn-side {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  z-index: 2;
}
.cl-btn-side:hover { background: var(--accent); border-color: var(--accent); color: var(--navy); }

.clientes-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.clientes-track {
  display: flex;
  gap: 1.2em;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.cliente-card {
  flex-shrink: 0;
  width: calc(33.333% - 0.8em);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--t);
  cursor: pointer;
}
.cliente-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.cliente-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.cliente-card:hover img { transform: scale(1.03); }
.clientes-dots {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: 2em;
}
.clientes-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.clientes-dots button.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Responsive clientes */
@media (max-width: 900px) {
  .cliente-card { width: calc(50% - 0.6em); }
}
@media (max-width: 600px) {
  .cliente-card { width: 100%; }
  .cl-btn-side { width: 38px; height: 38px; font-size: 0.95em; }
}

/* ══════════════════════════════════
   CARRUSEL NOSOTROS (carrusel_Inicio/)
══════════════════════════════════ */
.carrusel-inicio {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--sh-lg);
  background: var(--navy);
}
.ci-slides { position: relative; width: 100%; height: 100%; }
.ci-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.ci-slide.active { opacity: 1; }
.ci-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ci-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(10,22,40,0.6);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: white;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--t);
  border: 1px solid rgba(255,255,255,0.15);
}
.ci-btn:hover { background: var(--accent); color: var(--navy); border-color: transparent; }
.ci-prev { left: 0.8em; }
.ci-next { right: 0.8em; }

.ci-dots {
  position: absolute;
  bottom: 0.9em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4em;
  z-index: 3;
}
.ci-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.ci-dots button.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ══════════════════════════════════
   CLIENTES — tarjetas uniformes, imagen a pantalla completa en móvil
══════════════════════════════════ */
.cliente-card {
  flex-shrink: 0;
  width: calc(33.333% - 0.8em);
  border-radius: var(--r);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--t);
  cursor: pointer;
  /* Todas las tarjetas tienen la misma altura */
  display: flex;
  align-items: center;
  justify-content: center;
}
.cliente-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.cliente-card img {
  width: 100%;
  height: 220px;           /* altura fija igual en todas */
  display: block;
  object-fit: cover;       /* recorta para llenar el espacio uniformemente */
  object-position: center;
  transition: transform 0.5s ease;
}
.cliente-card:hover img { transform: scale(1.04); }

/* Tablet: 2 tarjetas, misma altura */
@media (max-width: 900px) {
  .cliente-card { width: calc(50% - 0.6em); }
  .cliente-card img { height: 200px; }
}

/* Móvil: 1 tarjeta, ocupa todo el ancho, imagen alta para llenar pantalla */
@media (max-width: 600px) {
  .cliente-card {
    width: 100%;
  }
  .cliente-card img {
    height: 70vw;   /* ocupa ~70% del ancho de pantalla en alto = se ve grande */
    object-fit: cover;
  }
  .cl-btn-side { width: 38px; height: 38px; font-size: 0.95em; }
}

/* ══════════════════════════════════
   EVENTOS — Grid masonry (eventos/)
══════════════════════════════════ */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75em;
}

/* Variantes de tamaño */
.ev-item.ev-wide { grid-column: span 2; }
.ev-item.ev-tall { grid-row:    span 2; }
.ev-item.ev-big  { grid-column: span 2; grid-row: span 2; }

.ev-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: zoom-in;
  background: var(--navy-mid);
}
.ev-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.ev-item:hover img { transform: scale(1.06); }

.ev-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ev-item:hover .ev-hover { opacity: 1; }

/* Tablet: 3 columnas */
@media (max-width: 1024px) {
  .eventos-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
  }
}

/* Móvil: 2 columnas, más pequeño */
@media (max-width: 600px) {
  .eventos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.5em;
  }
  /* En móvil ev-wide sigue siendo 2 cols (ocupa todo el ancho) */
  .ev-item.ev-tall { grid-row: span 2; }
}

/* ══════════════════════════════════
   GALERÍA
══════════════════════════════════ */
.section-galeria {
  padding: 7rem 0;
  background: var(--off-white);
}

.galeria-tabs {
  display: flex;
  gap: 0.5em;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 0.35em;
  width: fit-content;
  margin: 0 auto 2.5em;
  border: 1px solid var(--gray-200);
}
.gtab {
  padding: 0.7em 1.8em;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: var(--t);
}
.gtab.active {
  background: var(--navy);
  color: white;
  box-shadow: var(--sh);
}
.gtab:not(.active):hover { color: var(--navy); background: var(--gray-200); }

.galeria-panel { display: none; }
.galeria-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

/* Masonry grid */
.galeria-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1em;
}
.gm-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: zoom-in;
  isolation: isolate;
}
.gm-item.gm-large { grid-row: span 2; }
.gm-item.gm-wide  { grid-column: span 2; }

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gm-item:hover img { transform: scale(1.05); }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  color: white;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay i { font-size: 2em; }
.gm-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 1em;
}

/* ══════════════════════════════════
   LIGHTBOX
══════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,0.97);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
#lightbox.open { display: flex; }

#lb-img-wrap {
  max-width: min(90vw, 1000px);
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
#lb-img {
  max-width: 100%;
  max-height: 80dvh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  user-select: none;
}
#lb-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-align: center;
}
#lb-counter {
  position: absolute;
  top: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

#lb-close {
  position: absolute;
  top: 1.2em; right: 1.5em;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  padding: 0.4em;
  transition: var(--t);
  z-index: 1;
}
#lb-close:hover { color: white; transform: rotate(90deg); }

#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  padding: 0.5em 1em;
  transition: var(--t);
  z-index: 1;
}
#lb-prev { left: 0; }
#lb-next { right: 0; }
#lb-prev:hover, #lb-next:hover { color: var(--accent); }

/* ══════════════════════════════════
   CONTACTO
══════════════════════════════════ */
.section-contacto {
  padding: 7rem 0;
  background: var(--white);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contacto-left .section-label { display: block; margin-bottom: 0.5em; }
.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0.7em;
}
.contacto-left > p {
  color: var(--gray-400);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2.5em;
}

.contacto-channels { display: flex; flex-direction: column; gap: 0.75em; }
.channel-card {
  display: flex;
  align-items: center;
  gap: 1.1em;
  padding: 1.1em 1.3em;
  border-radius: var(--r);
  border: 1.5px solid var(--gray-200);
  transition: var(--t);
  cursor: pointer;
}
.channel-card:hover { border-color: transparent; box-shadow: var(--sh-lg); transform: translateX(4px); }
.channel-wa:hover  { background: #f0fdf4; border-color: rgba(37,211,102,0.3); }
.channel-email:hover { background: #eff6ff; border-color: rgba(59,130,246,0.3); }
.channel-tel:hover { background: var(--off-white); }
.channel-fb:hover  { background: #f0f4ff; border-color: rgba(24,119,242,0.3); }

.cc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3em;
  flex-shrink: 0;
  transition: var(--t);
}
.channel-wa  .cc-icon { background: rgba(37,211,102,0.12); color: var(--wa); }
.channel-email .cc-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
.channel-tel .cc-icon { background: rgba(14,77,143,0.08); color: var(--blue); }
.channel-fb  .cc-icon { background: rgba(24,119,242,0.1); color: #1877F2; }

.cc-text { flex: 1; }
.cc-text strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.1em; }
.cc-text span { display: block; font-size: 0.95rem; color: var(--text); font-weight: 500; margin-bottom: 0.1em; }
.cc-text em { font-size: 0.75rem; color: var(--gray-400); font-style: normal; }

.cc-arrow { color: var(--gray-400); transition: var(--t); }
.channel-card:hover .cc-arrow { transform: translate(2px,-2px); color: var(--navy); }

.contacto-badge {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  background: linear-gradient(135deg, rgba(10,22,40,0.04), rgba(14,77,143,0.05));
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r);
  padding: 1.3em 1.5em;
  margin-top: 2em;
}
.contacto-badge > i { font-size: 2em; color: var(--blue); flex-shrink: 0; }
.contacto-badge strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.3em; }
.contacto-badge p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.55; }

/* FORM CARD */
.form-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 2.8em;
  box-shadow: var(--sh);
  border: 1px solid var(--gray-200);
}
.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.3em;
}
.form-header p { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 1.5em; }

.method-toggle {
  display: flex;
  gap: 0.5em;
  background: white;
  padding: 0.35em;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  margin-bottom: 1.8em;
}
.mt-btn {
  flex: 1;
  padding: 0.7em 1em;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.5em;
  color: var(--gray-400);
  transition: var(--t);
}
.mt-btn.active { background: var(--navy); color: white; box-shadow: var(--sh); }
.mt-btn[data-method="whatsapp"].active { background: #1a9e52; }
.mt-btn:not(.active):hover { background: var(--gray-100); color: var(--navy); }

.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1em; margin-bottom: 1em; }
.field { margin-bottom: 1em; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4em;
  letter-spacing: 0.02em;
}
.field label span { color: #e53e3e; }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.82em 1em;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  color: var(--text);
  background: white;
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  font-size: 0.95rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-lt);
  box-shadow: 0 0 0 3px rgba(26,115,212,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field 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='%239A9486' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.5em; }

.form-submit {
  width: 100%;
  padding: 1em 2em;
  background: var(--wa);
  color: white;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.6em;
  transition: var(--t);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  letter-spacing: 0.02em;
}
.form-submit:hover { background: #1cb356; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.form-submit.email-mode { background: var(--blue); box-shadow: 0 6px 20px rgba(14,77,143,0.25); }
.form-submit.email-mode:hover { background: var(--blue-lt); box-shadow: 0 10px 28px rgba(14,77,143,0.35); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#site-footer { background: var(--navy); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-logo {
  height: 50px;
  object-fit: contain;
  margin-bottom: 1.2em;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5em;
}
.footer-socials { display: flex; gap: 0.7em; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1.1em;
  transition: var(--t);
}
.footer-socials a:hover { background: rgba(201,168,76,0.15); border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2em;
}
.footer-col { display: flex; flex-direction: column; gap: 0.55em; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-col a i { font-size: 0.9em; opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5em;
}
.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.4em;
}

/* ══════════════════════════════════
   FAB WHATSAPP
══════════════════════════════════ */
.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  background: var(--wa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  z-index: 400;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--t);
  animation: waPulse 3s ease infinite;
}
.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.6);
  animation: none;
}
.fab-tooltip {
  position: absolute;
  right: 74px;
  background: var(--navy);
  color: white;
  padding: 0.45em 1em;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.fab-wa:hover .fab-tooltip { opacity: 1; right: 78px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0.07); }
}

/* ══════════════════════════════════
   TOAST
══════════════════════════════════ */
#toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  padding: 0.9em 2em;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--sh-lg);
  transition: bottom 0.45s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
#toast.show { bottom: 2.5rem; }
#toast.success { background: #1a472a; border: 1px solid rgba(37,211,102,0.3); }
#toast.error   { background: #7f1d1d; border: 1px solid rgba(220,38,38,0.3); }

/* ══════════════════════════════════
   ANIMACIONES DE SCROLL
══════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 4rem; }
  .float-card-left { display: none; }
  .float-card-right { display: none; }
  .ventajas-layout { grid-template-columns: 1fr; }
  .ventaja-feature { position: static; }
  .ventajas-grid { grid-template-columns: repeat(3, 1fr); }
  .cobertura-inner { grid-template-columns: 1fr; }
  .cobertura-text { padding: 3.5rem 2.5rem; }
  .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  #main-nav { display: none; }
  #nav-toggle { display: flex; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .servicios-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gm-item.gm-wide { grid-column: span 2; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 64px; }
  .container { padding: 0 1.2rem; }

  #site-header { height: 64px; padding: 0 1.2rem; }
  .header-logo img { height: 40px; }

  .hero { min-height: 100dvh; }
  .hero::after { display: none; }
  .hero-content { padding: 0 1.2rem; margin-left: 0; }
  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; text-align: center; }
  .hero-nav { bottom: 1.5rem; }

  .section-nosotros,
  .section-ventajas,
  .section-galeria,
  .section-clientes,
  .section-contacto { padding: 4.5rem 0; }

  .servicios-showcase { grid-template-columns: 1fr; }
  .showcase-item { aspect-ratio: 4/3; }

  .servicios-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-item i { font-size: 1.4em; }

  .ventajas-grid { grid-template-columns: 1fr 1fr; }

  .galeria-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gm-item.gm-large { grid-row: span 1; }

  .form-card { padding: 1.8rem 1.2rem; }
  .field-group { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2em; padding-top: 3rem; padding-bottom: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .fab-wa { bottom: 1.2rem; right: 1.2rem; width: 54px; height: 54px; font-size: 1.6em; }

  .cobertura-text { padding: 2.5rem 1.5rem; }
  .nosotros-grid { gap: 2.5rem; }

  #lb-prev { left: -0.5em; padding: 0.5em 0.5em; }
  #lb-next { right: -0.5em; padding: 0.5em 0.5em; }
}

@media (max-width: 420px) {
  .ventajas-grid { grid-template-columns: 1fr; }
  .servicios-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-masonry { grid-template-columns: 1fr; }
  .gm-item.gm-wide { grid-column: span 1; }
}
