/* ============================================================
   ZIPWEB — nosotros.css
   Estilos específicos de la página nosotros.html
   ============================================================ */

/* PAGE HERO */
.page-hero {
    padding: 9rem 6% 4rem;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--white);
}

.page-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 580px;
    margin-top: 1rem;
    line-height: 1.8;
}

/* ABOUT */
.about-section {
    padding: 5rem 6%;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media(max-width:768px) {
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.about-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px var(--orange-glow);
}

.about-visual h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.about-visual .role {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-visual p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.75;
}

.about-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.chip {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.28rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
}

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-text p strong {
    color: var(--white);
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.value-card h3 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.value-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.11), rgba(255, 138, 0, 0.05));
    border: 1px solid rgba(255, 92, 0, 0.18);
    border-radius: 18px;
    padding: 2.8rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.cta-banner p {
    color: var(--muted);
    margin-bottom: 1.8rem;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
}

/* ============================================================
   RESPONSIVE - NOSOTROS.CSS
   Sistema completo para la página sobre nosotros
   ============================================================ */

/* ─── TABLET (≤1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
    .about-wrap {
        gap: 3.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── MOBILE LARGE (≤768px) ──────────────────────────────── */
@media (max-width: 768px) {
    /* Page hero */
    .page-hero {
        padding: 7rem 5% 3rem;
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .page-hero p {
        font-size: 0.92rem;
        max-width: 100%;
    }

    /* About section */
    .about-section {
        padding: 4rem 5%;
    }

    .about-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3.5rem;
    }

    .about-visual {
        padding: 2.5rem 2rem;
    }

    .about-avatar {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
    }

    .about-visual h3 {
        font-size: 1.15rem;
    }

    .about-visual .role {
        font-size: 0.8rem;
    }

    .about-visual p {
        font-size: 0.82rem;
    }

    .about-chips {
        gap: 0.4rem;
    }

    .chip {
        font-size: 0.68rem;
        padding: 0.25rem 0.65rem;
    }

    .about-text h2 {
        font-size: clamp(1.4rem, 4vw, 1.9rem);
    }

    .about-text p {
        font-size: 0.88rem;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
        margin-bottom: 3rem;
    }

    .value-card {
        padding: 1.6rem;
    }

    .value-icon {
        font-size: 1.8rem;
    }

    .value-card h3 {
        font-size: 0.92rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    /* CTA banner */
    .cta-banner {
        padding: 2.5rem 1.8rem;
        border-radius: 16px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .flex-center-gap {
        flex-direction: column;
        width: 100%;
    }

    .btn-p,
    .btn-s {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.6rem;
    }
}

/* ─── MOBILE SMALL (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
    /* Page hero */
    .page-hero {
        padding: 6rem 5% 2.5rem;
    }

    .page-hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.3rem);
    }

    .page-hero p {
        font-size: 0.85rem;
    }

    /* About section */
    .about-section {
        padding: 3.5rem 5%;
    }

    .about-wrap {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-visual {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .about-avatar {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .about-visual h3 {
        font-size: 1.05rem;
    }

    .about-visual .role {
        font-size: 0.75rem;
    }

    .about-visual p {
        font-size: 0.78rem;
    }

    .about-chips {
        gap: 0.3rem;
    }

    .chip {
        font-size: 0.63rem;
        padding: 0.2rem 0.55rem;
    }

    .about-text h2 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    .about-text p {
        font-size: 0.82rem;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .value-card {
        padding: 1.4rem;
        border-radius: 12px;
    }

    .value-icon {
        font-size: 1.6rem;
    }

    .value-card h3 {
        font-size: 0.88rem;
    }

    .value-card p {
        font-size: 0.75rem;
    }

    /* CTA banner */
    .cta-banner {
        padding: 2rem 1.4rem;
        border-radius: 14px;
    }

    .cta-banner h2 {
        font-size: 1.3rem;
    }

    .cta-banner p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn-p,
    .btn-s {
        padding: 0.75rem 1.4rem;
        font-size: 0.82rem;
        border-radius: 8px;
    }
}

/* ─── DISPOSITIVOS MUY PEQUEÑOS (≤360px) ─────────────────── */
@media (max-width: 360px) {
    .page-hero h1 {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    .page-hero p {
        font-size: 0.8rem;
    }

    .about-visual h3 {
        font-size: 0.95rem;
    }

    .about-visual .role {
        font-size: 0.7rem;
    }

    .about-visual p {
        font-size: 0.73rem;
    }

    .chip {
        font-size: 0.6rem;
        padding: 0.18rem 0.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.78rem;
    }

    .value-card h3 {
        font-size: 0.82rem;
    }

    .value-card p {
        font-size: 0.7rem;
    }

    .cta-banner h2 {
        font-size: 1.15rem;
    }

    .cta-banner p {
        font-size: 0.75rem;
    }
}

/* ─── DESKTOP GRANDE (≥1440px) ───────────────────────────── */
@media (min-width: 1440px) {
    .page-hero {
        max-width: 1400px;
        margin: 0 auto;
    }

    .about-wrap {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5rem;
    }

    .values-grid {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}