/* Sección Quiénes Somos */
body{
    background: #f9f9f9;
}
.about-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    
}

/* Título principal centrado dorado */
.about-title {
    text-align: center;
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 60px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Contenedor en dos columnas */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Columna izquierda */
.about-left {
    padding-right: 30px;
}

/* Columna derecha */
.about-right {
    padding-left: 30px;
}

.about-subtitle {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
}

/* Frase final centrada */
.about-footer {
    text-align: center;
    font-size: 22px;
    color: #000;
    font-style: italic;
    margin: 60px 0 50px 0;
    font-weight: 500;
}

/* Contenedor de logo y fundador */
.about-founder-section {
    text-align: center;
    margin-top: 50px;
}

/* Logo grande */
.founder-logo-large {
    width: 270px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}

/* Fundador con líneas atravesando el nombre */
.about-founder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.founder-line {
    flex: 1;
    height: 2px;
    background: #D4AF37;
    max-width: 450px;
}

.founder-info {
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.founder-name {
    font-size: 26px;
    color: #000;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.founder-title {
    font-size: 18px;
    color: #D4AF37;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-logo-large {
        width: 150px;
        margin-bottom: 25px;
    }
    .about-content{
        display: block;
    }
    
    .founder-line {
        max-width: 80px;
    }
    
    .founder-name {
        font-size: 22px;
    }
    
    .founder-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .founder-logo-large {
        width: 120px;
    }
    
    .founder-line {
        max-width: 50px;
    }
    
    .about-founder {
        gap: 20px;
    }
}