@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

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

:root {
  --azul: #0055FF;
  --azul-oscuro: #003db5;
  --azul-fondo: #001a5c;
  --gris-claro: #f5f7fa;
  --blanco: #ffffff;
  --texto: #1a1a2e;
  --texto-suave: #6b7280;
  --sombra: 0 4px 24px rgba(0, 85, 255, 0.10);
  --sombra-fuerte: 0 12px 40px rgba(0, 85, 255, 0.18);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transicion: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

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

/* =====================
   UTILIDADES
   ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transicion);
  white-space: nowrap;
}

.btn--primary {
  background: var(--azul);
  color: var(--blanco);
  box-shadow: 0 4px 20px rgba(0, 85, 255, 0.35);
}
.btn--primary:hover {
  background: var(--azul-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 85, 255, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blanco);
  transform: translateY(-2px);
}

.btn--outline-azul {
  background: transparent;
  color: var(--azul);
  border: 2px solid var(--azul);
}
.btn--outline-azul:hover {
  background: var(--azul);
  color: var(--blanco);
  transform: translateY(-2px);
}

.btn--blanco {
  background: var(--blanco);
  color: var(--azul);
  font-weight: 700;
}
.btn--blanco:hover {
  background: var(--gris-claro);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--blanco);
}
.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 85, 255, 0.08);
  color: var(--azul);
  border: 1px solid rgba(0, 85, 255, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge--blanco {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--azul);
}

.section-title--blanco {
  color: var(--blanco);
}

.section-title--blanco span {
  color: rgba(255, 255, 255, 0.75);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--texto-suave);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle--blanco {
  color: rgba(255, 255, 255, 0.75);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

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

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

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

.hero__badge { animation: heroFadeUp 0.6s ease 0.2s both; }
.hero h1 { animation: heroFadeUp 0.6s ease 0.4s both; }
.hero__subtitulo { animation: heroFadeUp 0.6s ease 0.6s both; }
.hero__ctas { animation: heroFadeUp 0.6s ease 0.8s both; }
.hero__scroll { animation: heroFadeUp 0.6s ease 1s both; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 85, 255, 0.4); }
  100% { box-shadow: 0 0 0 20px rgba(0, 85, 255, 0); }
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: var(--blanco);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__logo img {
  height: 40px;
  width: auto;
  transition: filter 0.4s ease;
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar__logo img {
  filter: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transicion);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul);
  transition: width 0.3s ease;
}

.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar.scrolled .navbar__links a { color: var(--texto); }
.navbar__links a:hover { color: var(--azul); }
.navbar.scrolled .navbar__links a:hover { color: var(--azul); }

.navbar__cta .btn--primary {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span { background: var(--texto); }

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blanco);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--texto);
  transition: color 0.2s;
}

.navbar__mobile a:hover { color: var(--azul); }

.navbar__mobile .btn--primary {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 26, 92, 0.88) 0%, rgba(0, 61, 181, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 0 80px;
}

.hero__badge-wrap {
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--blanco);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 24px;
  max-width: 760px;
  line-height: 1.1;
}

.hero h1 span { color: #7fb3ff; }

.hero__subtitulo {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero__scroll span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================
   HERO INTERIOR (páginas internas)
   ===================== */
.hero-interior {
  background: linear-gradient(135deg, var(--azul-fondo) 0%, var(--azul-oscuro) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-interior::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-interior__content {
  position: relative;
  z-index: 1;
}

.hero-interior h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-interior h1 span { color: #7fb3ff; }

.hero-interior .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

/* =====================
   STATS
   ===================== */
.stats {
  background: linear-gradient(135deg, var(--azul-fondo) 0%, var(--azul) 100%);
  padding: 72px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat__numero {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--blanco);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stat__sublabel {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.stats__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  display: none;
}

/* =====================
   PROPUESTA DE VALOR
   ===================== */
.valor {
  padding: 96px 0;
  background: var(--gris-claro);
}

.valor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.card-valor {
  background: var(--blanco);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--sombra);
  transition: var(--transicion);
  border: 1px solid rgba(0, 85, 255, 0.05);
}

.card-valor:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-fuerte);
}

.card-valor__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 85, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--azul);
}

.card-valor__icon svg { width: 28px; height: 28px; }

.card-valor h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--texto);
}

.card-valor p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* =====================
   SERVICIOS
   ===================== */
.servicios-preview {
  padding: 96px 0;
  background: var(--blanco);
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.card-servicio {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: var(--blanco);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-servicio:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-fuerte);
}

.card-servicio__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-servicio:hover .card-servicio__img {
  transform: scale(1.05);
}

.card-servicio__img-wrap {
  overflow: hidden;
  height: 200px;
}

.card-servicio__body {
  padding: 24px;
}

.card-servicio__tag {
  display: inline-block;
  background: rgba(0, 85, 255, 0.08);
  color: var(--azul);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.card-servicio h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--texto);
}

.card-servicio p {
  font-size: 0.88rem;
  color: var(--texto-suave);
  line-height: 1.6;
}

.servicios__cta {
  text-align: center;
  margin-top: 48px;
}

/* =====================
   SERVICIOS FULL PAGE
   ===================== */
.servicio-item {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.servicio-item:last-of-type { border-bottom: none; }

.servicio-item__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.servicio-item__grid--reverse { direction: rtl; }
.servicio-item__grid--reverse > * { direction: ltr; }

.servicio-item__img-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sombra-fuerte);
}

.servicio-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servicio-item__img-wrap:hover img { transform: scale(1.04); }

.servicio-item__numero {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 85, 255, 0.07);
  line-height: 1;
  margin-bottom: -16px;
}

.servicio-item h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--texto);
}

.servicio-item h2 span { color: var(--azul); }

.servicio-item p {
  color: var(--texto-suave);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 85, 255, 0.06);
  color: var(--azul);
  border: 1px solid rgba(0, 85, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transicion);
}

.chip:hover {
  background: var(--azul);
  color: var(--blanco);
  border-color: var(--azul);
}

.servicios-adicionales {
  padding: 80px 0;
  background: var(--gris-claro);
}

/* =====================
   SOBRE NOSOTROS
   ===================== */
.sobre-nosotros {
  padding: 96px 0;
  background: var(--gris-claro);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre__img-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sombra-fuerte);
}

.sobre__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre__badge-img {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--azul);
  color: var(--blanco);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 85, 255, 0.4);
}

.sobre__checks {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sobre__check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--texto);
}

.sobre__check::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0, 85, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230055FF' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* =====================
   EQUIPO
   ===================== */
.equipo {
  padding: 96px 0;
  background: var(--blanco);
}

.equipo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.card-equipo {
  background: var(--blanco);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transicion);
  text-align: center;
}

.card-equipo:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-fuerte);
}

.card-equipo__img-wrap {
  height: 280px;
  overflow: hidden;
}

.card-equipo__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.card-equipo:hover .card-equipo__img-wrap img { transform: scale(1.04); }

.card-equipo__body {
  padding: 28px 24px 32px;
}

.card-equipo h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--texto);
}

.card-equipo__rol {
  display: inline-block;
  background: rgba(0, 85, 255, 0.08);
  color: var(--azul);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.card-equipo p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* =====================
   INSTALACIONES / GALERÍA
   ===================== */
.instalaciones {
  padding: 96px 0;
  background: var(--gris-claro);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  margin-top: 48px;
}

.galeria__item {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.galeria__item:first-child {
  grid-row: span 2;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria__item:hover img { transform: scale(1.05); }

/* =====================
   PRECIOS
   ===================== */
.precios {
  padding: 96px 0;
  background: var(--blanco);
}

.precios--gris { background: var(--gris-claro); }

.precios__seccion { margin-bottom: 80px; }
.precios__seccion:last-of-type { margin-bottom: 0; }

.precios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card-precio {
  background: var(--blanco);
  border: 2px solid #e8ecf5;
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card-precio:hover {
  border-color: var(--azul);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--sombra-fuerte);
}

.card-precio--destacado {
  border-color: var(--azul);
  background: linear-gradient(135deg, #f0f5ff 0%, #e6eeff 100%);
  box-shadow: var(--sombra-fuerte);
}

.card-precio__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azul);
  color: var(--blanco);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-precio h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 16px;
}

.card-precio__precio {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1;
  margin-bottom: 6px;
}

.card-precio__precio span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texto-suave);
}

.card-precio__detalle {
  font-size: 0.85rem;
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 40px;
}

.card-precio__por-sesion {
  font-size: 0.82rem;
  color: var(--azul);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-precio__por-sesion::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--azul);
  border-radius: 50%;
}

/* =====================
   BANNER VALORACIÓN
   ===================== */
.banner-valoracion {
  background: linear-gradient(135deg, var(--azul-fondo) 0%, var(--azul) 100%);
  padding: 72px 0;
  text-align: center;
}

.banner-valoracion h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--blanco);
  margin-bottom: 12px;
}

.banner-valoracion p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq {
  padding: 96px 0;
  background: var(--gris-claro);
}

.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--blanco);
  border: 1px solid #e0e7f0;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq__item.open {
  box-shadow: var(--sombra);
}

.faq__pregunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}

.faq__pregunta:hover { color: var(--azul); }

.faq__item.open .faq__pregunta { color: var(--azul); }

.faq__icono {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 85, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq__item.open .faq__icono {
  transform: rotate(45deg);
  background: var(--azul);
  color: var(--blanco);
}

.faq__respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.open .faq__respuesta {
  max-height: 300px;
}

.faq__respuesta p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--texto-suave);
  line-height: 1.7;
}

/* =====================
   TESTIMONIOS
   ===================== */
.testimonios {
  padding: 96px 0;
  background: var(--gris-claro);
}

.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.card-testimonio {
  background: var(--blanco);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transicion);
}

.card-testimonio:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-fuerte);
}

.card-testimonio__estrellas {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.card-testimonio__texto {
  font-size: 0.95rem;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.card-testimonio__autor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-testimonio__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 85, 255, 0.2);
}

.card-testimonio__avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 85, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--azul);
  font-size: 1rem;
  flex-shrink: 0;
}

.card-testimonio__nombre {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--texto);
}

.card-testimonio__fecha {
  font-size: 0.78rem;
  color: var(--texto-suave);
}

/* =====================
   CONTACTO RÁPIDO (HOME)
   ===================== */
.contacto-rapido {
  background: linear-gradient(135deg, var(--azul-fondo) 0%, var(--azul-oscuro) 100%);
  padding: 96px 0;
}

.contacto-rapido__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contacto-rapido__info h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--blanco);
  margin-bottom: 32px;
}

.contacto-rapido__datos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-dato {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacto-dato__icono {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
}

.contacto-dato__icono svg { width: 20px; height: 20px; }

.contacto-dato__texto strong {
  display: block;
  color: var(--blanco);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contacto-dato__texto span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.contacto-rapido__acciones {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacto-rapido__acciones h3 {
  color: var(--blanco);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* =====================
   CONTACTO PAGE
   ===================== */
.contacto-page {
  padding: 80px 0;
}

.contacto-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contacto-page__card {
  background: var(--gris-claro);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.contacto-page__card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--texto);
}

.contacto-page__datos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contacto-page__dato {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contacto-page__dato-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(0, 85, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
}

.contacto-page__dato-icon svg { width: 20px; height: 20px; }

.contacto-page__dato strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--texto);
  margin-bottom: 2px;
}

.contacto-page__dato span {
  font-size: 0.88rem;
  color: var(--texto-suave);
  line-height: 1.5;
}

.contacto-page__botones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacto-page__botones .btn {
  justify-content: center;
  width: 100%;
}

/* =====================
   FORMULARIO
   ===================== */
.form-card {
  background: var(--blanco);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--texto);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e7f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--texto);
  background: var(--blanco);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--azul);
}

.form-check label {
  font-size: 0.85rem;
  color: var(--texto-suave);
  line-height: 1.5;
}

.form-check label a {
  color: var(--azul);
  text-decoration: underline;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* =====================
   MAPA
   ===================== */
.mapa {
  padding: 0;
}

.mapa iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: saturate(0.8);
}

.mapa-section {
  padding: 80px 0 0;
}

.mapa-section iframe {
  width: 100%;
  height: 460px;
  border-radius: var(--border-radius-lg);
  border: none;
  display: block;
  box-shadow: var(--sombra);
  margin-top: 40px;
}

/* =====================
   CÓMO LLEGAR
   ===================== */
.como-llegar {
  padding: 60px 0 80px;
  background: var(--gris-claro);
}

.como-llegar h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--texto);
}

.transporte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.transporte-item {
  background: var(--blanco);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  box-shadow: var(--sombra);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.transporte-item__icono {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 85, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-size: 1.3rem;
}

.transporte-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--texto);
  margin-bottom: 4px;
}

.transporte-item span {
  font-size: 0.82rem;
  color: var(--texto-suave);
}

/* =====================
   VALORES (nosotros)
   ===================== */
.valores {
  padding: 80px 0;
  background: var(--gris-claro);
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card-valor-small {
  text-align: center;
  padding: 32px 20px;
  background: var(--blanco);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--sombra);
  transition: var(--transicion);
}

.card-valor-small:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-fuerte);
}

.card-valor-small__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card-valor-small h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--texto);
}

.card-valor-small p {
  font-size: 0.85rem;
  color: var(--texto-suave);
}

/* =====================
   CTA FINAL
   ===================== */
.cta-final {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--azul-fondo) 0%, var(--azul) 100%);
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--blanco);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================
   PRECIOS PREVIEW HOME
   ===================== */
.precios-preview {
  padding: 96px 0;
  background: var(--blanco);
}

.precios-preview .precios__grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--texto);
  padding: 64px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transicion);
  font-weight: 700;
}

.footer__social a:hover {
  background: var(--azul);
  color: var(--blanco);
}

.footer__col h4 {
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: var(--blanco);
}

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  font-size: 0.82rem;
}

.footer__bottom a:hover { color: var(--blanco); }

/* =====================
   HISTORIA (nosotros)
   ===================== */
.historia {
  padding: 96px 0;
  background: var(--blanco);
}

.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.historia__img-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sombra-fuerte);
}

.historia__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historia__texto h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--texto);
}

.historia__texto h2 span { color: var(--azul); }

.historia__texto p {
  font-size: 0.97rem;
  color: var(--texto-suave);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .sobre__grid, .historia__grid { gap: 40px; }
  .servicio-item__grid { gap: 40px; }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .stats__grid { grid-template-columns: 1fr; gap: 24px; }

  .sobre__grid,
  .historia__grid,
  .servicio-item__grid,
  .contacto-rapido__grid,
  .contacto-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .servicio-item__grid--reverse { direction: ltr; }

  .equipo__grid { grid-template-columns: 1fr; max-width: 400px; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }

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

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeria__item:first-child { grid-row: span 1; }

  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .precios__grid { grid-template-columns: 1fr; max-width: 380px; margin: 40px auto 0; }

  .contacto-page__botones .btn { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 22px; }
  .galeria__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cta-final__btns { flex-direction: column; align-items: center; }
  .cta-final__btns .btn { width: 100%; justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
