/* ================================
   ESTILOS GENERALES
================================ */
body {
    background: linear-gradient(180deg, #030b17, #081c34 40%, #0b2340);
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Títulos */
.text-rosa {
    color: #cc89ff;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================================
   GLASSMORPHISM
================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease;
}

.glass-card:hover {
    transform: scale(1.03);
}

.glass-modal {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ================================
   HERO (BANNER)
================================ */
.c-hero picture img {
    width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
}

/* ================================
   PROMOCIONES - CARDS UNIFORMES
================================ */

/* Contenedor donde va la imagen */
.promo-img-wrapper {
    width: 100%;
    height: 330px; /* ALTURA FIJA UNIFORME */
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen */
.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta todo uniforme */
    border-radius: 16px;
}

/* Título debajo de cada card */
.promo-card h5 {
    font-size: 1rem;
    color: #e3d7ff;
}

/* ================================
   GALERÍA
================================ */
.gallery-carousel-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-item {
    min-width: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ================================
   MAPA
================================ */
.map-container {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
    z-index: 999;
}

.whatsapp-icon {
    margin-top: 11px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .promo-img-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .promo-img-wrapper {
        height: 240px;
    }
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .promo-img-wrapper {
        height: 220px;
    }
    .gallery-img {
        height: 180px;
    }
    .glass-card {
        padding: 8px;
    }
}
