/* ========================================
   FIXES PARA SECCIÓN NOSOTROS
   ======================================== */

/* Fix 1: Badge no debe solaparse */
.about-badge {
    position: absolute;
    bottom: 20px !important;
    right: 20px !important;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Fix 2: Título dorado más visible */
.text-gold {
    color: #D4AF37 !important;
    font-weight: 600;
    font-size: 1.25rem;
}

h4.text-gold {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* Fix 3: Features list con iconos más grandes y brillantes */
.features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 1.5rem !important;
    padding-left: 0;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    text-align: justify;  /* Texto justificado */
}

.features-list li i {
    font-size: 1.5rem !important;
    margin-right: 1rem !important;
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: #FFD700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.features-list li strong {
    color: #D4AF37;
    font-weight: 600;
}

/* Fix 4: Wrapper de imagen para evitar solapamiento */
.about-image-wrapper {
    position: relative;
    padding-bottom: 50px;
}

/* Fix 5: Texto en cursiva más visible */
.fst-italic {
    font-style: italic;
    color: #e0e0e0 !important;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;  /* Texto justificado */
}

/* Fix 6: Responsive - en mobile el badge no debe sobresalir */
@media (max-width: 991px) {
    .about-badge {
        bottom: -20px !important;
        right: 50% !important;
        transform: translateX(50%);
        min-width: 140px;
    }
    
    .about-image-wrapper {
        padding-bottom: 80px;
        margin-bottom: 2rem;
    }
    
    .features-list li i {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .about-badge {
        padding: 1.5rem;
        min-width: 120px;
    }
    
    .badge-number {
        font-size: 2.5rem !important;
    }
    
    h4.text-gold {
        font-size: 1.25rem;
    }
}

/* ========================================
   MEJORAS VISUALES ADICIONALES
   ======================================== */

/* Todos los párrafos en sección nosotros justificados */
/* EXCEPTO los de la sección owners (carousel) */
#nosotros p:not(.owner-position):not(.owner-description) {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

/* Subtítulo con mejor contraste */
.section-subtitle {
    color: #D4AF37;
    opacity: 0.9;
}

/* Texto light con mejor legibilidad */
.text-light-custom {
    color: #e0e0e0;
    line-height: 1.8;
    text-align: justify;
}

/* Strong tags más destacados */
strong {
    color: #fff;
    font-weight: 600;
}

/* Mejorar espaciado entre párrafos */
#nosotros p + p {
    margin-top: 1rem;
}

/* Header del título principal */
h2.section-title {
    margin-bottom: 0.5rem;
}
