/* =============================================
   EQUIPO — Magazine Editorial Style
   Secciones inmersivas alternadas claro/oscuro
   ============================================= */

/* ── INTRO / PORTADA ───────────────────────── */
.eq-intro {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #FFF8E0;
}

/* Blobs decorativos de fondo */
.eq-intro-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.eq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.eq-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 59, 124, 0.14);
    top: -100px;
    right: -120px;
}

.eq-blob-2 {
    width: 380px;
    height: 380px;
    background: rgba(255, 213, 0, 0.18);
    bottom: -80px;
    right: 20%;
}

.eq-blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 80, 255, 0.10);
    top: 30%;
    left: -80px;
}

.eq-intro-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.eq-intro-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.eq-intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4rem;
}

.eq-intro-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2rem;
}

.eq-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.eq-intro-h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.0;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.eq-intro-h1 em {
    font-style: normal;
    color: #A78BFA;
    text-shadow:
        -2px -2px 0 var(--text-dark),
         2px -2px 0 var(--text-dark),
        -2px  2px 0 var(--text-dark),
         2px  2px 0 var(--text-dark),
         5px  5px 0 rgba(0, 0, 0, 0.08);
}

.eq-intro-sub {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #3a3550;
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.eq-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #FFD500;
    border: 3px solid #1E1B2E;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    box-shadow: 4px 4px 0 #C0BDCF;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.eq-scroll-hint:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #C0BDCF;
}

/* Número enorme decorativo de fondo — OCULTO */
.eq-big-num {
    display: none;
}

/* ── SECCIONES DE MIEMBRO ─────────────────── */
.eq-member {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 900px) {
    .eq-member {
        grid-template-columns: 1fr 1fr;
    }
}

/* Fondo compartido: Salma + Álvaro + Cierre */
.eq-content-bg {
    background: linear-gradient(160deg, #FFFDF5 0%, #FFF0F8 60%, #FFF8E0 100%);
}

/* CLARO (Salma) */
.eq-member--light {
    background: transparent;
}

/* OSCURO (Álvaro) — ahora transparente */
.eq-member--dark {
    background: transparent;
}

/* Números de fondo por sección — OCULTOS */
.eq-member-num,
.eq-member-num--dark {
    display: none;
}

/* ── LADO FOTO ──────────────────────────────── */
.eq-member-photo-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    gap: 2rem;
    z-index: 1;
}

/* Polaroid */
.eq-polaroid {
    background: #fff;
    padding: 1rem 1rem 3.5rem;
    border: 3px solid var(--text-dark);
    box-shadow: 10px 10px 0 #D0D2DB;
    max-width: 300px;
    width: 100%;
    transform: rotate(-2.5deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.eq-polaroid:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 14px 14px 0 #D0D2DB;
}

.eq-polaroid--blue {
    transform: rotate(2deg);
}

.eq-polaroid--blue:hover {
    transform: rotate(0deg) scale(1.03);
}

.eq-polaroid img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.eq-polaroid-caption {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Sticky note */
.eq-sticky {
    padding: 1rem 1.4rem;
    border: 2.5px solid var(--text-dark);
    border-radius: 4px;
    box-shadow: 4px 4px 0 #D0D2DB;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transform: rotate(1.5deg);
    max-width: 140px;
}

.eq-sticky i {
    font-size: 1.6rem;
}

.eq-sticky--yellow {
    background: #FFF9A0;
    color: var(--text-dark);
}

.eq-sticky--blue {
    background: #D0E4FF;
    color: #002080;
    transform: rotate(-2deg);
}

/* ── LADO TEXTO ─────────────────────────────── */
.eq-member-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

.eq-member-text-side--right {
    padding: 4rem 3rem;
}

.eq-member-overline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.eq-member-overline--light {
    color: var(--accent-blue);
}

.eq-member-name {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.eq-first-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-dark);
    line-height: 1;
}

.eq-member-name--light .eq-first-name {
    color: var(--text-dark);
}

.eq-last-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
}

.eq-last-name--pink {
    color: var(--accent-pink);
}

.eq-last-name--blue {
    color: #6fa3ff;
}

/* Chips / tags */
.eq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.eq-chip {
    display: inline-block;
    padding: 0.25rem 0.9rem;
    border-radius: 50px;
    border: 2.5px solid var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 2px 2px 0 #C0BDCF;
}

.eq-chip--pink {
    background: var(--accent-pink);
    color: white;
}

.eq-chip--yellow {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.eq-chip--mint {
    background: var(--accent-mint);
    color: var(--text-dark);
}

.eq-chip--blue {
    background: var(--accent-blue);
    color: white;
}

.eq-chip--orange {
    background: var(--accent-orange);
    color: white;
}

/* Blockquote */
.eq-blockquote {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 5px solid var(--accent-pink);
    padding: 0.8rem 1.4rem;
    margin: 0 0 1.4rem;
    font-style: italic;
    color: #3a3550;
    background: rgba(255, 59, 124, 0.05);
    border-radius: 0 12px 12px 0;
}

.eq-blockquote--blue {
    border-color: var(--accent-blue);
    color: #3a3550;
    background: rgba(0, 80, 255, 0.06);
}

/* Texto bio */
.eq-body {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #4a4060;
    margin-bottom: 0.8rem;
    max-width: 480px;
}

.eq-body--light {
    color: rgba(255, 255, 255, 0.75);
}

.eq-body strong {
    color: var(--text-dark);
    font-weight: 800;
}

.eq-body--light strong {
    color: #fff;
}

/* Barras de habilidad */
.eq-habilidades {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.eq-hab {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.eq-hab span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    color: #666;
    letter-spacing: 0.5px;
}

.eq-hab-label--light {
    color: rgba(255, 255, 255, 0.6) !important;
}

.eq-hab-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.eq-hab-bar--dark {
    background: rgba(255, 255, 255, 0.1);
}

.eq-hab-bar div {
    height: 100%;
    border-radius: 10px;
    animation: bar-grow 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bar-grow {
    from {
        width: 0 !important;
    }
}

/* ── SEPARADOR MUSICAL ──────────────────────── */
.eq-sep {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: var(--text-dark);
    overflow: hidden;
}

.eq-sep-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.eq-sep-icons {
    display: flex;
    gap: 1.5rem;
    color: var(--accent-yellow);
    font-size: 1.3rem;
    opacity: 0.7;
    animation: slide-icons 6s linear infinite;
    white-space: nowrap;
}

@keyframes slide-icons {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20px);
    }
}

/* ── CTA BOX (mismo que quiénes somos) ──────── */
.qs-cta-box {
    background: linear-gradient(135deg, #1C1040 0%, #0D1B3E 60%, #12082A 100%);
    border: var(--diy-border);
    border-radius: var(--diy-radius-3);
    box-shadow: 6px 6px 0 #D0D2DB;
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.qs-cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 59, 124, 0.25) 0%, transparent 70%);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.qs-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--diy-radius-3);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ── CIERRE ─────────────────────────────────── */
.eq-cierre {
    background: transparent;
    padding: 0 0 5rem;
}

.eq-cierre-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.eq-cierre-title span {
    color: var(--accent-yellow);
}

.eq-cierre-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 460px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.eq-cierre-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}


/* ── POSICIÓN Y COLORES SECCIÓN ÁLVARO ──────── */
#alvaro {
    margin-top: -8rem;
    margin-left: 15%;
    margin-right: auto;
}

#alvaro .eq-member-overline--light {
    color: #3a3550;
}

#alvaro .eq-member-name--light .eq-first-name {
    color: #3a3550;
}

#alvaro .eq-last-name--blue {
    color: #3a3550;
}

#alvaro .eq-body--light {
    color: #3a3550;
}

#alvaro .eq-body--light strong {
    color: #3a3550;
}

#alvaro .eq-hab-label--light {
    color: #3a3550 !important;
}
#alvaro .eq-hab-bar--dark { background: rgba(0, 0, 0, 0.08); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {

    .eq-member-text-side,
    .eq-member-text-side--right {
        padding: 3rem 1.8rem;
    }

    .eq-member-photo-side {
        padding: 3rem 1.8rem 1rem;
    }

    .eq-intro {
        min-height: auto;
    }

    .eq-intro-inner {
        padding: 7rem 0 4rem;
    }

    .eq-member {
        min-height: auto;
    }
}