/* ===============================================
   SECTION TITLES - ESTILOS
   =============================================== */

.section-title-simple {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.section-title-simple h2 {
    color: #6C1739;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-title-simple h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #6C1739, #8a1f4a);
    border-radius: 2px;
}
