/* nosotros.css - ESTILO EDITORIAL PREMIUM */

/* 1. ESTRUCTURA BASE (Footer Sticky) */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.about-container {
    flex: 1;
    max-width: 900px; /* Un poco más estrecho para que se vea elegante */
    margin: 0 auto;
    padding: 140px 20px 80px;
    width: 100%;
}

/* 2. HERO IMPACTANTE */
.about-hero {
    margin-bottom: 100px;
    border-left: 4px solid var(--accent-color); /* Línea lateral de acento */
    padding-left: 30px;
}

.about-hero h1 {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px; /* Letras juntas estilo moderno */
}

.about-hero p {
    color: var(--text-secondary);
    font-size: 1.4rem;
    max-width: 600px;
    font-weight: 300; /* Letra fina y elegante */
}

/* 3. GRID DE PRINCIPIOS (Adiós Cajitas) */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px; /* Mucho aire entre elementos */
    margin-bottom: 100px;
}

.principle-item {
    /* Sin borde, sin fondo. Diseño limpio */
    text-align: left;
    position: relative;
}

/* El Número grande (01, 02...) */
.p-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--card-border); /* Color muy sutil, casi invisible */
    line-height: 1;
    margin-bottom: -20px; /* Superposición sutil */
    opacity: 0.5;
    z-index: 0;
}

.principle-item h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.principle-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* 4. CIERRE */
.about-footer-text {
    text-align: center;
    border-top: 1px solid var(--card-border);
    padding-top: 40px;
}

.about-footer-text p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.link-underline {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.link-underline:hover {
    color: var(--text-main);
    border-bottom-color: var(--text-main);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; }
    .about-hero { padding-left: 20px; margin-bottom: 60px; }
    .principles-grid { gap: 40px; }
}