/* ============================================
   Pellizzari Advocacia — Palestra NR-01
   Design System v3.0 — Montserrat + Inter
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-profundo: #001527;
    --azul-medio: #0a2a4a;
    --dourado: #B6A281;
    --dourado-claro: #d4c4a8;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #6c757d;
    --cinza-escuro: #343a40;

    --fonte-principal: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fonte-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    --border-radius-sm: 8px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    --border-radius-pill: 30px;

    --transicao-rapida: all 0.3s ease;
    --transicao-suave: all 0.6s ease;
    --sombra-leve: 0 1px 6px rgba(0,21,39,0.06);
    --sombra-media: 0 4px 12px rgba(0,21,39,0.05);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--fonte-principal);
    background: var(--azul-profundo);
    color: var(--cinza-escuro);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* ============================================
   Ícones SVG inline
   ============================================ */
.icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-svg svg {
    width: 24px;
    height: 24px;
    fill: var(--dourado);
}

.icon-svg--lg svg {
    width: 32px;
    height: 32px;
}

.icon-svg--xl svg {
    width: 44px;
    height: 44px;
}

.icon-svg--xxl svg {
    width: 56px;
    height: 56px;
}

.icon-svg--white svg {
    fill: var(--branco);
}

.icon-svg--dark svg {
    fill: var(--azul-profundo);
}

.card .icon-svg {
    margin-bottom: 16px;
}

/* ============================================
   Slide Container
   ============================================ */
.presentation {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(40px);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.exit-left {
    opacity: 0;
    transform: translateX(-40px);
}

.slide--dark {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
    color: var(--branco);
}

.slide--light {
    background: var(--cinza-claro);
    color: var(--cinza-escuro);
}

.slide--white {
    background: var(--branco);
    color: var(--cinza-escuro);
}

.slide--gradient {
    background: linear-gradient(160deg, var(--azul-profundo) 0%, #0d3b66 50%, var(--azul-medio) 100%);
    color: var(--branco);
}

/* ============================================
   Tipografia — Montserrat + Inter
   ============================================ */
.slide__tag {
    font-family: var(--fonte-principal);
    font-size: 13px;
    font-weight: var(--weight-semibold);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 20px;
}

.slide__title {
    font-family: var(--fonte-display);
    font-weight: var(--weight-bold);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: center;
    max-width: 900px;
}

.slide__subtitle {
    font-family: var(--fonte-principal);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: var(--weight-regular);
    line-height: 1.6;
    opacity: 0.85;
    text-align: center;
    max-width: 750px;
    margin-bottom: 16px;
}

.slide__title--small {
    font-size: clamp(26px, 3.5vw, 42px);
}

.highlight {
    color: var(--dourado);
}

.highlight-box {
    background: rgba(182, 162, 129, 0.12);
    border-left: 4px solid var(--dourado);
    padding: 20px 28px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 16px 0;
    max-width: 800px;
    width: 100%;
}

.highlight-box p {
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.7;
}

/* ============================================
   Conteúdo
   ============================================ */
.slide__content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(182, 162, 129, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 28px 24px;
    transition: var(--transicao-rapida);
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--dourado);
}

.card__title {
    font-family: var(--fonte-display);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: var(--weight-semibold);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card__text {
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.6;
    opacity: 0.8;
}

/* ============================================
   Quem sou eu
   ============================================ */
.profile-section {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    width: 100%;
}

.profile-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid var(--dourado);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--azul-medio);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: var(--fonte-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: var(--weight-bold);
    margin-bottom: 8px;
}

.profile-role {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--dourado);
    margin-bottom: 20px;
    font-weight: var(--weight-medium);
}

.profile-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--fonte-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: var(--weight-bold);
    color: var(--dourado);
    display: block;
    line-height: 1;
}

.stat__label {
    font-size: clamp(11px, 1.2vw, 14px);
    opacity: 0.7;
    margin-top: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.badge {
    background: rgba(182, 162, 129, 0.15);
    border: 1px solid rgba(182, 162, 129, 0.3);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: var(--weight-medium);
}

/* ============================================
   Dinâmicas
   ============================================ */
.dynamic-section {
    background: rgba(182, 162, 129, 0.08);
    border: 2px dashed rgba(182, 162, 129, 0.4);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.dynamic-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dourado);
    color: var(--azul-profundo);
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.dynamic-title {
    font-family: var(--fonte-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: var(--weight-bold);
    margin-bottom: 12px;
}

.dynamic-instructions {
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.7;
    opacity: 0.85;
}

/* Opções de dinâmica */
.emoji-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.emoji-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 16px;
    border-radius: var(--border-radius-lg);
    border: 1px solid transparent;
}

.emoji-option:hover {
    transform: scale(1.05);
    border-color: rgba(182, 162, 129, 0.3);
    background: rgba(182, 162, 129, 0.08);
}

.emoji-option .icon-svg svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.4;
}

.emoji-option .label {
    font-size: 14px;
    font-weight: var(--weight-medium);
    opacity: 0.8;
}

/* Quiz */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    width: 100%;
    margin-top: 20px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(182, 162, 129, 0.15);
    border-radius: var(--border-radius-md);
    padding: 18px 24px;
    font-size: clamp(15px, 1.6vw, 18px);
    transition: var(--transicao-rapida);
}

.quiz-option:hover {
    background: rgba(182, 162, 129, 0.1);
    border-color: var(--dourado);
}

/* ============================================
   Analogia copo d'água
   ============================================ */
.analogy-visual {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    width: 100%;
    margin: 24px 0;
}

.analogy-text {
    flex: 1;
}

.analogy-text h3 {
    font-family: var(--fonte-display);
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: var(--weight-semibold);
    margin-bottom: 12px;
}

.analogy-text p {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    opacity: 0.85;
}

.water-glass-demo {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 28px 0;
    flex-wrap: wrap;
    align-items: center;
}

.glass-step {
    text-align: center;
    max-width: 200px;
}

.glass-step .icon-svg svg {
    width: 56px;
    height: 56px;
    stroke-width: 1.3;
    margin-bottom: 12px;
}

.glass-step .time {
    font-family: var(--fonte-display);
    font-size: 22px;
    font-weight: var(--weight-bold);
    color: var(--dourado);
    display: block;
    margin-bottom: 6px;
}

.glass-step .feeling {
    font-size: 15px;
    opacity: 0.8;
}

.arrow-right {
    display: flex;
    align-items: center;
}

.arrow-right svg {
    width: 28px;
    height: 28px;
    fill: var(--dourado);
    opacity: 0.5;
}

/* ============================================
   Setores da escola
   ============================================ */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin-top: 16px;
}

.sector-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(182, 162, 129, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: border-color 0.3s;
}

.sector-card:hover {
    border-color: var(--dourado);
}

.sector-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sector-card__name {
    font-family: var(--fonte-display);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: var(--weight-semibold);
    color: var(--dourado);
}

.sector-card__risks {
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.6;
    opacity: 0.8;
}

/* ============================================
   Lista de itens
   ============================================ */
.item-list {
    list-style: none;
    max-width: 800px;
    width: 100%;
    margin-top: 16px;
}

.item-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
}

.item-list--reveal li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.item-list--reveal li.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Checklist */
.checklist {
    list-style: none;
    max-width: 700px;
    width: 100%;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
}

.checklist .check svg {
    fill: var(--dourado);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
   Exercício de respiração
   ============================================ */
.breathing-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto;
    transition: transform 4s ease-in-out;
    background: rgba(182, 162, 129, 0.08);
}

.breathing-circle.inhale {
    transform: scale(1.4);
}

.breathing-circle.exhale {
    transform: scale(1);
}

.breathing-text {
    font-family: var(--fonte-display);
    font-size: 24px;
    font-weight: var(--weight-bold);
    color: var(--dourado);
}

.breathing-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.breathing-step {
    text-align: center;
}

.breathing-step .number {
    font-family: var(--fonte-display);
    font-size: 36px;
    font-weight: var(--weight-bold);
    color: var(--dourado);
    display: block;
}

.breathing-step .action {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 4px;
}

.btn-breath {
    margin-top: 24px;
    background: var(--dourado);
    color: var(--azul-profundo);
    border: none;
    padding: 12px 32px;
    border-radius: var(--border-radius-pill);
    font-size: 16px;
    font-weight: var(--weight-semibold);
    cursor: pointer;
    font-family: var(--fonte-principal);
    transition: var(--transicao-rapida);
}

.btn-breath:hover {
    background: var(--branco);
    transform: translateY(-2px);
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
    display: flex;
    align-items: flex-start;
    max-width: 900px;
    width: 100%;
    margin: 24px 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(182, 162, 129, 0.3);
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 8px;
}

.timeline-step__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dourado);
    margin: 18px auto 16px;
    position: relative;
    z-index: 1;
}

.timeline-step__number {
    font-family: var(--fonte-display);
    font-size: 18px;
    font-weight: var(--weight-bold);
    color: var(--dourado);
}

.timeline-step__title {
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: var(--weight-semibold);
    margin-bottom: 6px;
}

.timeline-step__desc {
    font-size: clamp(11px, 1.1vw, 13px);
    opacity: 0.65;
    line-height: 1.5;
}

/* ============================================
   Frase de impacto
   ============================================ */
.impact-phrase {
    font-family: var(--fonte-display);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: var(--weight-bold);
    text-align: center;
    line-height: 1.3;
    max-width: 850px;
}

.impact-phrase .small {
    display: block;
    font-size: 0.5em;
    font-family: var(--fonte-principal);
    font-weight: var(--weight-regular);
    opacity: 0.6;
    margin-top: 20px;
}

/* ============================================
   Compromisso final
   ============================================ */
.commitment-box {
    background: rgba(182, 162, 129, 0.1);
    border: 2px solid var(--dourado);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.commitment-box .quote {
    font-family: var(--fonte-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: var(--weight-bold);
    line-height: 1.4;
    margin-bottom: 16px;
    font-style: italic;
}

.commitment-box .attribution {
    font-size: 16px;
    opacity: 0.7;
}

/* ============================================
   Navegação
   ============================================ */
.nav-controls {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 100;
    background: rgba(0, 21, 39, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid rgba(182, 162, 129, 0.2);
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(182, 162, 129, 0.4);
    background: transparent;
    color: var(--branco);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao-rapida);
}

.nav-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--branco);
}

.nav-btn:hover {
    background: var(--dourado);
    border-color: var(--dourado);
}

.nav-btn:hover svg {
    fill: var(--azul-profundo);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    background: transparent;
}

.nav-btn:disabled:hover svg {
    fill: var(--branco);
}

.slide-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: var(--weight-medium);
    min-width: 48px;
    text-align: center;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    transition: width 0.4s ease;
    z-index: 100;
}

.logo-fixed {
    position: fixed;
    top: 20px;
    left: 24px;
    z-index: 100;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-fixed:hover {
    opacity: 1;
}

.logo-fixed img {
    height: 56px;
}

.timer-fixed {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 100;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--weight-medium);
}

/* ============================================
   Capa
   ============================================ */
.cover {
    position: relative;
    text-align: center;
}

.cover__logo {
    height: 112px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cover__school {
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: var(--weight-medium);
    color: var(--dourado);
    margin-top: 32px;
    letter-spacing: 1px;
}

.cover__date {
    font-size: 15px;
    opacity: 0.5;
    margin-top: 12px;
}

.cover__decorator {
    width: 60px;
    height: 3px;
    background: var(--dourado);
    margin: 24px auto;
    border-radius: 2px;
}

/* Social */
.social-handle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--dourado);
    font-weight: var(--weight-semibold);
    margin-top: 8px;
}

/* Signs list */
.signs-list {
    list-style: none;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.signs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signs-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dourado);
    flex-shrink: 0;
}

/* Footer */
.footer-vantt {
    position: fixed;
    bottom: 8px;
    right: 20px;
    font-size: 11px;
    opacity: 0.3;
    color: var(--branco);
    z-index: 50;
}

.footer-vantt a {
    color: var(--branco);
    text-decoration: none;
}

/* ============================================
   Responsivo
   ============================================ */
@media (max-width: 768px) {
    .slide {
        padding: 60px 24px 90px;
        justify-content: flex-start;
        padding-top: 70px;
    }

    .grid-2, .sector-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .profile-photo {
        width: 140px;
        height: 140px;
    }

    .profile-stats {
        justify-content: center;
    }

    .profile-badges {
        justify-content: center;
    }

    .card {
        padding: 20px 18px;
    }

    .analogy-visual {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .water-glass-demo {
        gap: 24px;
    }

    .arrow-right {
        display: none;
    }

    .timeline {
        flex-direction: column;
        gap: 16px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .timeline-step__dot {
        margin: 0;
        flex-shrink: 0;
    }

    .nav-controls {
        bottom: 12px;
        padding: 8px 16px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }

    .logo-fixed {
        top: 12px;
        left: 16px;
    }

    .logo-fixed img {
        height: 36px;
    }

    .timer-fixed {
        top: 12px;
        right: 16px;
        font-size: 11px;
    }

    .emoji-options {
        gap: 16px;
    }

    .emoji-option .icon-svg svg {
        width: 36px;
        height: 36px;
    }

    .breathing-circle {
        width: 150px;
        height: 150px;
    }

    .highlight-box {
        padding: 16px 20px;
    }

    .commitment-box {
        padding: 28px 20px;
    }

    .dynamic-section {
        padding: 24px 20px;
    }

    .cover__logo {
        height: 72px;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 60px 16px 80px;
    }

    .profile-stats {
        gap: 20px;
    }

    .stat__number {
        font-size: 28px;
    }
}

@media print {
    .slide {
        position: relative;
        page-break-after: always;
        opacity: 1;
        visibility: visible;
        transform: none;
        height: auto;
        min-height: 100vh;
    }

    .nav-controls, .progress-bar, .logo-fixed, .timer-fixed, .footer-vantt {
        display: none;
    }
}
