/* ==========================================
   ABOUT - Sección Quiénes Somos
   ========================================== */

.about {
    padding: 0;
    background: var(--blanco);
}

/* ===== ABOUT HERO SIMPLE ===== */
.about-hero-simple {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gris-ultra-claro);
}

.about-hero-simple__image {
    position: absolute;
    inset: 0;
}

.about-hero-simple__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-simple__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
}

.about-hero-simple__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-simple__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--gris-medio);
}

.about-hero-simple__breadcrumb a {
    color: var(--gris-oscuro);
    text-decoration: none;
    transition: color 0.3s;
}

.about-hero-simple__breadcrumb a:hover {
    color: var(--azul-oscuro);
}

.about-hero-simple__breadcrumb span {
    color: var(--gris-medio);
}

.about-hero-simple__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gris-oscuro);
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* ===== ABOUT COMPANY SIMPLE ===== */
.about-company-simple {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
}

.about-company-simple__images {
    position: relative;
    height: 520px;
}

.about-company-simple__img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-company-simple__img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.about-company-simple__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Imagen de atrás - arriba izquierda */
.about-company-simple__img--back {
    width: 320px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Imagen de frente - abajo derecha */
.about-company-simple__img--front {
    width: 320px;
    height: 380px;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 10px solid var(--blanco);
}

.about-company-simple__text {
    padding-left: 1rem;
}

.about-company-simple__tag {
    display: inline-block;
    color: var(--azul-medio);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-company-simple__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-company-simple__highlight {
    color: var(--azul-oscuro);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-company-simple__desc {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-company-simple__founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.about-company-simple__founder-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--azul-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 74, 152, 0.15);
}

.about-company-simple__founder-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-company-simple__founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.about-company-simple__founder-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--azul-oscuro);
    font-style: italic;
    line-height: 1;
}

.about-company-simple__founder-role {
    color: var(--azul-medio);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .about-company-simple {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-company-simple__images {
        height: 450px;
    }
    
    .about-company-simple__img--back {
        width: 260px;
        height: 310px;
    }
    
    .about-company-simple__img--front {
        width: 260px;
        height: 310px;
    }
    
    .about-company-simple__text {
        padding-left: 0;
    }
    
    .about-company-simple__title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-simple {
        height: 220px;
    }
    
    .about-hero-simple__title {
        font-size: 2.2rem;
    }
    
    .about-company-simple__images {
        height: 350px;
    }
    
    .about-company-simple__img--back {
        width: 200px;
        height: 240px;
    }
    
    .about-company-simple__img--front {
        width: 200px;
        height: 240px;
        border-width: 6px;
    }
    
    .about-company-simple__title {
        font-size: 1.85rem;
    }
}

/* ===== ABOUT INTRO ===== */
.about__intro {
    max-width: 900px;
    margin: 0 auto var(--gap-3xl);
    text-align: center;
    padding: 0 var(--gap-lg);
}

.about__intro p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--gris-medio);
}

/* ===== ABOUT COMPANY - Layout de 2 columnas ===== */
.about-company {
    display: flex;
    align-items: center;
    gap: var(--gap-3xl);
    margin-bottom: var(--gap-3xl);
    padding: var(--gap-2xl) 0;
}

.about-company__images {
    flex: 0 0 50%;
    position: relative;
    min-height: 500px;
}

.about-company__img {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--gris-claro);
    transition: transform 0.3s ease;
}

.about-company__img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.about-company__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imagen superior izquierda - pequeña */
.about-company__img--1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 100px;
    z-index: 2;
    border-color: var(--gris-claro);
}

/* Imagen central derecha - la más grande */
.about-company__img--2 {
    width: 340px;
    height: 340px;
    top: 70px;
    left: 160px;
    z-index: 3;
    border-color: var(--azul-medio);
    border-width: 6px;
}

/* Imagen inferior izquierda - mediana */
.about-company__img--3 {
    width: 210px;
    height: 210px;
    top: 270px;
    left: 0;
    z-index: 2;
    border-color: var(--gris-claro);
}

/* Imagen inferior derecha - pequeña */
.about-company__img--4 {
    width: 170px;
    height: 170px;
    top: 320px;
    left: 340px;
    z-index: 4;
    border-color: var(--azul-oscuro);
}

.about-company__text {
    flex: 1;
}

.about-company__tag {
    display: inline-block;
    color: var(--azul-oscuro);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--gap-md);
}

.about-company__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    line-height: 1.2;
    margin-bottom: var(--gap-lg);
}

.about-company__highlight {
    color: var(--azul-medio);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--gap-md);
}

.about-company__desc {
    color: var(--gris-medio);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--gap-xl);
}

.about-company__founder {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    padding-top: var(--gap-lg);
    border-top: 1px solid var(--gris-claro);
}

.about-company__founder-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--azul-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 3px solid var(--azul-medio);
}

.about-company__founder-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-company__founder-info {
    display: flex;
    flex-direction: column;
}

.about-company__founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    font-style: italic;
}

.about-company__founder-role {
    color: var(--azul-medio);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive About Company */
@media screen and (max-width: 1024px) {
    .about-company {
        flex-direction: column;
        gap: var(--gap-xl);
    }
    
    .about-company__images {
        flex: none;
        width: 100%;
        min-height: 350px;
    }
    
    .about-company__img--1 {
        width: 150px;
        height: 150px;
        top: 0;
        left: 15%;
    }
    
    .about-company__img--2 {
        width: 200px;
        height: 200px;
        top: 80px;
        right: 15%;
    }
    
    .about-company__img--3 {
        width: 130px;
        height: 130px;
        bottom: 0;
        left: 10%;
    }
    
    .about-company__img--4 {
        width: 110px;
        height: 110px;
        bottom: 30px;
        right: 25%;
    }
    
    .about-company__text {
        text-align: center;
    }
    
    .about-company__title {
        font-size: 2.2rem;
    }
    
    .about-company__founder {
        justify-content: center;
    }
}

/* ===== ABOUT GRID ===== */
.about__content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap-lg) var(--gap-3xl);
}

.about__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
    gap: var(--gap-xl);
    margin-bottom: var(--gap-3xl);
}

.about__image-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(11, 47, 94, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about__image-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(11, 47, 94, 0.25);
}

.about__image-card--tall {
    grid-row: span 2;
}

.about__image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.about__image-card:hover img {
    transform: scale(1.1);
}

/* ===== ABOUT PILLARS ===== */
.about__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-2xl);
    margin-top: var(--gap-3xl);
}

.pillar-card {
    background: var(--blanco);
    padding: var(--gap-2xl);
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(11, 47, 94, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--azul-oscuro) 0%, var(--azul-medio) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 70px rgba(11, 47, 94, 0.25),
        0 0 0 3px var(--azul-medio);
    border-color: rgba(0, 102, 204, 0.3);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--gap-lg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul-medio) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.5s;
}

.pillar-card:hover .pillar-card__icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--azul-oscuro) 100%);
}

.pillar-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    margin-bottom: var(--gap-md);
}

.pillar-card p {
    font-size: 1rem;
    color: var(--gris-medio);
    line-height: 1.7;
}

/* Text highlight azul */
.text-highlight {
    color: var(--azul-medio);
}

/* Pillar cards en fondo azul */
.pillar-card h3 {
    color: var(--blanco);
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   MODERN PILLARS SECTION - Editorial Style
   ========================================== */

.pillars-section {
    background: var(--blanco);
    padding: 5rem 0 6rem;
}

.pillars-section__header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4.5rem;
    padding: 0 var(--gap-lg);
}

.pillars-section__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.pillars-section__subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
    font-weight: 400;
}

.pillars-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--gap-lg);
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.pillar-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
}

.pillar-item::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 90px;
    bottom: -4.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.2) 0%, transparent 100%);
}

.pillar-item:last-child::after {
    display: none;
}

.pillar-item__number {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--azul-medio);
    opacity: 0.12;
    line-height: 1;
    text-align: center;
    position: sticky;
    top: 100px;
}

.pillar-item__content {
    padding-top: 0;
    max-width: 750px;
}

.pillar-item__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(22%) sepia(92%) saturate(1517%) hue-rotate(196deg) brightness(94%) contrast(101%);
    opacity: 0.85;
}

.pillar-item__icon i {
    font-size: 2.5rem;
    color: #004A98;
    opacity: 0.85;
}

.pillar-item__title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.pillar-item__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #475569;
    font-weight: 400;
    max-width: 680px;
}

/* Responsive Pillars */
@media screen and (max-width: 1024px) {
    .pillars-list {
        max-width: 800px;
    }
    
    .pillar-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .pillar-item::after {
        left: 40px;
        top: 80px;
    }
    
    .pillar-item__number {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .pillars-section {
        padding: 4rem 0;
    }
    
    .pillars-section__header {
        margin-bottom: 3.5rem;
    }
    
    .pillars-section__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .pillars-section__subtitle {
        font-size: 1rem;
    }
    
    .pillars-list {
        gap: 3.5rem;
    }
    
    .pillar-item {
        grid-template-columns: 70px 1fr;
        gap: 1.5rem;
    }
    
    .pillar-item::after {
        left: 35px;
        top: 70px;
        bottom: -3.5rem;
    }
    
    .pillar-item__number {
        font-size: 3rem;
        position: relative;
        top: 0;
    }
    
    .pillar-item__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.25rem;
    }
    
    .pillar-item__icon i {
        font-size: 2.2rem;
    }
    
    .pillar-item__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .pillar-item__text {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* ==========================================
   TRUST INDICATORS - Corporate Credibility
   ========================================== */

.trust-indicators {
    background: linear-gradient(180deg, #FAFBFC 0%, var(--blanco) 100%);
    padding: 4.5rem 0;
    border-top: 1px solid #E2E8F0;
}

.trust-indicators__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    background: var(--blanco);
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    border-color: var(--azul-medio);
    box-shadow: 0 4px 16px rgba(0, 74, 152, 0.08);
    transform: translateY(-2px);
}

.trust-stat__icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, #EBF4FF 0%, #D6E9FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-stat__icon i {
    font-size: 1.5rem;
    color: var(--azul-oscuro);
}

.trust-stat__content {
    flex: 1;
}

.trust-stat__number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.trust-stat__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.4;
}

/* Responsive Trust Indicators */
@media screen and (max-width: 1024px) {
    .trust-indicators__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    .trust-indicators {
        padding: 3.5rem 0;
    }
    
    .trust-indicators__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-stat {
        padding: 1.5rem 1.25rem;
    }
    
    .trust-stat__icon {
        width: 48px;
        height: 48px;
    }
    
    .trust-stat__icon i {
        font-size: 1.25rem;
    }
    
    .trust-stat__number {
        font-size: 1.75rem;
    }
}

/* ===== RESPONSIVE HERO ===== */
@media screen and (max-width: 768px) {
    .about-hero {
        height: 350px;
    }
    
    .about-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 74, 152, 0.9) 0%,
            rgba(0, 74, 152, 0.7) 100%
        );
    }
    
    .about-hero__content {
        padding: 0 var(--gap-lg);
        text-align: center;
        max-width: 100%;
    }
    
    .about-hero__breadcrumb {
        margin-bottom: var(--gap-md);
    }
    
    .about-hero__title {
        font-size: 2.5rem;
    }
}
