/* Container Wrapper */
.nosotros-page-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 16px 64px 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Page Header */
.nosotros-header {
    text-align: center;
    margin-bottom: 40px;
}

.nosotros-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.nosotros-header-divider {
    width: 60px;
    height: 4px;
    background-color: #6B1226;
    margin: 0 auto;
    border-radius: 999px;
}

/* Hero Identity Card (Top Split) */
.nosotros-hero-card {
    background: #ffffff;
    border: 1px solid rgba(180, 83, 9, 0.12);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .nosotros-hero-card {
        flex-direction: row;
        align-items: center;
    }
}

.nosotros-hero-image-wrap {
    width: 100%;
    background-color: #1a0308;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
    .nosotros-hero-image-wrap {
        width: 50%;
        aspect-ratio: auto;
        min-height: 380px;
        align-self: stretch;
    }
}

.nosotros-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nosotros-hero-content {
    padding: 32px 28px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .nosotros-hero-content {
        width: 50%;
        padding: 40px 48px;
    }
}

.nosotros-hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6B1226;
    margin-bottom: 12px;
    display: block;
}

.nosotros-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.nosotros-hero-body {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.nosotros-hero-body strong {
    color: #0f172a;
}

/* Full Width Cobertura Banner */
.nosotros-banner-card {
    background-color: #F4EFE6;
    border: 1px solid rgba(180, 83, 9, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .nosotros-banner-card {
        padding: 40px 48px;
    }
}

.nosotros-banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.nosotros-banner-body {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* 2-Column Pillars Grid */
.nosotros-pillars-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .nosotros-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.nosotros-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(180, 83, 9, 0.12);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.nosotros-pillar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.nosotros-pillar-body {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Bottom CTA Banner */
.nosotros-cta-banner {
    background-color: #3B0A15;
    background-image: linear-gradient(135deg, #4A0D1B 0%, #3B0A15 100%);
    border-radius: 28px;
    padding: 48px 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(59, 10, 21, 0.2);
}

.nosotros-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #F3E5AB;
    margin: 0 0 12px 0;
}

.nosotros-cta-body {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
}

.nosotros-cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 36px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 193, 7, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nosotros-cta-button:hover {
    background-color: #FFB300;
    transform: translateY(-2px);
}