/* ===============================
   RESET BÁSICO
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f6fa;
    color: #333;
    line-height: 1.6;
}

/* ===============================
   HEADER
================================ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1fb6c1, #151aa8);
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem;
}

.logo-1 {
    width: 55px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* ===============================
   HERO
================================ */
.hero {
    position: relative;
    height: 90vh;
    background: url("img/Gemini_Generated_Image_m70shvm70shvm70s.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(16, 163, 208, 0.881),
        rgba(255, 255, 255, 0.742)
    );
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    background: #0a31cdcf;
    color: #ffffff;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* ===============================
   VEHÍCULOS
================================ */
.vehiculos-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.vehiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vehiculo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.vehiculo-card:hover {
    transform: translateY(-8px);
}

.vehiculo-imagen {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehiculo-info {
    padding: 1.5rem;
}

.vehiculo-titulo {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.vehiculo-descripcion {
    color: #666;
    margin-bottom: 1rem;
}

.vehiculo-precio {
    font-size: 1.6rem;
    font-weight: bold;
    color: #151aa8;
    margin-bottom: 1rem;
}

.btn-consultar {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(135deg, #1fb6c1, #151aa8);
    color: #fff;
}

/* ===============================
   DESTINOS TURÍSTICOS
================================ */
.destinos-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 2rem;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.destino-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}

.destino-card img {
    height: 170px;
    object-fit: cover;
}

.destino-card h3 {
    margin: 1rem;
}

.destino-card p {
    margin: 0 1rem 1rem;
    color: #666;
}

.destino-card button {
    margin: 0 1rem 0.5rem;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    background: linear-gradient(135deg, #1fb6c1, #151aa8);
    color: #fff;
}

.destino-card a {
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    font-weight: bold;
    color: #103193;
}

/* ===============================
   RESERVA
================================ */
.reserva-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.reserva-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.reserva-form input,
.reserva-form select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.reserva-form button {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    background: linear-gradient(135deg, #1fb6c1, #151aa8);
    color: #fff;
}

/* ===============================
   MAPA
================================ */
#mapa {
    margin-top: 70px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===============================
   FOOTER
================================ */
footer {
    margin-top: 80px;
    padding: 2rem;
    text-align: center;
    background: #0062ff;
    color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }
}



/* ===============================
   BOTÓN WHATSAPP FLOTANTE
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* ===============================
   WHATSAPP RESPONSIVE
================================ */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}
