/* RESET CSS BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

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

/* VARIABLES CSS - IDENTIDAD VISUAL COPS */
:root {
  /* Colores Corporativos */
  --color-prussian: #033653;
  --color-black: #000000;
  --color-aqua: #00FFFF;
  --color-white: #ffffff;

  /* Tipografía Corporativa */
  --font-primary: 'Kanit', sans-serif;

  /* Pesos Tipográficos */
  --font-weight-extra-light: 200;
  --font-weight-light: 300;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  /* Escalas de Tamaño (base para responsive) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

/* ESTILOS BASE */
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-light);
  color: var(--color-black);
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semi-bold);
  line-height: 1.2;
}

/* HEADER STYLES */
.header {
  width: 100%;
  background-color: var(--color-prussian);
  color: var(--color-white);
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  height: 32px;
  object-fit: contain;
}

/* Navegación escritorio */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-size: var(--text-base);
}

.header__nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.header__nav-link:hover {
  opacity: 0.9;
  color: var(--color-aqua);
}

/* Botón CTA */
.header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: var(--color-aqua);
  color: var(--color-prussian);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  outline: none;
}

.header__cta-btn:focus {
  box-shadow: 0 0 0 2px var(--color-white);
}

.header__cta-icon {
  width: 16px;
  height: 16px;
}

/* Botón hamburguesa móvil */
.header__hamburger {
  display: block;
}

.header__hamburger-btn {
  padding: 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.header__hamburger-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__hamburger-btn:focus {
  box-shadow: 0 0 0 2px var(--color-white);
}

.header__hamburger-icon {
  width: 24px;
  height: 24px;
}

/* Menú móvil */
.header__mobile-menu {
  display: none;
  background-color: var(--color-prussian);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-menu.active {
  display: block;
}

.header__mobile-container {
  padding: 16px 30px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__mobile-link {
  display: block;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  padding: 8px 0;
  text-decoration: none;
}

.header__mobile-cta {
  padding-top: 8px;
}

.header__mobile-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: var(--color-aqua);
  color: var(--color-prussian);
  font-weight: var(--font-weight-semi-bold);
  text-decoration: none;
}

.header__mobile-cta-icon {
  width: 16px;
  height: 16px;
}

/* MEDIA QUERIES - Tablet y Desktop */
@media (min-width: 768px) {
  .header__logo-img {
    height: 40px;
  }

  .header__nav {
    display: block;
  }

  .header__hamburger {
    display: none;
  }

  .header__mobile-menu {
    display: none !important;
  }
}
/* =========================
   HERO SECTION (Mobile First)
========================= */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Carrusel */
.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 54, 83, 0.5);
  z-index: 1;
}

/* Indicadores */
.hero__controls {
  position: absolute;
  bottom: 20px; /* closer to bottom in mobile */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero__indicators {
  display: flex;
  gap: 8px;
}

.hero__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__indicator.active {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Contenido */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 20px; /* mobile spacing */
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__title {
  font-size: var(--text-3xl); /* mobile size */
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}

.hero__subtitle {
  margin-top: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

.hero__cta {
  margin-top: 24px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--color-aqua);
  color: var(--color-prussian);
  font-weight: var(--font-weight-semi-bold);
  text-decoration: none;
  transition: all 0.15s ease;
}

/* Hover solo en dispositivos con puntero */
@media (hover: hover) {
  .hero__btn:hover {
    transform: translateY(-2px);
  }
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {
  .hero__content {
    padding: 90px 30px;
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__subtitle {
    font-size: var(--text-base);
    max-width: 28rem;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {
  .hero__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 30px;
  }

  .hero__title {
    font-size: var(--text-5xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
  }

  .hero__indicator {
    width: 12px;
    height: 12px;
  }
}

/* ABOUT SECTION STYLES */
.about {
  padding: 80px 0;
  background-color: var(--color-white);
}

.about__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

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

/* Contenido de texto */
.about__content {
  grid-column: 1;
}

.about__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-prussian);
  margin-bottom: 24px;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about__paragraph {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(3, 54, 83, 0.9);
}

/* Valores */
.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.value-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.value-card__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-aqua);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card__svg {
  width: 24px;
  height: 24px;
  color: var(--color-prussian);
}

.value-card__text {
  flex: 1;
}

.value-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-prussian);
  margin-bottom: 8px;
}

.value-card__description {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(3, 54, 83, 0.7);
}

/* Video */
.about__video-container {
  grid-column: 1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.video-container {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--color-prussian);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.video-wrapper:hover .video-container {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-prussian);
}

.video-fallback__content {
  text-align: center;
  color: var(--color-white);
}

.video-fallback__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.video-fallback__svg {
  width: 32px;
  height: 32px;
  color: var(--color-prussian);
}

.video-fallback__text {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 54, 83, 0.2), transparent);
}

.video-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.video-wrapper:hover .video-border {
  border-color: var(--color-aqua);
}

.video-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: var(--color-aqua);
  color: var(--color-prussian);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* MEDIA QUERIES - Tablet y Desktop */
@media (min-width: 768px) {
  .about {
    padding: 100px 0;
  }

  .about__title {
    font-size: var(--text-4xl);
  }

  .video-wrapper {
    max-width: 350px;
  }
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }

  .about__video-container {
    grid-column: 2;
    margin-top: 0;
  }

  .video-wrapper {
    max-width: 450px;
  }

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

/* ============================
   SECCIÓN - SERVICIOS
   ============================ */

.services {
  padding: 5rem 0;
  background-color: var(--color-prussian);
  position: relative;
  overflow: hidden;
}

/* Efecto sutil de textura en el fondo */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0, 100, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 100, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__title {
  font-family: var(--font-primary);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  position: relative;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.services__underline {
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-aqua), #00ccff);
  margin: 0.5rem auto 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 255, 255, 0.3);
}

/* Subtítulo opcional */
.services__subtitle {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-light);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xl);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* ============================
   LAYOUT GENERAL POR CATEGORÍA
   ============================ */

.service-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  align-items: stretch;
}

/* Banner (imagen) */
.service-category__banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-category__banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-category__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  transition: background 0.3s ease;
}

.service-category__banner:hover .service-category__banner-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

.service-category__header {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 10;
  color: var(--color-white);
}

.service-category__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-semi-bold);
  margin-bottom: 1rem;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-category__text {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-light);
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 90%;
}

/* GRID de tarjetas */
.service-category__grid {
  display: grid;
  gap: 1.5rem;
}

/* Tarjetas */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.8rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 1);
}

.service-card__content {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.service-card__icon {
  color: var(--color-aqua);
  min-width: 36px;
  background: linear-gradient(135deg, var(--color-aqua), #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card__svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(0, 255, 255, 0.3));
  color: blue;
}

.service-card__main-text {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--text-xl);
  color: var(--color-black);
  margin-bottom: 0.3rem;
}

.service-card__sub-text {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-base);
  color: #666;
  margin-bottom: 0.5rem;
}

.service-card__description {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-light);
  font-size: var(--text-sm);
  color: #777;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ============================
   ALTERNAR ORDEN DE CATEGORÍAS
   ============================ */

/* Categorías impares (1ra, 3ra...) - Imagen a la DERECHA, texto a la IZQUIERDA */
.service-category:nth-child(odd) .service-category__banner {
  order: 2;
}

.service-category:nth-child(odd) .service-category__grid {
  order: 1;
}

/* Categorías pares (2da, 4ta...) - Imagen a la IZQUIERDA, texto a la DERECHA */
.service-category:nth-child(even) .service-category__banner {
  order: 1;
}

.service-category:nth-child(even) .service-category__grid {
  order: 2;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  .service-category {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  /* En móvil la imagen va arriba */
  .service-category .service-category__banner {
    order: 1 !important;
    min-height: 320px;
  }

  .service-category .service-category__grid {
    order: 2 !important;
  }

  .services__title {
    font-size: var(--text-4xl);
  }

  .service-category__title {
    font-size: var(--text-2xl);
  }

  .service-category__text {
    font-size: var(--text-base);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 3.5rem 0;
  }

  .services__title {
    font-size: var(--text-3xl);
  }

  .service-category__title {
    font-size: var(--text-xl);
  }

  .service-category__banner {
    min-height: 280px;
    border-radius: 14px;
  }

  .service-card {
    padding: 1.4rem 1.2rem;
  }

  .service-card__content {
    gap: 1rem;
  }

  .service-card__svg {
    width: 32px;
    height: 32px;
  }

  .service-card__main-text {
    font-size: var(--text-lg);
  }

  .service-card__sub-text {
    font-size: var(--text-sm);
  }
}

@media (max-width: 400px) {
  .services__title {
    font-size: var(--text-2xl);
  }

  .services__container {
    padding: 0 1rem;
  }

  .service-category__header {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .service-card {
    padding: 1.2rem 1rem;
  }

  .service-category__title {
    font-size: var(--text-lg);
  }

  .service-category__text {
    font-size: var(--text-sm);
  }
}

/* ============================
   ANIMACIONES SUTILES
   ============================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-category {
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-category:nth-child(2) {
  animation-delay: 0.1s;
}

.service-category:nth-child(3) {
  animation-delay: 0.2s;
}

.service-category:nth-child(4) {
  animation-delay: 0.3s;
}

/* Mejora para la legibilidad en móviles */
@media (max-width: 600px) {
  .service-category__text {
    font-size: var(--text-base);
    line-height: 1.5;
  }

  .service-card__description {
    font-size: var(--text-xs);
  }
}

/* Ajustes para tablets */
@media (min-width: 601px) and (max-width: 900px) {
  .services__title {
    font-size: var(--text-4xl);
  }

  .service-category__title {
    font-size: var(--text-2xl);
  }
}

/* Mantener el orden móvil para todas las categorías */
@media (max-width: 900px) {
  .service-category .service-category__banner {
    order: 1 !important;
  }

  .service-category .service-category__grid {
    order: 2 !important;
  }
}

/* JOIN TEAM SECTION STYLES - CON COLORES INVERTIDOS */
.join-team {
  padding: 60px 0;
  background-color: var(--color-prussian);
  border-bottom: var(--color-aqua) 0.5px solid;
  /* CAMBIADO: antes era white */
}

.join-team__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.join-team__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  /* CAMBIADO: antes era prussian */
  line-height: 1.3;
}

.join-team__btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-aqua);
  color: var(--color-prussian);
  /* Mantenido */
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.join-team__btn:hover {
  background-color: transparent;
  color: var(--color-aqua);
  /* Mantenido */
  border-color: var(--color-aqua);
  /* Mantenido */
  transform: translateY(-2px);
}

.join-team__note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  /* CAMBIADO: antes era #6b7280 */
  margin-top: 8px;
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
  .join-team {
    padding: 80px 0;
  }

  .join-team__title {
    font-size: var(--text-3xl);
  }

  .join-team__btn {
    padding: 16px 40px;
    font-size: var(--text-lg);
  }
}

/* WHATSAPP CTA STYLES - VERSIÓN MEJORADA Y LLAMATIVA CORREGIDA */
.whatsapp-cta {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.whatsapp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.whatsapp-cta__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.whatsapp-cta__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-prussian);
  line-height: 1.2;
}

.whatsapp-cta__text {
  font-size: var(--text-xl);
  color: var(--color-prussian);
  line-height: 1.5;
  max-width: 500px;
  opacity: 0.9;
}

.whatsapp-cta__highlight {
  color: blue;
  /* CORREGIDO: antes era prussian, ahora aqua para destacar */
  font-weight: var(--font-weight-bold);
}

.whatsapp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(to right, #25D366, #128C7E);
  color: var(--color-white);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  position: relative;
  overflow: hidden;
}

.whatsapp-cta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.whatsapp-cta__btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  background: linear-gradient(to right, #128C7E, #25D366);
}

.whatsapp-cta__btn:hover::before {
  left: 100%;
}

.whatsapp-cta__icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-cta__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  max-width: 500px;
}

.whatsapp-cta__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 255, 255, 0.1);
  /* CORREGIDO: antes era aqua sólido */
  border-radius: 25px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  /* CORREGIDO: borde aqua sutil */
}

.whatsapp-cta__feature-icon {
  width: 16px;
  height: 16px;
  color: blue;
  /* CORREGIDO: antes era prussian, ahora aqua */
}

.whatsapp-cta__feature-text {
  font-size: var(--text-sm);
  color: var(--color-prussian);
  font-weight: var(--font-weight-medium);
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
  .whatsapp-cta {
    padding: 100px 0;
  }

  .whatsapp-cta__title {
    font-size: var(--text-4xl);
  }

  .whatsapp-cta__btn {
    padding: 20px 48px;
    font-size: var(--text-2xl);
  }

  .whatsapp-cta__icon {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .whatsapp-cta__title {
    font-size: var(--text-5xl);
  }
}

/* FOOTER OPTIMIZADO - 1/3 y 2/3 */
.footer {
  background-color: var(--color-prussian);
  color: white;
  padding: 60px 0 30px;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Columnas principales: 1/3 y 2/3 */
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Columna izquierda (1/3) */
.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Columna derecha (2/3) con 3 subcolumnas */
.footer__col--info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Desktop: Distribución 1/3 y 2/3 */
@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr 2fr;
    /* 1/3 y 2/3 */
    gap: 60px;
  }

  .footer__col--info {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas internas */
    gap: 40px;
  }
}

/* Tablet: 1/3 y 2/3 con apilamiento interno */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__main {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }

  .footer__col--info {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en tablet */
    gap: 30px;
  }
}

/* Desktop grande */
@media (min-width: 1024px) {
  .footer__main {
    gap: 80px;
  }

  .footer__col--info {
    gap: 50px;
  }
}

/* Estilos comunes (sin cambios) */
.footer__logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 10px;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-aqua);
}

/* Contacto */
.footer__contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* Navegación */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--color-aqua);
  padding-left: 5px;
}

/* Horarios */
.footer__hours p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.footer__emergency {
  color: var(--color-aqua) !important;
  font-weight: bold;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
}

/* Redes sociales */
.footer__social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer__social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.footer__social-icons a:hover {
  background-color: var(--color-aqua);
  transform: translateY(-3px);
}

/* Copyright */
.footer__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.footer__links {
  display: flex;
  gap: 15px;
  align-items: center;
}

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

.footer__links a:hover {
  color: var(--color-aqua);
}

@media (min-width: 768px) {
  .footer__legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}