/* =========================
   NOSOTROS.CSS
   Estilos EXCLUSIVOS de la página "Nosotros" (nosotros.html)
   Requiere que common.css esté cargado antes que este archivo.
========================= */

.about {
    width: 100%;
    margin-top: 90px;
    background: #080808;
}

.about-eyebrow {
    display: block;
    margin-bottom: 12px;

    font-family: Montserrat, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.4px;
    color: #c9ad76;
}

/* HERO — imagen con texto superpuesto */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 420px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.55) 42%, rgba(8,8,8,0.1) 75%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 8%;
    max-width: 560px;
}
.about-hero-content h2 {
    margin: 0 0 18px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.15;
    color: #eee5d2;
}

.about-hero-content p {
    margin: 0;

    font-family: Montserrat, sans-serif;
    font-size: 12px;
    line-height: 1.75;
    color: #cfc9bd;
}
/* FILAS TEXTO + IMAGEN */

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 420px;
    border-bottom: 1px solid #292929;
}

.about-row-reverse .about-text {
    order: 2;
}

.about-row-reverse .about-image {
    order: 1;
}

.about-text {
    padding: 60px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    margin: 0 0 18px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.15;
    color: #eee5d2;
}

.about-text p {
    margin: 0 0 14px;
    max-width: 440px;

    font-family: Montserrat, sans-serif;
    font-size: 12px;
    line-height: 1.75;
    color: #aaa398;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* FILOSOFÍA */

.philosophy {
    padding: 60px 8%;
    border-bottom: 1px solid #292929;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.philosophy-header h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #eee5d2;
}

.philosophy-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    padding-top: 6px;
}

.philosophy-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c9ad76;
    border-radius: 50%;
}

.philosophy-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #c9ad76;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.philosophy-item h3 {
    margin: 0 0 8px;

    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    color: #eee5d2;
}

.philosophy-item p {
    margin: 0;
    max-width: 260px;

    font-family: Montserrat, sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: #aaa398;
}

/* BANNER FINAL */

.about-banner {
    position: relative;
    width: 100%;
    min-height: 340px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.55) 45%, rgba(8,8,8,0.15) 100%);
}

.about-banner-content {
    position: relative;
    z-index: 1;
    padding: 0 8%;
    max-width: 560px;
}

.about-quote {
    margin: 0 0 20px;

    font-family: Georgia, serif;
    font-style: italic;
    font-size: 30px;
    line-height: 1.3;
    color: #eee5d2;
}

.quote-mark {
    color: #c9ad76;
    margin-right: 4px;
}

.about-banner-label {
    display: block;
    margin-bottom: 22px;

    font-family: Montserrat, sans-serif;
    font-size: 9px;
    letter-spacing: 1.2px;
    color: #aaa398;
}

.about-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

        border: 2px solid #c9ad76;
    border-radius: 2px;

    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #eee5d2;
    text-decoration: none;

    transition: background 0.2s ease, color 0.2s ease;
}

.about-banner-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.about-banner-btn:hover {
    background: #c9ad76;
    color: #1a1a1a;
}


/* Línea separadora bajo el hero, igual que las demás filas */
.about-hero {
    border-bottom: 1px solid #292929;
}

/* Vignette suave en las imágenes de las filas, hacia el lado del texto */
.about-image {
    position: relative;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.about-row .about-image::after {
    background: linear-gradient(to left, rgba(8, 8, 8, 0) 55%, rgba(8, 8, 8, 0.8) 100%);
}


/* =========================
   RESPONSIVE — móvil
========================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: 250px;
        border-bottom: none;
        background-position: 71% center;
    }

    /* Imagen y texto quedan lado a lado (2 columnas) también en móvil,
       igual que en el diseño de referencia */
    /* Sección "Una pasión que se convirtió en un proyecto" oculta en móvil */
    .about-row {
        display: none;
    }

    .philosophy {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Se mantienen las 3 columnas compactas, como en el diseño original */
    .philosophy-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .philosophy-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
    }

    .philosophy-icon svg {
        width: 14px;
        height: 14px;
    }

    .philosophy-item h3 {
        font-size: 13px;
    }

    .philosophy-item p {
        font-size: 9.5px;
        line-height: 1.5;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .about {
        margin-top: 72px;
    }

    /* Separación sutil entre secciones, sin franjas gruesas */
    .about-hero,
    .about-row,
    .philosophy {
        margin-bottom: 0;
        border-bottom: 1px solid #292929;
    }

    .about-hero-content {
        padding: 0 6%;
        max-width: 100%;
    }

    .about-hero-content h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .about-hero-content p {
        font-size: 12px;
        line-height: 1.7;
    }

    .about-text {
        padding: 32px 6%;
    }

    .about-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 12px;
        max-width: 100%;
    }

    .about-eyebrow {
        font-size: 9px;
        margin-bottom: 10px;
    }

    .philosophy {
        padding: 36px 6%;
    }

    .philosophy-header h2 {
        font-size: 24px;
    }

    .about-banner {
        min-height: 210px;
        background-position: 73% center;
    }

    .about-banner-label {
        font-size: 7.5px;
        margin-bottom: 10px;
    }

    .about-quote {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-banner-btn {
        padding: 8px 14px;
        font-size: 8px;
    }

    .about-banner-content {
        max-width: 100%;
        padding: 0 6%;
    }
}