:root {
    /* Paleta Turística Oceánica y Cálida */
    --primary: #0ea5e9;        /* Azul Cielo Caribeño */
    --secondary: #0284c7;      /* Azul Profundo Marino */
    --accent: #f59e0b;         /* Naranja/Amarillo Atardecer */
    --accent-hover: #d97706;
    --dark: #0f172a;
    --darker: #020617;
    --light: #fefcfb;          /* Blanco Arena Cálido */
    --sand: #fef3c7;           /* Arena amarilla */
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(2, 132, 199, 0.15); /* Sombra azulada */
    
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVBAR */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

.logo {
    height: 60px;
    border-radius: 8px;
    transition: var(--transition);
}
.logo:hover {
    transform: scale(1.05);
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,198,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* AUTOS */

.autos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px;
}

.auto {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 250px;
    transition: 0.4s;
}

.auto:hover {
    transform: translateY(-10px);
}

.auto h3 {
    color: #0a3d62;
}

.auto p {
    font-size: 18px;
    font-weight: bold;
}

.auto a {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* FORMULARIO RESERVA HERO */
.reserva-wrapper {
    background: linear-gradient(rgba(11, 17, 32, 0.75), rgba(11, 17, 32, 0.9)), url("../img/nissan\ blanco.jpeg") no-repeat center center/cover;
    padding: 100px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.reserva-wrapper::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, transparent 60%);
    top: -10%;
    left: -10%;
    border-radius: 50%;
    pointer-events: none;
}

.glass-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 550px;
    width: 100%;
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    animation: formFloat 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    color: var(--darker);
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

.formulario label {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input, select {
    width: 100%;
    padding: 16px 20px;
    margin: 5px 0 15px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
    color: var(--text-main);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

input:focus, select:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.15), inset 0 2px 4px rgba(0,0,0,0.02);
}

.resumen {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.resumen p {
    margin: 10px 0;
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.resumen span {
    font-weight: 800;
    color: var(--text-main);
    font-size: 18px;
}

.resumen p:last-child span {
    color: var(--primary);
    font-size: 24px;
}

button[type="submit"] {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    border: none;
    padding: 18px 30px;
    width: 100%;
    font-size: 16px;
    font-weight: 800;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.45);
    filter: brightness(1.05);
}

/* SERVICIOS SUPER PREMIUM */
.servicios-hero {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.servicios-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50px;
    background: var(--light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.servicios-hero h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.servicios-hero h2 span {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.servicios-hero p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.servicios-contenido {
    background: var(--light);
    padding: 60px 20px 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card-v2 {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    overflow: hidden;
}

.servicio-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.servicio-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.1);
}

.servicio-card-v2:hover::before {
    transform: scaleX(1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.1), rgba(0, 198, 255, 0.1));
    color: var(--primary);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.servicio-card-v2:hover .icon-circle {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.servicio-card-v2 h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.servicio-card-v2 p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.servicios-oferta {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fef08a, #fde047);
    color: #92400e;
    padding: 25px 40px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
}

.servicios-oferta i {
    color: #eab308;
    font-size: 24px;
}

/* MAPA */
iframe {
    width: 100%;
    height: 350px;
    border: 0;
    margin-top: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ADMIN */
table {
    width: 90%;
    margin: 80px auto;
    background: var(--white);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

th, td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #f8fafc;
}

tr:hover {
    background-color: #f1f5f9;
}

/* MENU HAMBURGUESA */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}
.menu-toggle:hover {
    color: var(--primary);
}

/* MENU NORMAL */

#menu {
    display: flex;
    gap: 25px;
}

/* CELULAR */
@media(max-width:768px) {
    .menu-toggle {
        display: block;
    }
    
    .logo {
        height: 50px;
    }

    #menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        flex-direction: column;
        display: none;
        padding: 30px 0;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        text-align: center;
    }

    #menu.activo {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* General hero/banner */
    .hero { padding: 80px 20px; }
    .hero h1, .banner h1 { font-size: 40px; }
    .banner { min-height: 300px; }

    /* Autos Grid */
    .autos {
        margin: 30px 10px;
        padding: 20px 0;
        gap: 20px;
    }

    .auto, .auto-card {
        width: 100%;
        max-width: 320px;
    }

    /* Formularios */
    .glass-form {
        margin: 30px 15px;
        padding: 30px 20px;
        width: auto;
    }

    /* Servicios / Otras secciones */
    .servicios, .empresa, .futuro, .faq, .galeria {
        padding: 60px 20px;
    }

    .servicios h2, .empresa h2, .futuro h2, .faq h2 {
        font-size: 32px;
    }

    /* Modales */
    .modal-auto .contenido-auto {
        width: 95%;
        padding: 0;
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-auto-img {
        min-height: 250px;
    }

    .modal-auto-info {
        padding: 25px;
    }

    .modal-features {
        grid-template-columns: 1fr;
    }

    .pregunta {
        width: 100%;
        padding: 20px;
    }

    .modal img { width: 90%; }
    .cerrar { right: 15px; top: 15px; }

    .cerrar-auto {
        right: 15px;
        top: 10px;
        background: rgba(0,0,0,0.5);
        color: white;
    }

    /* Admin tabla */
    table {
        width: 100%;
        margin: 20px 0;
        font-size: 14px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Ajustes Turísticos Móviles */
    .reserva-wrapper {
        padding: 40px 15px;
    }
    
    .descubre-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
        border-radius: 20px;
    }
    
    .descubre-col-texto h2 {
        font-size: 32px;
    }
    
    .descubre-listas {
        flex-direction: column;
        gap: 15px;
    }
    
    .requisitos-section {
        grid-template-columns: 1fr;
    }
    
    .servicios-hero {
        padding: 60px 15px 40px;
    }
    
    .servicios-hero h2 {
        font-size: 36px;
    }
    
    .servicios-contenido {
        grid-template-columns: 1fr;
        padding: 40px 15px 60px;
    }
    
    .servicio-card-v2 {
        padding: 30px 20px;
    }
}

.whatsapp {

    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}

/* AUTOS PREMIUM */

.autos {

    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px;

}

.auto-card {

    background: white;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

.auto-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

}

.auto-card img {

    width: 100%;
    height: 180px;
    object-fit: cover;

}

.auto-card h3 {

    margin: 20px 15px 15px;
    color: #111;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;

}

.precio {

    display: none; /* Removing price as per the new mockup, it can be passed or ignored */

}

.auto-detalles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
    padding: 0 20px 25px;
    text-align: left;
    font-size: 13px;
    color: #666;
    flex-grow: 1;
}

.auto-detalles div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auto-detalles i {
    color: #1c4587;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.botones-flush {
    display: flex;
    width: 100%;
    margin-top: auto;
    padding: 15px;
    gap: 10px;
}

.botones-flush a, .botones-flush button {
    flex: 1;
    padding: 12px 0;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border-radius: var(--radius-pill);
}

.btn-flush-izq {
    background: #f1f5f9;
    color: var(--text-muted);
}

.btn-flush-izq:hover {
    background: #e2e8f0;
    color: var(--text-main);
    transform: translateY(-2px);
}

.btn-flush-der {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.btn-flush-der:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 132, 199, 0.4);
}

/* BANNER MEJORADO */
.banner {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)), url("../img/car.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.banner h1 {
    font-size: 55px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.btn-banner {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-banner:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

/* AUTOS OFERTA */
.autos-oferta {
    background: #fffbeb;
    border-left: 5px solid #eab308;
    color: #92400e;
    padding: 20px 30px;
    margin: 0 auto 50px;
    max-width: 800px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-small);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.autos-oferta i {
    color: #eab308;
    font-size: 24px;
}

/* EMPRESA */
.empresa {
    background: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.empresa h2 {
    color: var(--dark);
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 800;
}

.empresa p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* FUTURO */
.futuro {
    background: var(--light);
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.futuro h2 {
    color: var(--dark);
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 800;
}

.futuro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* FAQ */
.faq {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.faq h2 {
    color: var(--dark);
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 800;
}

.pregunta {
    background: var(--light);
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: left;
    transition: var(--transition);
}

.pregunta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 114, 255, 0.2);
}

.pregunta h3 {
    color: var(--dark);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.pregunta p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* GALERIA */
.galeria {
    text-align: center;
    padding: 100px 20px;
    background: var(--light);
}

.galeria h2 {
    color: var(--dark);
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 800;
}

.slider {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: 0.5s;
}

.slides img {
    width: 100%;
    border-radius: 10px;
}

/* MODAL FOTOS */
.slider-auto img {
    width: 100%;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.slider-auto img:hover {
    transform: scale(1.03);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

.cerrar {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.cerrar:hover {
    color: var(--accent);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: rgba(255,255,255,0.7);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 20px;
}

.prev:hover, .next:hover {
    color: var(--white);
}

.prev { left: 5%; }
.next { right: 5%; }

/* EFECTO 3D AUTOS */
.auto-card {
    perspective: 1000px;
}

.auto-card:hover {
    transform: rotateY(5deg) rotateX(2deg) scale(1.02);
    transition: 0.5s;
}

.auto-card img {
    transition: 0.5s;
}

.auto-card:hover img {
    transform: scale(1.05);
}

.mapa {
    width: 100%;
    height: 350px;
    margin-top: 20px;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.botones {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-ver {
    display: inline-block;
    margin: 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
    transition: var(--transition);
}

.btn-ver:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
}

.modal-auto {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.contenido-auto {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 900px;
    max-width: 95%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-auto-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    background-color: var(--light);
}

.modal-auto-info {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.modal-auto-header {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.03);
}

.modal-auto-header div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.modal-auto-header i {
    color: var(--primary);
    font-size: 22px;
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    color: var(--text-muted);
    font-size: 15px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-features li i {
    color: var(--secondary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.modal-oferta {
    background-color: #fffbeb;
    color: #92400e;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid #eab308;
}

.modal-oferta i {
    color: #eab308;
    font-size: 18px;
}

.btn-reserva-ya {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 18px;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-top: auto;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.btn-reserva-ya:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 114, 255, 0.4);
}

.cerrar-auto {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cerrar-auto:hover {
    color: #e11d48;
    transform: rotate(90deg);
}

/* DESCUBRE SECTION */
.descubre-section {
    max-width: 1100px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 40px;
    align-items: center;
    background: var(--sand);
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.descubre-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.descubre-col-img img, .video-explora {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    max-height: 550px;
    border: 1px solid rgba(0,0,0,0.03);
}

.descubre-col-texto h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.descubre-col-texto h2 span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.descubre-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.descubre-desc {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 35px;
}

.descubre-listas {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.descubre-listas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.descubre-listas li {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.descubre-listas li i {
    color: var(--accent);
    font-size: 18px;
}

.btn-descubre {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-descubre:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

/* REQUISITOS SECTION */
.requisitos-section {
    max-width: 900px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.03);
}

.req-left {
    display: flex;
    flex-direction: column;
}

.req-blue {
    background: linear-gradient(135deg, var(--dark), #1e293b);
    padding: 40px 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.req-blue h2 {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.req-blue ul {
    color: var(--white);
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.req-blue li {
    margin-bottom: 20px;
}

.req-blue li span {
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0.8;
}

.req-yellow {
    background-color: var(--accent);
    height: 60px;
}

.req-right {
    background-color: var(--light);
}

.req-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DESTINOS SECTION */
.destino-section {
    padding: 80px 20px;
    background: #f4f7fb;
    text-align: center;
}

.destino-texto h2 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 40px;
}

.destino-texto h2 span {
    color: #00c6ff;
}

.mapa-destinos {
    width: 100%;
    max-width: 1100px;
    height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 5px solid white;
    z-index: 1;
}

/* CUSTOM PIN MARKERS */
.custom-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.pin-marker {
    color: #e11d48;
    font-size: 32px;
    filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.4));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-pin:hover .pin-marker {
    transform: scale(1.3) translateY(-8px);
    color: #ff003c;
}

.pin-text {
    background: white;
    color: #0f172a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-top: -8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.custom-pin:hover .pin-text {
    background: #0072ff;
    color: white;
    border-color: #0072ff;
    transform: translateY(-5px);
}

/* PROMO BANNER */

.promo-banner {
    background: linear-gradient(135deg, #0a3d62, #0072ff);
    color: white;
    padding: 60px 30px;
    text-align: center;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: bold;
}

.promo-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    margin: 0 auto 25px auto;
    line-height: 1.5;
    max-width: 850px;
    letter-spacing: 0.5px;
}

.promo-heading span {
    color: #ffd700;
    font-weight: 900;
    font-size: 42px;
}

.promo-text {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #e0eaff;
}

.btn-promo-reserva {
    display: inline-block;
    background: #ffd700;
    color: #0a3d62;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-promo-reserva:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

.promo-contact-bar {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #cce0ff;
    position: relative;
    z-index: 1;
}

.promo-contact-bar span {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
}

/* NEW FOOTER DESIGN */

.footer-custom {
    background-color: #060b13;
    color: #e2e8f0;
    padding: 60px 40px 30px;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Logo Column */
.footer-col-logo {
    text-align: left;
    max-width: 250px;
    display: flex;
    flex-direction: column;
}

.footer-custom-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    margin-bottom: 20px;
}

.footer-slogan {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-copy {
    font-size: 12px;
    color: #8fa0b5;
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: #f1c40f;
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.footer-contact-list a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.contact-text-lines {
    display: flex;
    flex-direction: column;
}

/* Menu Column */
.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 20px;
}

.footer-menu-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-menu-list a:hover {
    color: #00c6ff;
}

/* Action Column */
.footer-col-action p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.btn-footer-action {
    display: inline-block;
    background-color: #2b52a1;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-footer-action:hover {
    background-color: #1e3c78;
}

/* DESTINO MAPA SECTION */

.destino-section {
    display: flex;
    background-color: white;
    margin: 50px auto 0;
    max-width: 1400px;
    overflow: hidden;
}

.destino-texto {
    flex: 1;
    background-color: #f0f3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.destino-texto h2 {
    font-size: 55px;
    color: #111;
    font-weight: 900;
    margin: 0;
}

.destino-texto h2 span {
    color: #315399;
}

.destino-mapa {
    flex: 1.5;
    position: relative;
    background-color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.destino-mapa img {
    width: 100%;
    max-width: 800px;
    object-fit: contain;
}

.map-marker {
    position: absolute;
    background-color: #2b4c8c;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.map-marker i {
    color: #fbd633;
    font-size: 16px;
}

/* Approximate marker positions (can be tuned) */
.marker-sonsonated { top: 40%; left: 30%; }
.marker-sansalvador { top: 35%; left: 45%; }
.marker-cabanas { top: 35%; left: 60%; }
.marker-lalibertad { top: 65%; left: 40%; }
.marker-lapaz { top: 75%; left: 55%; }
.marker-sanvicente { top: 50%; left: 58%; }
.marker-usulutan { top: 75%; left: 70%; }

/* Responsive Footer and Map */
@media(max-width: 1024px) {
    .destino-section {
        flex-direction: column;
    }
    
    .destino-texto {
        padding: 40px 20px;
    }
    
    .destino-texto h2 {
        font-size: 40px;
        text-align: center;
    }
}

@media(max-width: 768px) {
    .descubre-section {
        grid-template-columns: 1fr;
    }
    .descubre-col-texto h2 {
        font-size: 35px;
    }
    .descubre-listas {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-col-logo {
        align-items: flex-start;
        text-align: left;
    }
    
    .destino-texto h2 {
        font-size: 32px;
    }
    
    .map-marker {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .map-marker i {
        font-size: 12px;
    }

    .requisitos-section {
        grid-template-columns: 1fr;
    }
    .req-right {
        height: 300px;
    }
}