@charset "utf-8";
/* CSS Document */

.about-page {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.container-1080 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO --- */
.about-hero {
    padding: 120px 0 60px 0;
    text-align: left;
}

.upper-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fd4d00;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.9rem;
}

.about-hero .main-headline {
    font-family: 'BaseR', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    margin-top: 10px;
}


body {  font-family: 'Plus Jakarta Sans', sans-serif; }



/* --- INTRO SPLIT --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.large-text {
    font-size: 1.6rem;
    color: #fd4d00;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-text-block p:not(.large-text) {
    color: #ccc;
    line-height: 1.8;
}

/* El Stack de imágenes superpuestas */
.about-image-stack {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    filter: grayscale(0.5);
    transition: 0.5s;
}

.image-wrapper:hover img { filter: grayscale(0); }

.accent-img {
    position: absolute;
    width: 70%;
    bottom: -40px;
    right: -20px;
    border: 5px solid #000;
    box-shadow: 10px 10px 0px #fd4d00;
}

/* --- FRASE IMPACTO --- */
.impact-quote {
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.impact-quote blockquote {
    font-family: 'BaserunnerJNL', sans-serif;
    font-size: 4rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.mancha-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(253,77,0,0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

/* --- DETALLES/VALORES --- */
.detail-row {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.detail-row.reversed {
    flex-direction: row-reverse;
    text-align: right;
}

.detail-number {
    font-family: 'BaserunnerJNL', sans-serif;
    font-size: 5rem;
    color: rgba(253, 77, 0, 0.3);
    line-height: 1;
}

.detail-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; }
    .about-hero .main-headline { font-size: 4rem; }
    .accent-img { position: relative; width: 100%; right: 0; bottom: 0; margin-top: 20px; }
    .impact-quote blockquote { font-size: 2.5rem; }
}



.tradicion-identidad {
    padding: 100px 0;
    background-color: #000;
}

.section-title-large {
    font-family: 'BaseR', sans-serif;
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 60px;
    text-align: left;
}

/* Layout de texto estilo editorial */
.text-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.column-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ccc;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.3rem !important;
    color: #fff !important;
    font-weight: 500;
}

/* REMATE DE FOTOS */
.photos-remate {
    display: flex;
    align-items: flex-end; /* Alineación desigual para dinamismo */
    gap: 30px;
}

.photo-card {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.landscape {
    flex: 2; /* Más ancha */
}

.portrait {
    flex: 1; /* Más angosta */
    height: 100%;
}

.photo-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #fd4d00;
    color: #fff;
    padding: 5px 15px;
    font-family: 'BaseR', sans-serif;
    font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .text-columns-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-title-large {
        font-size: 3rem;
    }

    .photos-remate {
        flex-direction: column;
    }
    
    .portrait {
        order: -1; /* En móvil, la foto vertical puede ir arriba para variar */
    }
}