/* Sobre Nosotros Styles */

.sobre-nosotros-container {
    background: #02081C;
    min-height: 3000px; /* Altura suficiente para todas las secciones con valores completos */
    color: #ffffff;
    position: relative;
    padding-bottom: 50px;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    left: 32px; /* Desktop: 32px mínimo */
    top: 96px;
    display: flex;
    align-items: center;
    font-size: 16px;
    z-index: 10;
}

.breadcrumb-item {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.breadcrumb-item:hover {
    opacity: 0.8;
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-separator {
    color: #ffffff;
    margin: 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.breadcrumb-current {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    position: absolute;
    display: flex;
    flex-direction: column;
}

/* Historia Section - Izquierda */
.historia-section {
    top: 232px;
    left: 32px;
    width: 1248px;
    z-index: 4;
}

/* Misión Section - Derecha */
.mision-section {
    top: 624px;
    left: 50%;
    transform: translateX(-12.5%);
    width: 847px;
    z-index: 4;
}

/* Visión Section - Izquierda */
.vision-section {
    top: 926px;
    left: 32px;
    width: 1248px;
    z-index: 4;
}

/* Valores Section - Derecha */
.valores-section {
    top: 1222px;
    right: 32px;
    width: 777px;
    min-height: 600px;
    z-index: 5;
}

/* Background Text */
.section-background-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 121.95px;
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.section-background-text.right-aligned {
    text-align: right;
}

/* Section Content */
.section-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
}

.section-content.left-aligned {
    padding-left: 119px;
    justify-content: flex-start;
}

.section-content.right-aligned {
    justify-content: flex-end;
    padding-right: 134px;
}

.section-content.right-aligned .section-text {
    text-align: right;
}

.mision-section .section-content.right-aligned {
    padding-right: 212px;
}

/* Ajustes específicos de espaciado para evitar superposición */
.vision-section .section-content {
    margin-top: 40px;
}

/* Section Text */
.section-text {
    width: 589px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.5;
}

.mision-section .section-text {
    width: 635px;
}

.valores-section .section-text {
    width: 100%;
    max-width: 643px;
}

.section-text p {
    margin: 0 0 20px 0;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* Valores Specific Styles */
.valores-text {
    text-align: left !important;
}

.valores-section .section-content {
    margin-top: 70px;
}

.valores-section .section-content.right-aligned {
    padding-right: 134px;
}

.valores-list {
    list-style: disc;
    margin: 0;
    padding-left: calc(1.5 * 1em);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.5;
    text-align: left;
}

.valores-list li {
    margin-bottom: 20px;
}

.valores-list li:last-child {
    margin-bottom: 0;
}

.valores-list strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

/* Status Messages */
.status-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
}

.status-message.success {
    background: #22C55E;
    color: white;
}

.status-message.error {
    background: #EF4444;
    color: white;
}

/* Responsive Design */
@media (max-width: 1320px) {
    .content-section {
        width: 90%;
        max-width: 1248px;
        left: 5%;
    }
    
    .mision-section {
        left: 20%;
        width: 75%;
    }
    
    .valores-section {
        left: 25%;
        width: 70%;
    }
}

@media (max-width: 1280px) {
    .breadcrumb {
        left: 28px;
    }
}

@media (max-width: 1024px) {
    .breadcrumb {
        left: 24px;
    }
    
    .section-background-text {
        font-size: 80px;
    }
    
    .section-text {
        width: 100%;
        font-size: 18px;
    }
    
    .mision-section .section-text {
        width: 100%;
    }
    
    .section-content.left-aligned {
        padding-left: 48px;
    }
    
    .section-content.right-aligned .section-text {
        padding-right: 48px;
    }
    
    .mision-section .section-content.right-aligned .section-text {
        padding-right: 48px;
    }
}

@media (max-width: 768px) {
    .sobre-nosotros-container {
        padding: 20px;
    }
    
    .breadcrumb {
        position: static;
        margin-bottom: 40px;
    }
    
    .content-section {
        position: static;
        width: 100%;
        left: 0;
        margin-bottom: 80px;
    }
    
    .historia-section,
    .mision-section,
    .vision-section,
    .valores-section {
        position: static;
        left: 0;
        width: 100%;
    }
    
    .section-background-text {
        font-size: 60px;
        text-align: center;
    }
    
    .section-content {
        margin-top: -20px;
    }
    
    .section-content.left-aligned,
    .section-content.right-aligned .section-text {
        padding: 0;
        text-align: left;
    }
    
    .section-text {
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-background-text {
        font-size: 40px;
    }
    
    .section-text {
        font-size: 14px;
    }
    
    .valor-item h3,
    .valor-item p {
        font-size: 16px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .breadcrumb {
        left: 12px;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}