/* ESTILOS HOME PREMIUM - MVC PURE CSS */
.home-hero-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e0e7ff 100%);
}

/* Métricas (datos reales) */
.home-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.1rem 1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.08);
    border: 1px solid rgba(26, 82, 118, 0.06);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 82, 118, 0.12);
}
.home-stat-value {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1a5276;
    line-height: 1.1;
}
.home-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-top: 0.35rem;
}
.home-stat-hint {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

/* Carrusel Modernizado */
.carousel-premium {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.carousel-premium:hover {
    transform: scale(1.01);
}
.carousel-item img {
    height: 450px;
    object-fit: cover;
}

/* Panel de Testimonios */
.reviews-panel {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar Personalizado */
.reviews-panel::-webkit-scrollbar {
    width: 6px;
}
.reviews-panel::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}
.reviews-panel::-webkit-scrollbar-thumb {
    background: #1a5276;
    border-radius: 10px;
}

.review-card-modern {
    border: none;
    border-radius: 18px;
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}
.review-card-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(26,82,118,0.1);
}
.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(26,82,118,0.1);
}
.review-title {
    color: #1a5276;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.review-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.review-card-empty {
    text-align: left;
}
.review-card-empty .review-text {
    font-style: normal;
}
.review-text {
    color: #64748b;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sección de Ubicación */
.location-section {
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin: 40px 0;
}
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 5px solid white;
}
.location-title {
    color: #1a5276;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.location-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--brand-primary, #1a5276);
    border-radius: 2px;
}

/* ---- RESPONSIVIDAD ---- */
@media (max-width: 991px) {
    .home-hero-section {
        padding: 20px 0 30px;
    }
    .carousel-item img {
        height: 280px;
    }
    .reviews-panel {
        max-height: 320px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 220px;
    }
    .location-section {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .map-wrapper {
        border-radius: 12px;
    }
    .reviews-panel {
        max-height: 260px;
    }
}

/* Utilidades Finales */
.text-brand-home { color: #1a5276 !important; }
.map-max-width { max-width: 900px; }
