/* ==========================================================
   MODO PRESENTACIÓN — AYUDA MUNDIAL A GAIA
   Experiencia simplificada para coordinadores.
   ========================================================== */

#presentationMode {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px;
}

.presentation-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.presentation-brand small {
    display: block;
    color: var(--muted);
    margin-bottom: 5px;
}

.presentation-brand h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.presentation-brand p {
    max-width: 720px;
    margin: 9px 0 0;
    color: var(--muted);
}

.presentation-full-mode {
    width: auto;
    padding: 8px 12px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--line);
}

.presentation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr);
    gap: 18px;
    margin-bottom: 18px;
}

.presentation-next,
.presentation-service {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--panel);
}

.presentation-kicker {
    color: var(--accent);
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.presentation-next h2 {
    margin: 12px 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.presentation-date {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 1.05rem;
}

.presentation-status {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .86rem;
}

.presentation-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.presentation-primary {
    min-height: 58px;
    margin-top: 22px;
    font-size: 1.07rem;
}

.presentation-service h3 {
    margin-bottom: 9px;
}

.presentation-service-state {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0;
    color: var(--warning);
}

.presentation-service-state::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: currentColor;
}

.presentation-service p {
    color: var(--muted);
}

.presentation-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.presentation-metric {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

.presentation-metric span {
    display: block;
    color: var(--muted);
    font-size: .87rem;
}

.presentation-metric strong {
    display: block;
    margin-top: 7px;
    font-size: 1.8rem;
}

.presentation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 18px;
}

.presentation-section {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
}

.presentation-section h2 {
    margin-bottom: 6px;
}

.presentation-section-subtitle {
    margin: 0 0 20px;
    color: var(--muted);
}

.presentation-event {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.presentation-event:last-child {
    border-bottom: 0;
}

.presentation-event a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.presentation-person {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.presentation-person:last-child {
    border-bottom: 0;
}

.presentation-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
}

.presentation-person small {
    color: var(--muted);
}

.presentation-person a {
    color: var(--accent);
    text-decoration: none;
}

.presentation-wizard {
    display: none;
    margin-top: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--panel);
}

.presentation-wizard.is-open {
    display: block;
}

.presentation-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin: 20px 0 28px;
}

.presentation-step-indicator {
    height: 6px;
    border-radius: 999px;
    background: var(--line);
}

.presentation-step-indicator.active {
    background: var(--accent);
}

.presentation-wizard-step {
    display: none;
}

.presentation-wizard-step.active {
    display: block;
}

.presentation-question {
    margin-bottom: 19px;
    font-size: 1.45rem;
}

.presentation-wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 22px;
}

.presentation-wizard-actions button {
    width: auto;
    min-width: 130px;
}

.presentation-summary {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel2);
}

.presentation-summary div {
    margin: 8px 0;
}

.presentation-complete {
    display: none;
    padding: 35px;
    text-align: center;
}

.presentation-complete.is-visible {
    display: block;
}

.presentation-complete-mark {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 2rem;
}

.presentation-participant-only .presentation-hero,
.presentation-participant-only .presentation-metrics,
.presentation-participant-only #presentationCommunity {
    display: none;
}

@media (max-width: 900px) {
    .presentation-hero,
    .presentation-grid {
        grid-template-columns: 1fr;
    }

    .presentation-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #presentationMode {
        padding: 14px;
    }

    .presentation-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .presentation-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .presentation-wizard-actions {
        flex-direction: column-reverse;
    }

    .presentation-wizard-actions button {
        width: 100%;
    }
}
