@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

/* Colores Globales */
.bg-maroon {
    background-color: #8A1538;
}
.text-maroon {
    color: #8A1538;
}
.bg-gold {
    background-color: #C6A669;
}
.text-gold {
    color: #C6A669;
}

/* Panel Izquierdo Superior (Sidebar) */
.sidebar-maroon {
    background: linear-gradient(135deg, #8A1538 0%, #680f29 100%);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 4rem 2.5rem;
    min-height: 100%;
    color: white;
    box-shadow: 10px 0px 25px rgba(138, 21, 56, 0.2);
    position: relative;
    overflow: hidden;
}

/* Efecto decorativo en el sidebar */
.sidebar-maroon::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.costo-unico-card {
    background-color: white;
    color: #8A1538;
    border-radius: 25px;
    padding: 15px 30px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #C6A669;
    margin: 2.5rem 0;
    position: relative;
}

.costo-unico-card h5 {
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.costo-unico-card h2 {
    font-size: 4.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.costo-unico-card h2 small {
    font-size: 1.8rem;
}

.pill-desayuno, .pill-comida {
    border-radius: 30px;
    font-weight: 800;
    padding: 8px 20px;
    display: inline-block;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-desayuno {
    background-color: #C6A669;
    color: white;
}

.pill-comida {
    background-color: white;
    color: #8A1538;
}

/* Contenedor del Mapa */
.map-container {
    border: 6px solid #C6A669;
    border-radius: 30px;
    background-color: #FDFBF9;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Tarjetas de Locaciones (Diseño Vertical Elegante) */
.loc-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 35px; /* Espacio para el icono superior */
    height: 100%;
    margin-bottom: 15px;
}

.icon-box {
    width: 70px; 
    height: 70px; 
    background: linear-gradient(135deg, #8A1538 0%, #680f29 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0px 8px 15px rgba(138, 21, 56, 0.25);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #FFFFFF;
}

.icon-box img {
    width: 35px;
}

.info-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px 20px 25px 20px; /* Padding superior amplio */
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(138, 21, 56, 0.1);
}

.loc-title {
    color: #8A1538;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.loc-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 991px) {
    .sidebar-maroon {
        border-radius: 0 0 40px 40px;
        padding: 3rem 1.5rem;
    }
}
