/* ================================================
   NOSOTROS PAGE
   ================================================ */

/* ----- INTRO SPLIT ----- */
.nos-intro-section {
    padding: 110px 0;
    background: var(--white);
}

.nos-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.nos-intro-image-wrap {
    position: relative;
}

.nos-intro-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.nos-intro-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--accent-red);
    color: white;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
    padding: 0 8px;
    text-align: center;
    line-height: 1.3;
}

.nos-intro-content {
    padding-right: 20px;
}

.nos-body-text {
    color: var(--mid-text);
    font-size: 15.5px;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 22px;
}

.nos-intro-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 44px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.nos-stat {
    flex: 1;
    text-align: center;
}

.nos-stat:first-child {
    text-align: left;
}

.nos-stat:last-child {
    text-align: right;
}

.nos-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 6px;
}

.nos-stat-label {
    font-size: 12.5px;
    color: var(--light-text);
    letter-spacing: 0.3px;
    font-weight: 400;
}

.nos-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ----- MISIÓN & VISIÓN ----- */
.nos-mv-section {
    padding: 110px 0;
    background: var(--deep-charcoal);
    position: relative;
    overflow: hidden;
}

.nos-mv-section::before {
    content: '';
    position: absolute;
    left: -200px;
    bottom: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,26,26,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.nos-mv-header {
    margin-bottom: 60px;
}

.nos-mv-header .section-subtitle {
    color: var(--accent-red-light);
}
.nos-mv-header .section-subtitle::before {
    background: var(--accent-red-light);
}
.nos-mv-header .section-title {
    color: white;
}

.nos-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.nos-mv-card {
    padding: 56px 52px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nos-mv-card--mision {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--accent-red);
}

.nos-mv-card--vision {
    background: rgba(139,26,26,0.12);
    border-left: 3px solid rgba(178,34,34,0.5);
}

.nos-mv-card:hover {
    transform: translateY(-4px);
}

.nos-mv-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red-light);
    margin-bottom: 28px;
}

.nos-mv-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.nos-mv-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.25;
}

.nos-mv-text {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
}

/* ----- VALORES ----- */
.nos-valores-section {
    padding: 110px 0;
    background: var(--off-white);
}

.nos-valores-header {
    max-width: 640px;
    margin: 0 auto 72px;
    text-align: center;
}

.nos-valores-header .section-subtitle {
    justify-content: center;
}
.nos-valores-header .section-subtitle::before {
    display: none;
}

.nos-valores-intro {
    color: var(--mid-text);
    font-size: 15.5px;
    line-height: 1.8;
    font-weight: 300;
    margin-top: 16px;
}

.nos-valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.nos-valor-item {
    background: white;
    padding: 44px 38px;
    position: relative;
    transition: all 0.32s ease;
    border-bottom: 3px solid transparent;
}

.nos-valor-item:hover {
    border-bottom-color: var(--accent-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.nos-valor-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.nos-valor-item:hover .nos-valor-icon {
    background: var(--accent-red);
    color: white;
}

.nos-valor-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 14px;
}

.nos-valor-desc {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 300;
}

/* ----- POLÍTICA DE CALIDAD ----- */
.nos-calidad-section {
    padding: 110px 0;
    background: white;
}

.nos-calidad-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.nos-calidad-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.nos-pillar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--mid-text);
    font-weight: 400;
}

.nos-pillar-line {
    width: 32px;
    height: 2px;
    background: var(--accent-red);
}

.nos-quote {
    background: var(--deep-charcoal);
    padding: 56px 52px;
    position: relative;
    margin: 0;
}

.nos-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: rgba(139,26,26,0.25);
    line-height: 1;
    pointer-events: none;
}

.nos-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: white;
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.nos-quote-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nos-quote-footer strong {
    font-size: 13px;
    color: var(--accent-red-light);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nos-quote-footer span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

/* ----- EQUIPO ----- */
.nos-equipo-section {
    padding: 110px 0;
    background: var(--off-white);
}

.nos-equipo-header {
    max-width: 640px;
    margin-bottom: 72px;
}

.nos-equipo-intro {
    color: var(--mid-text);
    font-size: 15.5px;
    line-height: 1.8;
    font-weight: 300;
    margin-top: 16px;
}

.nos-team-lead {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: start;
    background: white;
    padding: 60px;
    margin-bottom: 2px;
}

.nos-team-lead-image-wrap {
    position: relative;
}

.nos-team-lead-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(15%);
}

.nos-team-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 500;
    margin-bottom: 12px;
}

.nos-team-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 6px;
    line-height: 1.2;
}

.nos-team-role {
    font-size: 14px;
    color: var(--light-text);
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.nos-team-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.nos-team-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mid-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.nos-team-contact-link svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.nos-team-contact-link:hover {
    color: var(--accent-red);
}

/* Team approach grid */
.nos-team-approach {
    background: white;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}

.nos-approach-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    line-height: 1.3;
}

.nos-approach-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.nos-approach-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nos-approach-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--border-color);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.nos-approach-item strong {
    display: block;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--deep-charcoal);
    margin-bottom: 6px;
}

.nos-approach-item p {
    font-size: 13.5px;
    color: var(--light-text);
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

/* ----- CTA BAND ----- */
.nos-cta-section {
    padding: 90px 0;
    background: var(--accent-red);
}

.nos-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.nos-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.nos-cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.nos-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.nos-cta-btn {
    display: inline-block;
    padding: 15px 34px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.nos-cta-btn--primary {
    background: white;
    color: var(--accent-red);
}

.nos-cta-btn--primary:hover {
    background: var(--deep-charcoal);
    color: white;
}

.nos-cta-btn--outline {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white;
}

.nos-cta-btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
}

/* ----- NOSOTROS RESPONSIVE ----- */
@media (max-width: 1100px) {
    .nos-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nos-intro-image-wrap {
        max-width: 600px;
    }

    .nos-intro-badge {
        right: 0;
        bottom: -20px;
    }

    .nos-intro-content {
        padding-right: 0;
    }

    .nos-mv-grid {
        grid-template-columns: 1fr;
    }

    .nos-valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nos-calidad-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .nos-team-lead {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nos-team-lead-image {
        height: 300px;
    }

    .nos-team-approach {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nos-intro-section,
    .nos-mv-section,
    .nos-valores-section,
    .nos-calidad-section,
    .nos-equipo-section {
        padding: 70px 0;
    }

    .nos-intro-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nos-stat {
        text-align: left !important;
    }

    .nos-stat-divider {
        display: none;
    }

    .nos-valores-grid {
        grid-template-columns: 1fr;
    }

    .nos-mv-card {
        padding: 40px 32px;
    }

    .nos-team-lead,
    .nos-team-approach {
        padding: 36px 28px;
    }

    .nos-approach-pillars {
        grid-template-columns: 1fr;
    }

    .nos-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nos-cta-title {
        font-size: 26px;
    }

    .nos-calidad-pillars {
        grid-template-columns: 1fr;
    }

    .nos-quote {
        padding: 40px 32px;
    }

    .nos-quote p {
        font-size: 18px;
    }
}