.nosotros-page {
    background: var(--white);
    overflow-x: hidden;
}

.nosotros-hero {
    padding: calc(var(--header-height) + 28px) clamp(18px, 5vw, 56px) 36px;
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 175, 203, .16), transparent 34%),
        linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.nosotros-hero-inner {
    width: min(100%, 920px);
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.nosotros-hero-brand {
    width: 168px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(7, 27, 58, .05);
}

.nosotros-hero h1 {
    margin: 0;
    max-width: 18ch;
    color: var(--navy);
    font-size: clamp(1.7rem, 4.6vw, 2.55rem);
    line-height: 1.12;
}

.nosotros-hero p {
    margin: 0;
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.02rem;
}

.nosotros-section {
    padding: 56px clamp(18px, 5vw, 56px);
}

.nosotros-section-inner,
.nosotros-cta-inner {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.nosotros-copy {
    max-width: 68ch;
}

.nosotros-copy h2,
.nosotros-cta h2 {
    margin: 8px 0 14px;
    color: var(--navy);
    font-size: clamp(1.55rem, 3.6vw, 2.15rem);
    line-height: 1.18;
}

.nosotros-copy p {
    margin: 0 0 14px;
    color: var(--muted);
}

.nosotros-differentials {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.nosotros-card {
    padding: 22px 22px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(7, 27, 58, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.nosotros-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 175, 203, .28);
    box-shadow: 0 16px 36px rgba(7, 27, 58, .07);
}

.nosotros-card svg {
    width: 28px;
    height: 28px;
    color: var(--cyan);
}

.nosotros-card h3 {
    margin: 14px 0 8px;
    color: var(--navy);
    font-size: 1.05rem;
}

.nosotros-card p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.nosotros-coverage {
    background: var(--soft);
}

.nosotros-coverage-layout {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.nosotros-map-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nosotros-chip {
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font-weight: 750;
}

.nosotros-chip:hover {
    border-color: rgba(0, 175, 203, .35);
}

.nosotros-chip[aria-pressed="true"] {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 175, 203, .22);
}

.nosotros-map-frame {
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(7, 27, 58, .06);
}

.nosotros-map-frame svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.mx-state {
    fill: #dbe6f0;
    stroke: #ffffff;
    stroke-width: 1.1;
    pointer-events: none;
}

.mx-state.is-coverage {
    pointer-events: auto;
    cursor: pointer;
    transition: fill .2s ease, stroke .2s ease, filter .2s ease;
}

.mx-state.is-jalisco {
    fill: #2bb7cc;
}

.mx-state.is-nayarit {
    fill: #1d4f7a;
}

.mx-state.is-coverage:hover,
.mx-state.is-coverage:focus-visible {
    filter: brightness(1.08);
}

.mx-state.is-coverage:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 2px;
}

.nosotros-map.is-jalisco .mx-state.is-jalisco,
.nosotros-map.is-nayarit .mx-state.is-nayarit {
    stroke: var(--navy);
    stroke-width: 2.2;
    filter: drop-shadow(0 8px 12px rgba(7, 27, 58, .18));
}

.nosotros-map.is-jalisco .mx-state.is-jalisco {
    fill: #00afcb;
}

.nosotros-map.is-jalisco .mx-state.is-nayarit {
    fill: #8aa9c4;
}

.nosotros-map.is-nayarit .mx-state.is-nayarit {
    fill: #0a2f66;
}

.nosotros-map.is-nayarit .mx-state.is-jalisco {
    fill: #8fd6e3;
}

.mx-leader,
.mx-marker {
    opacity: 0;
    pointer-events: none;
}

.nosotros-map.is-jalisco .mx-leader[data-state="jalisco"],
.nosotros-map.is-jalisco .mx-marker[data-state="jalisco"],
.nosotros-map.is-nayarit .mx-leader[data-state="nayarit"],
.nosotros-map.is-nayarit .mx-marker[data-state="nayarit"] {
    opacity: 1;
}

.mx-leader {
    stroke: var(--navy);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.nosotros-map.is-jalisco .mx-leader[data-state="jalisco"],
.nosotros-map.is-nayarit .mx-leader[data-state="nayarit"] {
    animation: nosotros-draw .7s ease forwards;
}

.mx-marker-dot {
    fill: var(--white);
    stroke: var(--navy);
    stroke-width: 2;
}

.mx-marker-ring {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.4;
    opacity: .7;
}

.mx-marker-label {
    fill: var(--navy);
    font-size: 11px;
    font-weight: 750;
    font-family: ui-sans-serif, system-ui, sans-serif;
}

.nosotros-panel-stack {
    min-width: 0;
}

.nosotros-panel {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.nosotros-panel[hidden] {
    display: none;
}

.nosotros-panel-kicker {
    color: var(--cyan);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nosotros-panel h3 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 1.45rem;
}

.nosotros-panel > p {
    margin: 0 0 18px;
    color: var(--muted);
}

.nosotros-zone {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.nosotros-zone strong {
    display: block;
    color: var(--navy);
}

.nosotros-zone span {
    color: var(--muted);
    font-size: .92rem;
}

.nosotros-cta {
    padding: 28px clamp(18px, 5vw, 56px) 72px;
}

.nosotros-cta-inner {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
}

.nosotros-cta p {
    margin: 0;
    max-width: 58ch;
    color: var(--muted);
}

.nosotros-cta .btn {
    width: fit-content;
}

@keyframes nosotros-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 719px) {
    .mx-marker-label {
        display: none;
    }
}

@media (min-width: 900px) {
    .nosotros-differentials {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .nosotros-coverage-layout {
        grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
        align-items: start;
    }

    .nosotros-map-controls {
        grid-column: 1 / -1;
    }

    .nosotros-panel-stack {
        position: sticky;
        top: calc(var(--header-height) + 18px);
    }

    .nosotros-panel {
        position: static;
        top: auto;
    }
}

@media (min-width: 720px) and (max-width: 899px) {
    .nosotros-differentials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
