/* ==========================================================================
   ======================== HERO PIERCING STUDIO ============================
   ========================================================================== */

.piercing-studio-hero {
    min-height: 85vh; 
    background-color: #5E3623; /* Tono marrón oscuro premium */
    color: #ffffff;
}

.piercing-studio-hero .row {
    min-height: inherit;
}

/* --- Contenedor del Texto --- */
.hero-content-wrapper {
    max-width: 500px;
    width: 100%;
}

.hero-title {
    font-weight: 300;
    font-size: 3.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

/* --- Listas de Horarios --- */
.date-title {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.schedule-list {
    font-size: 0.85rem;
    font-weight: 300;
    list-style-type: disc;
    padding-left: 1.5rem;
    opacity: 0.9;
}

.schedule-list li {
    margin-bottom: 0.2rem;
}

/* --- Texto Legal --- */
.legal-text small {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.8;
}

/* --- Botón Sólido --- */
.hero-btn {
    background-color: #1c1c1c;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: #1c1c1c;
}

/* --- Ajuste de Imágenes --- */
.hero-img-side {
    position: relative;
}

.object-fit-cover {
    object-fit: cover;
}

/* ==========================================================
   ============== RESPONSIVE (MÓVILES) ======================
   ========================================================== */
@media (max-width: 991px) {
    .piercing-studio-hero {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    /* En celulares la imagen mantiene una altura fija ideal para no saturar */
    .hero-img-side {
        height: 450px;
    }
}