/* ============================================
   PORTFÓLIO DA LÍDIA — Design System
   Cores extraídas do logotipo
   ============================================ */

:root {
    --gold: #C9A227;
    --gold-light: #E8C547;
    --gold-dark: #9A7B1A;
    --gold-glow: rgba(201, 162, 39, 0.4);
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --white: #ffffff;
    --white-soft: #f5f5f0;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --brown: #8B5E3C;
    --grey: #888;
    --grey-light: #ccc;
    --red-accent: #C0392B;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-script: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --header-height: 80px;
    --topbar-height: 42px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.25);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--topbar-height) + 20px);
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white-soft);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

/* Textos justificados com espaçamento 1.5 */
p,
.about-text,
.hero__desc,
.section-desc,
.analysis-text,
.reflection-card p,
.final-reflection__body p,
.final-reflection__quote blockquote,
.portfolio-card__meta .meta-item div,
.doc-card__meta span,
.reflection-card__meta span,
.seminar-card .meta-item div,
.footer__brand p,
.highlight-item span,
.faq-intro,
.faq-item__answer p,
.faq-item__answer li,
.content-summary__body p,
.content-modal__body p,
.content-modal__body li,
.content-meta .meta-item div {
    text-align: justify;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold { color: var(--gold); }

/* ============================================
   CURSOR PERSONALIZADO
   ============================================ */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    opacity: 0.5;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold-light);
    opacity: 0.8;
    background: rgba(201, 162, 39, 0.08);
}

/* ============================================
   PARTÍCULAS DE FUNDO
   ============================================ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--black-soft) 0%, #1a1510 100%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    height: var(--topbar-height);
    position: relative;
    z-index: 1001;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--grey-light);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.top-bar__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.top-bar__item:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.top-bar__item:hover::after { width: 100%; }

.top-bar__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--gold);
    transition: var(--transition);
}

.top-bar__item:hover .top-bar__icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    color: var(--grey-light);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.15);
    box-shadow: var(--shadow-gold);
}

.social-icon:hover::before { transform: scale(1); }

.social-icon:hover i { transform: scale(1.1); }

/* ============================================
   HEADER PRINCIPAL
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition);
    height: var(--header-height);
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.main-header__logo {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 50%;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.main-header__logo:hover .logo-img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.6));
}

/* Navegação */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--grey-light);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.main-nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 50px;
}

.main-nav__link i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.main-nav__link:hover,
.main-nav__link.active {
    color: var(--gold-light);
}

.main-nav__link:hover::before,
.main-nav__link.active::before {
    transform: scaleX(1);
}

.main-nav__link:hover i,
.main-nav__link.active i {
    color: var(--gold);
    transform: scale(1.2);
}

.main-nav__link.active {
    background: rgba(201, 162, 39, 0.12);
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.3);
}

.main-nav__link.active i {
    animation: homeIconPulse 2s ease infinite;
}

@keyframes homeIconPulse {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

/* Header actions */
.main-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-action {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.action-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.header-action:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

.header-action:hover .action-ripple { opacity: 1; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   MODAL DE PESQUISA
   ============================================ */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.search-modal__content {
    position: relative;
    width: 90%;
    max-width: 640px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    transform: translateY(-30px);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-card);
}

.search-modal.active .search-modal__content {
    transform: translateY(0);
}

.search-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--grey);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal__close:hover {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    transform: rotate(90deg);
}

.search-modal__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--black-soft);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    transition: var(--transition);
}

.search-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.search-input-wrap i { color: var(--gold); }

.search-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.search-results {
    margin-top: 16px;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
    margin-bottom: 4px;
}

.search-result-item:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateX(4px);
}

.search-result-item h5 {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.search-result-item p {
    font-size: 0.8rem;
    color: var(--grey);
}

.search-no-results {
    text-align: center;
    padding: 24px;
    color: var(--grey);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

/* Slideshow do Hero */
.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slider__slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1);
    transition: transform 6s ease-out;
}

.hero-slide.active img {
    transform: scale(1.04);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.88) 0%,
        rgba(10, 10, 10, 0.65) 50%,
        rgba(26, 20, 10, 0.82) 100%
    );
    pointer-events: none;
}

/* Botões anterior / próximo */
.hero-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.hero-slider__btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.hero-slider__btn--prev { left: 24px; }
.hero-slider__btn--next { right: 24px; }

/* Rodapé do slideshow: contador, progresso e indicadores */
.hero-slider__footer {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: min(90%, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-slider__counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
}

.hero-slider__current {
    font-size: 1.8rem;
    color: var(--gold-light);
    min-width: 2ch;
    text-align: center;
}

.hero-slider__separator {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
}

.hero-slider__total {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-slider__progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.hero-slider__progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 4px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--gold-glow);
}

.hero-slider__indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-slider__dot {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 50%;
    color: var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider__dot:hover,
.hero-slider__dot.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 200px;
}

.hero__badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.1); }
    50% { box-shadow: 0 0 25px rgba(201, 162, 39, 0.3); }
}

.hero__title {
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero__title-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero__title-gold {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--grey-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero__desc {
    max-width: 600px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn--gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn--gold:hover::before { left: 100%; }

.btn--gold:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(201, 162, 39, 0.4);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero__stats {
    display: flex;
    gap: 64px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
}

.hero__stat {
    text-align: center;
    padding: 0 20px;
    min-width: 100px;
}

.hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.hero__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero__scroll {
    position: absolute;
    bottom: 175px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero__scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    color: var(--gold);
    animation: scrollBounce 2s ease-in-out infinite;
    transition: var(--transition);
}

.hero__scroll a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   SECÇÕES GERAIS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section--dark {
    background: var(--black-soft);
}

.section--gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-tag--dark {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--black);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title--dark { color: var(--black); }

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--grey);
    font-size: 1.05rem;
}

.section-desc--dark { color: rgba(0, 0, 0, 0.7); }

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="slide-right"] { transform: translateX(-20px); }
[data-animate="fade-up"] { transform: translateY(15px); }

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   APRESENTAÇÃO
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image__frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.about-image__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.4s ease;
    pointer-events: none;
}

.about-image__frame:hover .about-image__overlay {
    background: rgba(0, 0, 0, 0.35);
}

.about-image__frame:hover img {
    transform: scale(1.05);
}

.about-image__accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.about-image__frame:hover + .about-image__accent,
.about-image:hover .about-image__accent {
    bottom: -20px;
    right: -20px;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: -15px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-gold);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.about-role {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.about-text strong { color: var(--gold-light); }

.timeline {
    margin: 28px 0;
    padding: 24px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: var(--radius);
}

.timeline__title {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-left: 2px solid rgba(201, 162, 39, 0.15);
    margin-left: 8px;
    padding-left: 24px;
    position: relative;
    transition: var(--transition);
}

.timeline__item:hover {
    border-left-color: var(--gold);
    padding-left: 28px;
}

.timeline__dot {
    position: absolute;
    left: -7px;
    top: 18px;
    width: 12px;
    height: 12px;
    background: var(--black-soft);
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: var(--transition);
}

.timeline__item:hover .timeline__dot,
.timeline__item--active .timeline__dot {
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

.timeline__org {
    display: block;
    font-weight: 600;
    color: var(--white);
}

.timeline__role {
    font-size: 0.85rem;
    color: var(--grey);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 6px 14px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-light);
    transition: var(--transition);
    cursor: default;
}

.skill-tag:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   FILTROS E PORTFOLIO GRID
   ============================================ */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 50px;
    color: var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.portfolio-card.hidden { display: none; }

.portfolio-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-card__media img,
.portfolio-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:hover .portfolio-card__media video {
    transform: scale(1.08);
}

.portfolio-card__format {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.portfolio-card__body {
    padding: 24px;
}

.portfolio-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
    transition: color 0.3s;
}

.portfolio-card:hover .portfolio-card__title { color: var(--gold-light); }

.portfolio-card__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.5;
}

.meta-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.meta-item strong { color: var(--grey-light); }

.portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.portfolio-card__link:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* ============================================
   ANÁLISE DE MEDIA
   ============================================ */
.analysis-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding: 40px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.analysis-feature:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-card);
}

.analysis-feature__visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.analysis-feature__visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s;
}

.analysis-feature:hover .analysis-feature__visual img {
    transform: scale(1.05);
}

.analysis-feature__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.analysis-feature__play i {
    font-size: 3rem;
    color: var(--gold);
}

.analysis-feature:hover .analysis-feature__play { opacity: 1; }

.analysis-feature__content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.analysis-text {
    color: rgba(255, 255, 255, 0.75);
    margin: 20px 0;
    line-height: 1.8;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.doc-card {
    padding: 28px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.doc-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.doc-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 16px;
    transition: var(--transition);
}

.doc-card:hover .doc-card__icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(-5deg) scale(1.1);
}

.doc-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--white);
}

.doc-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.doc-card__meta span {
    font-size: 0.8rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 6px;
}

.doc-card__meta i { color: var(--gold); width: 14px; }

.doc-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.doc-card__btn:hover { gap: 12px; color: var(--gold-light); }

/* ============================================
   CURADORIA
   ============================================ */
.curadoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.curadoria-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.curadoria-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-card);
}

.curadoria-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 0;
}

.curadoria-card__num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.2);
    transition: var(--transition);
}

.curadoria-card:hover .curadoria-card__num { color: var(--gold); }

.curadoria-card__type {
    padding: 3px 10px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.curadoria-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin: 12px 0;
    transition: transform 0.5s;
}

.curadoria-card:hover .curadoria-card__img { transform: scale(1.03); }

.curadoria-card__body {
    padding: 0 20px 24px;
}

.curadoria-card__body h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--white);
}

.curadoria-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 18px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.curadoria-card__link:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

/* ============================================
   SEMINÁRIOS
   ============================================ */
.seminar-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.seminar-card {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.seminar-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.seminar-card:hover::before { transform: scaleY(1); }

.seminar-card:hover {
    transform: translateX(8px);
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: var(--shadow-card);
}

.seminar-card__date {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.seminar-card:hover .seminar-card__date {
    background: var(--gold);
    color: var(--black);
}

.seminar-card__date span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    transition: var(--transition);
}

.seminar-card:hover .seminar-card__date span { color: var(--black); }

.seminar-card__date strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--transition);
}

.seminar-card:hover .seminar-card__date strong { color: var(--black); }

.seminar-card__content h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.seminar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.seminar-card__link:hover { gap: 10px; color: var(--gold-light); }

/* ============================================
   REFLEXÕES
   ============================================ */
.reflections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.reflection-card {
    padding: 32px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reflection-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.reflection-card:hover::after { opacity: 1; }

.reflection-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-card);
}

.reflection-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-radius: 16px;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.reflection-card:hover .reflection-card__icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(-8deg) scale(1.1);
}

.reflection-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}

.reflection-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 16px;
}

.reflection-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reflection-card__meta span {
    font-size: 0.78rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 6px;
}

.reflection-card__meta i { color: var(--gold); }

.reflection-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.reflection-card__link:hover { gap: 10px; }

/* ============================================
   REFLEXÃO FINAL
   ============================================ */
.final-reflection {
    max-width: 900px;
    margin: 0 auto;
}

.final-reflection__quote {
    position: relative;
    padding: 32px 32px 32px 48px;
    margin-bottom: 32px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--black);
}

.final-reflection__quote i {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.3);
}

.final-reflection__quote blockquote {
    font-family: var(--font-script);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--black);
}

.final-reflection__body p {
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
}

.final-reflection__body strong {
    color: var(--black);
    font-weight: 700;
}

.final-reflection__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--black);
    font-size: 1.2rem;
    margin-top: 2px;
}

.highlight-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--black);
}

.highlight-item span {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
}

/* ============================================
   FAQ — CURADORIA
   ============================================ */
.content-meta {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 24px;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-block {
    max-width: 900px;
    margin: 0 auto;
}

.faq-block__header {
    text-align: center;
    margin-bottom: 32px;
}

.faq-block__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.08));
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-block__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.faq-block__subtitle {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: var(--gold);
    font-style: italic;
}

.faq-intro {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: rgba(201, 162, 39, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: justify;
    line-height: 1.5;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.25);
}

.faq-item.active {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: var(--shadow-gold);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--gold-light);
}

.faq-item__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-item__num {
    background: var(--gold);
    color: var(--black);
}

.faq-item__text {
    flex: 1;
    line-height: 1.5;
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-item__answer {
    max-height: 1200px;
    padding: 0 24px 24px 76px;
}

.faq-item__answer p,
.faq-item__answer li {
    text-align: justify;
    line-height: 1.5;
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.faq-item__answer ul {
    margin: 8px 0 12px 20px;
    list-style: disc;
}

.faq-item__answer li {
    margin-bottom: 6px;
}

.faq-item__answer strong {
    color: var(--gold-light);
}

.content-summary {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, var(--black-card) 0%, rgba(201, 162, 39, 0.08) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    align-items: flex-start;
    transition: var(--transition);
}

.content-summary:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.content-summary__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    border-radius: 16px;
    font-size: 1.4rem;
}

.content-summary__body h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}

.content-summary__body p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.5;
    color: var(--grey);
}

/* ============================================
   MODAL DE CONTEÚDO
   ============================================ */
.content-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.content-modal.active {
    opacity: 1;
    visibility: visible;
}

.content-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.content-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    background: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.content-modal.active .content-modal__dialog {
    transform: translateY(0) scale(1);
}

.content-modal__header {
    position: relative;
    padding: 28px 60px 20px 28px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    flex-shrink: 0;
}

.content-modal__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.content-modal__header h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1.4;
    padding-right: 10px;
}

.content-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.content-modal__close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.content-modal__body {
    padding: 28px;
    overflow-y: auto;
    flex: 1;
}

.content-modal__body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin: 24px 0 12px;
}

.content-modal__body h3:first-child { margin-top: 0; }

.content-modal__body h4 {
    font-size: 0.95rem;
    color: var(--gold);
    margin: 16px 0 8px;
}

.content-modal__body p,
.content-modal__body li {
    text-align: justify;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.content-modal__body ul {
    margin: 8px 0 16px 20px;
    list-style: disc;
}

.refs-list {
    list-style: none !important;
    margin-left: 0 !important;
    padding: 16px;
    background: rgba(201, 162, 39, 0.06);
    border-radius: var(--radius);
}

.refs-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
    font-size: 0.85rem !important;
}

.refs-list li:last-child { border-bottom: none; }

.analysis-feature__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer__logo {
    width: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.3));
    transition: var(--transition);
}

.footer__logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(201, 162, 39, 0.5));
}

.footer__brand p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.footer__links h5,
.footer__contact h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links a,
.footer__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--grey);
    padding: 8px 0;
    transition: var(--transition);
}

.footer__links a i,
.footer__contact a i {
    width: 18px;
    color: var(--gold);
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--gold-light);
    transform: translateX(6px);
}

.footer__links a:hover i,
.footer__contact a:hover i {
    transform: scale(1.2);
}

.footer__divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
}

.footer__bottom {
    text-align: center;
    padding: 28px 24px 32px;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--grey-light);
    line-height: 1.5;
}

.footer__credit {
    margin-top: 8px;
    color: var(--gold) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.5);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1100px) {
    .main-nav__link span { display: none; }
    .main-nav__link { padding: 10px 12px; }
}

@media (max-width: 900px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }

    .top-bar__text { display: none; }
    .top-bar__left { gap: 10px; }

    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: calc(var(--topbar-height) + var(--header-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.open { transform: translateX(0); }

    .main-nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav__link {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
    }

    .main-nav__link span { display: inline; }

    .about-grid,
    .analysis-feature {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero__stats { gap: 24px; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }

    .top-bar__right { gap: 4px; }
    .social-icon { width: 26px; height: 26px; font-size: 0.7rem; }

    .portfolio-grid,
    .curadoria-grid,
    .reflections-grid {
        grid-template-columns: 1fr;
    }

    .hero__cta { flex-direction: column; align-items: center; }

    .hero-slider__btn { width: 40px; height: 40px; font-size: 0.85rem; }
    .hero-slider__btn--prev { left: 12px; }
    .hero-slider__btn--next { right: 12px; }
    .hero-slider__footer { bottom: 24px; gap: 16px; }
    .hero-slider__indicators { gap: 12px; }
    .hero__scroll { bottom: 150px; }
    .hero__content { padding-bottom: 180px; }

    .content-summary { flex-direction: column; }
    .faq-item.active .faq-item__answer { padding-left: 24px; }

    .seminar-card { flex-direction: column; }
    .seminar-card__date { width: 100%; height: auto; flex-direction: row; gap: 8px; padding: 10px; }

    .analysis-feature { padding: 20px; }
}
