/* =========================================
   SOBRE NOSOTROS - ESTILO GLASS
   ========================================= */

.about-wrapper {
    /* Fondo unificado con Contacto y Servicios */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/assets/img/contacto.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 80px 0;
    color: #fff;
}

/* --- HERO SECTION --- */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(41, 197, 246, 0.6);
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* --- SECCIÓN DE HISTORIA (Dos columnas) --- */
.history-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.history-text h2 {
    color: var(--c-yellow);
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--c-cyan);
    padding-left: 15px;
}

.history-text p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Marco de foto con efecto Glass */
.history-img-box {
    position: relative;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.history-img-box img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* --- TARJETAS DE MISIÓN / VISIÓN (Glass Cards) --- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--c-cyan);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--c-cyan);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.glass-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* --- VALORES (Lista horizontal) --- */
.values-section {
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.value-pill {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--c-magenta);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.value-pill:hover {
    background: var(--c-magenta);
    box-shadow: 0 0 20px rgba(240, 56, 107, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .history-section {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
}