 :root {
      /* Colores corporativos */
      --morado: #5D3A9B;
      --amarillo: #FFD700;
      --negro: #000000;
      --gris-oscuro: #333333;
      --gris-claro: #f8f9fa;
      --blanco: #FFFFFF;
      --sombra: 0 4px 6px rgba(0,0,0,0.1);
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #333333;
      background: #FFFFFF;
      scroll-behavior: smooth;
    }

    /* Header */
    header {
      background: #5D3A9B;
      color: #FFFFFF;
      padding: 1rem 1.5rem;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow:     0 1px 0 rgba(255,255,255,0.1),
    0 10px 30px rgba(0,0,0,0.5);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      font-family: "Montserrat Alternates", sans-serif;
    }

    .logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
      border-radius: 4px;
    }

    .logo span {
      color: #FFD700;
    }
    
    .logo {
  	  gap: 0.5rem; /* mantiene separación con el logo */
    }

    .logo span, .logo {
      letter-spacing: -1px; /* reduce separación entre letras */
    }
    
    .logo {
  	  letter-spacing: -1px;
	}


    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    nav a {
      color: #FFFFFF;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #FFD700;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #FFFFFF;
      font-size: 1.8rem;
      cursor: pointer;
      margin-left: auto;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #5D3A9B 0%, #4a2d7a 100%);
      color: #FFFFFF;
      padding: 5rem 1.5rem;
      text-align: center;
      box-shadow: 0 1px 0 rgba(255,255,255,0.1),
    0 10px 30px rgba(0,0,0,0.5);
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1.2rem;
      line-height: 1.2;
      font-family: "Montserrat Alternates", sans-serif;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      opacity: 0.9;
      font-family: "Lato", sans-serif;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 180px;

  /* Efecto 3D */
  background: linear-gradient(to bottom, #FFE233 0%, #FFC700 100%); /* degradado más marcado */
  box-shadow: 
    0 6px 12px rgba(0,0,0,0.25),      /* sombra externa más profunda */
    inset 0 4px 6px rgba(255,255,255,0.5), /* luz superior */
    inset 0 -4px 6px rgba(0,0,0,0.3);      /* sombra inferior */
}

.btn-phone {
  background: linear-gradient(to bottom, #FFD700 0%, #CC9900 100%);
  color: #000000;
}



    .btn-whatsapp {
      background: transparent;
      color: #FFD700;
      border: 2px solid #FFD700;
    }
	/* Icono WhatsApp alineado perfectamente */
	.btn-whatsapp img.whatsapp-but-ini {
  		width: 30px;       /* antes 24px → ahora más grande */
  		height: 30px;
  		flex-shrink: 0;    /* evita que el icono fuerce cambio de tamaño */
  		display: block;
	}

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    /* Carousel */
    .carousel {
      max-width: 1000px;
      margin: 2rem auto;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .carousel-inner {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-item {
      min-width: 100%;
    }

    .carousel-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .carousel-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 1rem;
      z-index: 10;
    }

    .carousel-btn {
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      gap: 0.5rem;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
    }

    .indicator.active {
      background: #5D3A9B;
    }

    /* Sections */
    section {
      padding: 4rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.2rem;
      color: #5D3A9B;
      margin-bottom: 1rem;
    }

    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: #333333;
      text-align: justify;
	  text-align-last: center;
    }
    .calc-note {
  	  font-size: 0.8rem;     /* letra más pequeña */
  	  color: #666;           /* gris suave */
  	  font-style: italic;    /* cursiva */
  	  margin-bottom: 10px;
  	  text-align: center;
}
    /* Contenedor que controla tamaño y proporciones */
	.aero-video-wrapper {
  	  width: 100%;
  	  max-width: 1000px;      /* ancho máximo del vídeo en escritorio */
  	  margin: 1.5rem auto;    /* centra y separa del texto */
   	  max-height: 480px;      /* altura máxima en escritorio (ajústalo si quieres más/menos) */
  	  overflow: hidden;
  	  border-radius: 12px;
  	  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      /* Mantener la proporción sin recortar: usamos aspect-ratio como respaldo */
      aspect-ratio: 16 / 9;
    }

    .aero-video {
  	  width: 100%;
  	  height: 100%;
      display: block;
  	  display: block;
      object-fit: cover;      /* cover recorta un poco para llenar el contenedor sin deformar */
      object-position: center;
    }
/* En pantallas pequeñas quitamos la limitación de altura
   para que se vea bien en móvil (ya comentaste que ahí está perfecto) */
@media (max-width: 768px) {
  .aero-video-wrapper {
    max-width: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;  /* mantiene 16:9 en móviles */
  }
}
    /* Oculto por defecto (PC) */
#prereserva {
  display: none;
}

/* Solo visible en móviles */
@media only screen and (max-width: 768px) {
  #prereserva {
    display: block;
    background: var(--gris-claro);
    padding: 60px 20px;
  }
}

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    
    /* GRID ESPECIAL PARA AEROPUERTO */
	.aero-grid {
      display: grid;
  	  gap: 2rem;
  	  grid-template-columns: repeat(2, 1fr); /* 2 cajas por fila en escritorio */
	}

	/* En móvil: 1 por fila (como ahora) */
	@media (max-width: 768px) {
  	  .aero-grid {
    	grid-template-columns: 1fr;
  	  }
	}


    .service-card {
      background: #FFFFFF;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h3 {
      color: #5D3A9B;
      margin: 1.2rem 0 0.8rem;
      font-size: 1.4rem;
    }

    /* Pricing */
    .pricing-table {
      max-width: 800px;
      margin: 0 auto;
      background: #f8f9fa;
      border-radius: 12px;
      padding: 2rem;
    }

    .pricing-item {
      display: flex;
      justify-content: space-between;
      padding: 0.8rem 0;
      border-bottom: 1px solid #ddd;
    }

    .pricing-item:last-child {
      border-bottom: none;
    }

    .pricing-label {
      font-weight: 600;
    }

    .pricing-value {
      color: #5D3A9B;
      font-weight: 700;
      white-space: nowrap;
    }


    /* Contact */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-info h3 {
      color: #5D3A9B;
      margin-bottom: 1rem;
    }

    .contact-info p {
      margin: 0.5rem 0;
    }

	.contact-links {
  	  display: flex;
  	  justify-content: center; /* centra los botones */
  	  gap: 2rem;               /* separación equilibrada entre ellos */
  	  width: 100%;
  	  flex-wrap: wrap;         /* permite que bajen en móvil si es necesario */
	}

/* Tamaño unificado para ambos botones */
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;              
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  min-width: 150px;               
  text-align: center;
  text-decoration: none;

  /* Efecto biselado 3D */
  box-shadow: 
    0 6px 12px rgba(0,0,0,0.25),      /* sombra externa */
    inset 0 4px 6px rgba(255,255,255,0.5), /* luz superior */
    inset 0 -4px 6px rgba(0,0,0,0.3);      /* sombra inferior */
  transition: all 0.3s ease; /* para que si luego quieres hover, sea suave */
}

/* Botón WhatsApp */
.contact-link.whatsapp {
  background: linear-gradient(to bottom, #6F4BB0 0%, #5D3A9B 100%);
  color: #FFD700;
}

/* Icono WhatsApp alineado perfectamente */
.contact-link.whatsapp img.whatsapp-but {
  width: 24px;
  height: 24px;
}

/* Botón Llamar visualmente igualado */
.contact-link:not(.whatsapp) {
  background: linear-gradient(to bottom, #FFE233 0%, #CC9900 100%);
  color: #5D3A9B;
}

/* Mantener sin subrayado */
.contact-link:visited,
.contact-link:active {
  text-decoration: none;
}
    
    .contact-link:hover{
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }



    .map-container {
      width: 100%;
      height: 350px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    

    /* Footer */
    footer {
      background: #000000;
      color: #FFFFFF;
      padding: 2.5rem 1.5rem;
      text-align: center;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .footer-logo span {
      color: #FFD700;
    }

    .footer-nap {
      margin: 1.5rem 0;
      line-height: 1.8;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin: 1.5rem 0;
    }

    .footer-links a {
      color: #FFD700;
      text-decoration: none;
    }

    .copyright {
      margin-top: 2rem;
      opacity: 0.8;
      font-size: 0.9rem;
    }

/* WhatsApp Floating Button con biselado ultra marcado */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  z-index: 999;

  /* Biselado ultra 3D */
  background: linear-gradient(to bottom, #B088E0 0%, #4C2A7C 100%); /* degradado más contrastado */
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.45),       /* sombra externa fuerte */
    inset 0 8px 10px rgba(255,255,255,0.7),  /* luz superior marcada */
    inset 0 -8px 10px rgba(0,0,0,0.5);      /* sombra inferior intensa */

  color: #000000;
  animation: pulse 2s infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float img.whatsapp-icon {
  width: 82px;  /* mantenemos tamaño original */
  height: 82px;
  filter: invert(0); 
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}


    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
.sr-only2 {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  line-height: 1; 
  overflow: hidden; 
  padding: 0;
  text-decoration: none;
  color: white;
  animation: pulse2 2s infinite;
  z-index: 999;
  transition: transform 0.2s ease;

  /* Biselado ultra marcado */
  background: linear-gradient(to bottom, #FFF266 0%, #FFD700 100%); /* degradado amarillo claro → amarillo base */
  box-shadow: 
    0 12px 28px rgba(0,0,0,0.5),       /* sombra externa más fuerte */
    inset 0 10px 12px rgba(255,255,255,0.8),  /* luz superior intensa */
    inset 0 -10px 12px rgba(0,0,0,0.6);      /* sombra inferior intensa */
}

.sr-only2:hover {
  transform: scale(1.1);
}

@keyframes pulse2 {
  0% { box-shadow: 0 0 0 0 rgba(93, 58, 155, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(93, 58, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(93, 58, 155, 0); }
}



    /* Responsive Design */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      
	nav ul {
    	position: absolute;
    	top: 100%;
    	right: 0;
    	background: #5D3A9B;
    	flex-direction: column;
    	padding: 0.7rem 1.2rem;
    	gap: 0.7rem;
    	display: none;
    	text-align: right;
    	width: auto;
    	border-radius: 0 0 0 12px; /* queda más bonito */
    	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	}

      
      nav ul.show {
        display: flex;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .btn {
        padding: 0.8rem 1.5rem;
        min-width: 160px;
      }
      
      section {
        padding: 3rem 1.5rem;
      }

      .carousel-controls {
        padding: 0 0.5rem;
      }

      .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 4rem 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 300px;
      }
    }
    .language-switcher {
  margin-left: 20px;
  font-weight: 600;
  font-size: 14px;
}

.language-switcher a {
  color: white;
  text-decoration: none;
  margin: 0 4px;
}

.language-switcher a:hover {
  text-decoration: underline;
}
.flag {
  width: 18px !important;  /* tamaño ideal discreto */
  height: 18px !important;
  vertical-align: middle;
}
/*idiomas*/
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Botón Idiomas */
.lang-dropdown {
  position: relative;
  font-size: 22px;
  cursor: pointer;
  user-select: none;
}

/* Submenú idiomas */
.lang-submenu {
  position: absolute;
  top: 36px;
  right: 0;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  min-width: 120px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.lang-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.lang-submenu a:hover {
  background: rgba(255,255,255,0.1);
}

/* Mostrar submenú */
.lang-dropdown.active .lang-submenu {
  display: block;
}

/* Banderas */
.flag {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
}
