/* CONFIGURACIÓN GLOBAL */
:root {
    --naranja: #f0a500;
    --negro-abs: #050505;
    --gris-pro: #121212;
    --blanco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--negro-abs);
    color: var(--blanco);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* NAVEGACIÓN */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

/* AJUSTE DEL LOGO EN EL HEADER */
.logo-img {
    height: 60px; /* Ajusta este valor según prefieras el tamaño */
    width: auto;  /* Mantiene la proporción original */
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05); /* Pequeño efecto de zoom al pasar el mouse */
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--naranja); }

.btn-reserva {
    background: var(--naranja);
    padding: 8px 18px;
    border-radius: 5px;
    color: black !important;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/cabecera/cabecera.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 60px;
}

.hero h1 { font-family: 'Orbitron'; font-size: 2.5rem; }
.highlight { color: var(--naranja); }
.btn-main { background: var(--naranja); color: black; padding: 15px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; }
/* SECCIÓN NOSOTROS (DINÁMICO) */
.about-section { padding: 80px 5%; background: var(--gris-pro); }
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    max-width: 1100px; 
    margin: 0 auto; 
    align-items: center;
}
.about-image img { 
    width: 100%; 
    border-radius: 15px; 
    border-left: 6px solid var(--naranja); 
}

/* SERVICIOS CON EFECTO ZOOM Y BRILLO */
.services-modern { 
    padding: 80px 5%; 
    text-align: center; 
}

.services-container { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    flex-wrap: wrap; 
    margin-top: 40px; 
}

.service-box { 
    background: #1a1a1a; 
    padding: 40px 30px; 
    border-radius: 20px; 
    width: 320px; 
    border: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto elástico */
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* El efecto Zoom al pasar el mouse */
.service-box:hover { 
    transform: translateY(-15px) scale(1.05); 
    border-color: var(--naranja);
    box-shadow: 0 15px 30px rgba(240, 165, 0, 0.15);
}

/* Efecto de brillo sutil */
.service-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
    transition: 0.5s;
    pointer-events: none;
}

.service-box:hover::before {
    top: -50%;
    left: -50%;
}

.service-box i { 
    font-size: 3rem; 
    color: var(--naranja); 
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-box h3 {
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.service-box p {
    font-size: 0.9rem;
    color: #ccc;
}

/* NUESTRA FLOTA (AQUÍ ESTABA EL ERROR) */
.gallery-section { 
    padding: 80px 5%; 
    text-align: center; 
    background: var(--negro-abs);
}
.section-title h2 { font-family: 'Orbitron'; margin-bottom: 10px; }

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 40px auto 0;
}

.vehicle-item { 
    background: var(--gris-pro); 
    padding: 20px; 
    border-radius: 20px; 
    border: 1px solid #222;
    transition: 0.4s;
}

.vehicle-item:hover {
    border-color: var(--naranja);
    transform: translateY(-10px);
}

.vehicle-item img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px; 
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background: rgba(240, 165, 0, 0.2);
    color: var(--naranja);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 10px;
    font-weight: bold;
}

/* FORMULARIO */
.booking-section { padding: 80px 5%; }
.glass-card { 
    background: #151515; 
    padding: 40px; 
    border-radius: 25px; 
    max-width: 650px; 
    margin: 0 auto; 
    border: 1px solid #333; 
}
.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

input, select { 
    width: 100%; padding: 12px; background: #222; color: white; border: 1px solid #444; border-radius: 8px; margin-top: 5px;
}

.tarifa-box { 
    background: rgba(240, 165, 0, 0.05); 
    padding: 20px; 
    border-radius: 15px; 
    border: 1px dashed var(--naranja); 
    margin: 20px 0;
    text-align: center;
}
#monto { font-size: 2rem; font-weight: bold; color: var(--naranja); }

.btn-submit { 
    width: 100%; 
    padding: 18px; 
    background: var(--naranja); 
    border: none; 
    font-weight: bold; 
    border-radius: 10px; 
    cursor: pointer; 
}

/* FOOTER */
footer { padding: 50px 5%; text-align: center; border-top: 1px solid #222; }
.social-icons a { 
    color: white; font-size: 1.2rem; margin: 0 10px; 
    display: inline-block; width: 45px; height: 45px; line-height: 45px; 
    background: #1a1a1a; border-radius: 50%; transition: 0.3s;
}
.social-icons a:hover { background: var(--naranja); color: black; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-grid, .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
#grupo_vuelo {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ESTILOS FORZADOS PARA BOTONES FLOTANTES */
.fixed-social-container {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 999999 !important; /* Por encima de absolutamente todo */
}

.btn-float {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #ffffff !important;
    font-size: 30px !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
    transition: all 0.3s ease-in-out !important;
}

.messenger-bg {
    background-color: #0084ff !important;
}

.whatsapp-bg {
    background-color: #25d366 !important;
}

.btn-float:hover {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6) !important;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .btn-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 25px !important;
    }
    .fixed-social-container {
        bottom: 20px !important;
        right: 20px !important;
    }
}
/* EFECTO DE PULSO PARA BOTONES FLOTANTES */

/* 1. Definimos la animación del pulso */
@keyframes pulso-luz {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); /* Color WhatsApp */
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulso-msn {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 132, 255, 0.7); /* Color Messenger */
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 132, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 132, 255, 0);
    }
}

/* 2. Aplicamos la animación a tus clases existentes */
.whatsapp-bg {
    animation: pulso-luz 2s infinite !important;
}

.messenger-bg {
    animation: pulso-msn 2s infinite !important;
    animation-delay: 1s; /* Para que no pulsen exactamente al mismo tiempo */
}
/* ESTILOS DEL MODAL BLACK AIRPORT */
.modal-overlay {
    display: none; /* Oculto inicialmente */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Fondo negro traslúcido */
    backdrop-filter: blur(8px); /* Desenfoque de fondo */
    z-index: 99999;
}

.modal-content {
    background: #111;
    width: 90%;
    max-width: 650px;
    margin: 5vh auto;
    padding: 35px;
    border: 1px solid #f39c12;
    border-radius: 15px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto; /* Scroll interno */
    box-shadow: 0 0 40px rgba(243, 156, 18, 0.15);
}

.modal-body h3 {
    color: #f39c12;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
}

.modal-body p { margin-bottom: 15px; line-height: 1.6; }

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 35px;
    color: #f39c12;
    cursor: pointer;
    line-height: 1;
}

/* Scrollbar para que no se vea el de Windows feo */
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-thumb { background: #f39c12; border-radius: 10px; }