/*
 =============================================================================
 ARQUIVO   : public/assets/css/main.css
 FUNCAO    : Estilos principais do site - Tema Moderno Escuro
 BLOCOS    : reset | variables | navbar | hero | sobre | temas | depoimentos | galeria | cta | contato | footer | whatsapp-float | responsive
 DEPENDE   : Google Fonts (Inter, Playfair Display)
 DESIGN    : ver _memoria/10_DESIGN.md
 CRIADO    : 2026-07-07
 ALTERADO  : 2026-07-21 - Topo do hero sem sobrepor secoes
 VERSAO    : v007
 =============================================================================
*/

/* ============================================================
   BLOCO: reset
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* /BLOCO: reset */

/* ============================================================
   BLOCO: variables
   FUNCAO: Tokens de design - cores, tipografia, espacamento
   ============================================================ */
:root {
    /* Cores */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --accent: #c8a962;
    --accent-light: #e0c97a;
    --accent-dark: #a08840;
    --accent-glow: rgba(200, 169, 98, 0.3);
    --border: rgba(255, 255, 255, 0.06);
    --gradient-accent: linear-gradient(135deg, #c8a962, #e0c97a);
    --gradient-dark: linear-gradient(180deg, rgba(10,10,10,0) 0%, #0a0a0a 100%);

    /* Bordas */
    --radius: 16px;
    --radius-sm: 8px;

    /* Sombras */
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

    /* Transicoes */
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Tipografia */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* /BLOCO: variables */

/* ============================================================
   BLOCO: components (labels, titles, buttons)
   ============================================================ */
.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #0a0a0a;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0a0a;
    box-shadow: 0 6px 30px rgba(200, 169, 98, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 169, 98, 0.5);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(200, 169, 98, 0.12);
    border: 1px solid rgba(200, 169, 98, 0.4);
    border-radius: 50px;
    padding: 0.45rem 1.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}
/* /BLOCO: components */

/* ============================================================
   BLOCO: navbar
   FUNCAO: Navegacao fixa com efeito blur ao rolar
   ============================================================ */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0 0;
    transition: var(--transition);
    overflow: visible;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.62));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    padding-left: 180px;
    min-height: 64px;
}

.nav-logo {
    position: absolute;
    left: max(20px, calc((100vw - 1180px) / 2));
    top: 10px;
    z-index: 50;
    display: block;
}

.nav-logo::before {
    content: "";
    position: absolute;
    inset: -18px;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 35%, transparent 62%),
        radial-gradient(ellipse at center, rgba(201,168,76,0.16) 0%, rgba(243,216,121,0.05) 48%, transparent 72%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}

.nav-logo::after {
    content: "";
    position: absolute;
    inset: -20px;
    background: conic-gradient(
        from 0deg,
        transparent, rgba(255,214,140,0.24) 4deg, transparent 12deg, transparent 30deg,
        rgba(255,196,90,0.16) 34deg, transparent 42deg, transparent 65deg,
        rgba(255,255,255,0.20) 69deg, transparent 76deg, transparent 100deg,
        rgba(255,140,40,0.14) 104deg, transparent 112deg, transparent 140deg,
        rgba(255,196,90,0.18) 144deg, transparent 152deg, transparent 180deg,
        rgba(255,255,255,0.14) 184deg, transparent 192deg, transparent 220deg,
        rgba(255,214,140,0.20) 224deg, transparent 232deg, transparent 255deg,
        rgba(255,140,40,0.16) 259deg, transparent 267deg, transparent 290deg,
        rgba(255,196,90,0.22) 294deg, transparent 302deg, transparent 330deg,
        rgba(255,255,255,0.16) 334deg, transparent 342deg, transparent 360deg
    );
    filter: blur(2px);
    mix-blend-mode: screen;
    opacity: 0.5;
    z-index: -2;
    pointer-events: none;
    animation: brand-rays-spin 22s linear infinite;
}

@keyframes brand-rays-spin {
    to { transform: rotate(360deg); }
}

.logo-img {
    height: 142px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.35))
        drop-shadow(0 0 22px rgba(243,216,121,0.35))
        drop-shadow(0 0 46px rgba(201,168,76,0.20));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(5, 5, 5, 0.46);
    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 18px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.84);
    border-radius: 50px;
    border: 1px solid transparent;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff6d6;
    background:
        linear-gradient(135deg, rgba(200, 169, 98, 0.30), rgba(255, 255, 255, 0.08)),
        rgba(200, 169, 98, 0.12);
    border-color: rgba(243, 216, 121, 0.38);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 24px rgba(200, 169, 98, 0.18);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link:focus-visible {
    outline: 2px solid rgba(243, 216, 121, 0.85);
    outline-offset: 3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff6d6;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* /BLOCO: navbar */

/* ============================================================
   BLOCO: hero
   FUNCAO: Banner principal com carrossel de fundo (Swiper)
   DEPENDE: Swiper 11 CDN
   ============================================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: 78px 0 58px;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-swiper .swiper-slide {
    position: relative;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.25) 35%,
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-message {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(24px, 5vw, 80px);
    max-width: 800px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-message::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13%;
    bottom: 9%;
    width: min(760px, 82vw);
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.18) 68%, transparent 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.28) 62%, transparent 100%);
    filter: blur(3px);
    pointer-events: none;
    z-index: 0;
}

.hero-message > * {
    position: relative;
    z-index: 1;
}

.hero-slide-active .hero-message {
    opacity: 1 !important;
    transform: translateX(0);
}

.swiper-slide-active .hero-message {
    opacity: 1 !important;
    transform: translateX(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background:
        linear-gradient(135deg, rgba(255, 235, 160, 0.34), rgba(200, 169, 98, 0.20)),
        rgba(8, 8, 8, 0.40);
    border: 2px solid rgba(255, 225, 142, 0.95);
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffe58f;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(255, 215, 116, 0.72);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.32),
        0 0 34px rgba(255, 214, 116, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffe58f;
    box-shadow:
        0 0 10px rgba(255, 229, 143, 0.95),
        0 0 22px rgba(255, 229, 143, 0.55);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    -webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.58);
    paint-order: stroke fill;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22));
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.78),
        0 6px 18px rgba(0, 0, 0, 0.96),
        0 0 18px rgba(255, 255, 255, 0.50),
        0 0 54px rgba(255, 246, 214, 0.25);
}

.hero-title span {
    color: #ffc83d;
    -webkit-text-fill-color: #ffc83d;
    -webkit-text-stroke: 0.45px rgba(255, 242, 178, 0.70);
    background: none;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.82),
        0 6px 18px rgba(0, 0, 0, 0.94),
        0 0 16px rgba(255, 216, 80, 0.94),
        0 0 44px rgba(255, 172, 36, 0.62),
        0 0 86px rgba(255, 200, 61, 0.28);
}

.hero-tagline {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #ffffff;
    -webkit-text-stroke: 0.18px rgba(255, 255, 255, 0.36);
    max-width: 550px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.16));
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.82),
        0 3px 12px rgba(0, 0, 0, 1),
        0 0 18px rgba(255, 255, 255, 0.34);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
/* /BLOCO: hero */

.hero-controls {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 14px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.36);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
    opacity: 0.84;
    transition: opacity 180ms ease, background 180ms ease;
}

.hero-controls:hover,
.hero-controls:focus-within {
    opacity: 1;
    background: rgba(10, 10, 10, 0.62);
}

.hero-control-btn,
.hero-dot {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 0.63rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.hero-control-btn:hover,
.hero-dot:hover,
.hero-dot.is-active {
    border-color: var(--accent);
    background: var(--gradient-accent);
    color: #0a0a0a;
    transform: translateY(-1px);
}

.hero-control-btn[aria-pressed="true"] {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-scroll {
    display: none;
}

.hero-scroll span {
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
/* /BLOCO: hero */

/* ============================================================
   BLOCO: animations
   ============================================================ */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-up:nth-child(2) { animation-delay: 0.15s; }
.animate-up:nth-child(3) { animation-delay: 0.3s; }
.animate-up:nth-child(4) { animation-delay: 0.45s; }
.animate-up:nth-child(5) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* /BLOCO: animations */

/* ============================================================
   BLOCO: sobre
   FUNCAO: Bio do palestrante com contadores animados
   ============================================================ */
.sobre {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sobre-img-wrapper {
    position: relative;
}

.sobre-img-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}

.sobre-img-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    z-index: -1;
    border-radius: 23px;
    background: linear-gradient(135deg, var(--accent), var(--gold-light, #E8C97A), var(--accent-dark, #9B7A2E), var(--accent-light, #e0c97a), var(--accent));
    background-size: 300% 300%;
    animation: motionBorder 5s ease infinite;
}

@keyframes motionBorder {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.sobre-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
    pointer-events: none;
}

.sobre-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sobre-img-wrapper:hover .sobre-img-frame img {
    transform: scale(1.06);
}

.sobre-img-wrapper:hover .sobre-img-frame {
    transform: translateY(-4px);
}

.about-badge-wrap {
    position: absolute;
    bottom: -0.8rem;
    right: -0.8rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark, #9B7A2E));
    padding: 1rem 1.2rem;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    color: #0a0a0a;
    box-shadow: 0 12px 30px rgba(200, 169, 98, 0.4);
    z-index: 2;
}

.about-badge-wrap .num {
    font-size: 2rem;
    line-height: 1;
    display: block;
    font-family: var(--font-display);
}

.about-badge-wrap .txt {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.sobre-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--w90, rgba(255, 255, 255, 0.9));
    line-height: 1.6;
}

.sobre-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.fact-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
}

.fact-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.fact-chip .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
/* /BLOCO: sobre */

/* ============================================================
   BLOCO: temas
   FUNCAO: Cards com temas de palestras disponiveis
   ============================================================ */
.temas {
    padding: 120px 0;
}

.temas-header {
    text-align: center;
    margin-bottom: 60px;
}

.temas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tema-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.tema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.tema-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(200, 169, 98, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tema-card:hover::before {
    transform: scaleX(1);
}

.tema-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 98, 0.1);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
}

.tema-card:hover .tema-icon {
    background: var(--accent);
    color: #0a0a0a;
    transform: scale(1.1);
}

.tema-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--w90, rgba(255, 255, 255, 0.9));
}

.tema-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
/* /BLOCO: temas */

/* ============================================================
   BLOCO: indicado
   FUNCAO: Situacoes comerciais em que a palestra resolve
   ============================================================ */
.indicado {
    padding: 110px 0;
    background:
        radial-gradient(ellipse at top left, rgba(200, 169, 98, 0.08), transparent 48%),
        var(--bg-secondary);
}

.indicado-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.indicado-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.indicado-card {
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    transition: var(--transition);
}

.indicado-card:hover {
    border-color: rgba(200, 169, 98, 0.28);
    background: rgba(200, 169, 98, 0.07);
    transform: translateY(-6px);
}

.indicado-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(200, 169, 98, 0.12);
    color: var(--accent);
    font-size: 1.15rem;
}

.indicado-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.indicado-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
/* /BLOCO: indicado */

/* ============================================================
   BLOCO: treinamentos
   FUNCAO: Formatos comerciais de palestras e treinamentos
   ============================================================ */
.treinamentos {
    padding: 120px 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(17, 17, 17, 0.98)),
        radial-gradient(ellipse at top right, rgba(200, 169, 98, 0.12), transparent 55%);
}

.treinamentos-header {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.treinamentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.treinamento-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    transition: var(--transition);
}

.treinamento-card:hover {
    border-color: rgba(200, 169, 98, 0.28);
    background: rgba(200, 169, 98, 0.07);
    transform: translateY(-6px);
}

.treinamento-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-bottom: 28px;
    background: rgba(200, 169, 98, 0.12);
    color: var(--accent);
    font-weight: 900;
}

.treinamento-card h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
}

.treinamento-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}
/* /BLOCO: treinamentos */

/* ============================================================
   BLOCO: depoimentos
   FUNCAO: Carrossel de depoimentos de clientes
   DEPENDE: Swiper 11 CDN
   ============================================================ */
.depoimentos {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 60px;
}

.depoimentos-swiper {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 20px 6px 60px;
    overflow: hidden;
}

.depoimentos-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    width: 100%;
}

.depoimento-card:hover {
    border-color: rgba(200, 169, 98, 0.2);
    transform: translateY(-4px);
}

.depoimento-stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.depoimento-texto {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 14px;
}

.depoimento-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.depoimento-autor strong {
    display: block;
    font-size: 0.95rem;
}

.depoimento-autor span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.depoimentos-swiper .swiper-pagination {
    bottom: 0 !important;
}

.depoimentos-swiper .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}
/* /BLOCO: depoimentos */

/* ============================================================
   BLOCO: galeria
   FUNCAO: Grid criativo de fotos de palestras
   ============================================================ */
.galeria {
    padding: 120px 0;
}

.galeria-header {
    text-align: center;
    margin-bottom: 60px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.galeria-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 10;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galeria-item:hover::after {
    opacity: 1;
}

/* Layout criativo - tamanhos variados */
.galeria-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.galeria-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.galeria-item:nth-child(3) { grid-column: span 4; grid-row: span 1; }
.galeria-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.galeria-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(6) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(7) { grid-column: span 6; grid-row: span 2; }
.galeria-item:nth-child(8) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(9) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(10) { grid-column: span 4; grid-row: span 2; }
.galeria-item:nth-child(11) { grid-column: span 4; grid-row: span 1; }
.galeria-item:nth-child(12) { grid-column: span 4; grid-row: span 1; }
.galeria-item:nth-child(13) { grid-column: span 3; grid-row: span 2; }
.galeria-item:nth-child(14) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(15) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(16) { grid-column: span 6; grid-row: span 1; }
.galeria-item:nth-child(17) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(18) { grid-column: span 3; grid-row: span 1; }
.galeria-item:nth-child(19) { grid-column: span 6; grid-row: span 2; }
/* /BLOCO: galeria */

/* ============================================================
   BLOCO: cta
   FUNCAO: Chamada para acao antes do contato
   ============================================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(200, 169, 98, 0.1) 0%, rgba(200, 169, 98, 0.02) 100%);
    border-top: 1px solid rgba(200, 169, 98, 0.15);
    border-bottom: 1px solid rgba(200, 169, 98, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 169, 98, 0.06) 0%, transparent 70%);
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
    background-size: 200% 200%;
    animation: motionBorder 5s ease infinite;
    opacity: 0.1;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-box .btn {
    position: relative;
}
/* /BLOCO: cta */

/* ============================================================
   BLOCO: cta-hero
   FUNCAO: Botoes CTA pos-hero
   ============================================================ */
.cta-hero {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
    background: var(--bg-primary);
    flex-wrap: wrap;
}

.cta-hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-hero .btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.cta-hero .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 98, 0.4);
}

.cta-hero .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-hero .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================================
   BLOCO: temas-cta
   FUNCAO: CTA pos-temas
   ============================================================ */
.temas-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(200, 169, 98, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 98, 0.15);
}

.temas-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.temas-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.temas-cta .btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 98, 0.4);
}

/* ============================================================
   BLOCO: depoimentos-cta
   FUNCAO: CTA pos-depoimentos
   ============================================================ */
.depoimentos-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.depoimentos-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.depoimentos-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.depoimentos-cta .btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 98, 0.4);
}

/* ============================================================
   BLOCO: contato
   FUNCAO: Formulario de contato + links diretos
   ============================================================ */
.contato {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-descricao {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contato-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contato-link-item:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 98, 0.05);
}

.contato-link-item i {
    font-size: 1.3rem;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.contato-link-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0b0b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: var(--text-muted);
}

.form-group select:valid {
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* /BLOCO: contato */

/* ============================================================
   BLOCO: footer
   FUNCAO: Rodape com logo, copyright e redes sociais
   ============================================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
}
/* /BLOCO: footer */

/* ============================================================
   BLOCO: whatsapp-float
   FUNCAO: Botao flutuante do WhatsApp
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}
/* /BLOCO: whatsapp-float */

/* ============================================================
   BLOCO: responsive
   ============================================================ */
@media (min-width: 768px) {
    /* Acessibilidade: reduzir animacoes para usuarios que preferem */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: .01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .01ms !important;
        }
    }
}

@media (max-width: 1024px) {
    .temas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .indicado-grid,
    .depoimentos-grid,
    .treinamentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 74px 0 54px;
    }

    .nav-container {
        min-height: 68px;
        padding-left: 92px;
        justify-content: flex-end;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        right: 16px;
        width: min(300px, calc(100vw - 32px));
        height: auto;
        max-height: calc(100dvh - 104px);
        overflow-y: auto;
        background:
            linear-gradient(145deg, rgba(26, 26, 26, 0.96), rgba(5, 5, 5, 0.94)),
            rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(243, 216, 121, 0.20);
        border-radius: 22px;
        box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.52),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -12px, 0) scale(0.96);
        transform-origin: top right;
        transition:
            opacity 0.24s ease,
            visibility 0.24s ease,
            transform 0.24s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.90);
    }

    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 62px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-img {
        height: 350px;
    }

    .sobre-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .temas-grid,
    .indicado-grid,
    .depoimentos-grid,
    .treinamentos-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .sobre-stats {
        gap: 32px;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.15rem, 8vw, 3.45rem);
    }

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 520px;
        gap: 8px;
    }

    .hero-metrics div {
        min-height: 58px;
        padding: 9px 10px;
    }

    .hero-metrics span {
        font-size: 0.62rem;
    }

    .hero-control-btn,
    .hero-dot {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 50px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .hero-content {
        padding-top: 18px;
    }

    .hero-badge {
        padding: 0.42rem 1rem;
        font-size: 0.64rem;
        letter-spacing: 1.4px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.9rem, 10vw, 2.75rem);
    }

    .hero-tagline {
        margin-bottom: 0.95rem;
    }

    .hero-metrics {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-controls {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 10px;
        width: min(calc(100% - 28px), 430px);
        margin: 0;
        justify-content: center;
        flex-wrap: wrap;
        padding: 5px;
        transform: translateX(-50%);
    }

    .hero-control-btn,
    .hero-dot {
        width: 28px;
        height: 28px;
        font-size: 0.64rem;
    }

    .sobre-stats {
        flex-direction: column;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* /BLOCO: responsive */

/* ============================================================
   BLOCO: preloader
   FUNCAO: Tela de carregamento inicial
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(200, 169, 98, 0.4));
    animation: preloaderPulse 1.5s ease infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    animation: preloaderBar 1.5s ease forwards;
}

@keyframes preloaderBar {
    to { width: 100%; }
}
/* /BLOCO: preloader */

/* ============================================================
   BLOCO: scroll-top
   FUNCAO: Botao flutuante voltar ao topo
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
    color: #0a0a0a;
    border-color: var(--accent);
    transform: translateY(-3px);
}
/* /BLOCO: scroll-top */

/* ============================================================
   BLOCO: lightbox
   FUNCAO: Visualizacao de imagens em tela cheia
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--accent);
    color: #0a0a0a;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: #0a0a0a;
}
/* /BLOCO: lightbox */

/* ============================================================
   BLOCO: video-section
   FUNCAO: Secao de video com placeholder
   ============================================================ */
.video-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 98, 0.05);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: 1rem;
}
/* /BLOCO: video-section */

/* ============================================================
   BLOCO: logos-section
   FUNCAO: Carousel infinito de logos de empresas
   ============================================================ */
.logos-section {
    padding: 80px 0;
    overflow: hidden;
}

.logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-track {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-slide {
    display: flex;
    gap: 3rem;
    animation: logosScroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    padding: 1.5rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.logo-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200, 169, 98, 0.05);
}

@keyframes logosScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* /BLOCO: logos-section */

/* ============================================================
   BLOCO: faq-section
   FUNCAO: Perguntas frequentes com details/summary
   ============================================================ */
.faq-section {
    padding: 120px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(200, 169, 98, 0.2);
}

.faq-item[open] {
    border-color: rgba(200, 169, 98, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
/* /BLOCO: faq-section */

/* ============================================================
   BLOCO: 3d-card
   FUNCAO: Efeito 3D tilt nos cards de tema
   ============================================================ */
.tema-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tema-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}
/* /BLOCO: 3d-card */

/* ============================================================
   BLOCO: refinamento-ui-v005
   FUNCAO: Polimento visual, responsivo e acessivel baseado na UI/UX Pro Max
   ============================================================ */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
    max-width: 100%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 7px 14px;
    border: 1px solid rgba(255, 225, 142, 0.22);
    border-radius: 999px;
    background: rgba(200, 169, 98, 0.075);
    color: #ffe58f;
    text-shadow: 0 0 18px rgba(255, 216, 107, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffe58f;
    box-shadow: 0 0 14px rgba(255, 229, 143, 0.76);
}

.section-title {
    color: #fffaf0;
    text-wrap: balance;
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.60),
        0 0 34px rgba(255, 255, 255, 0.06);
}

.section-intro,
.sobre-descricao,
.contato-descricao,
.tema-card p,
.indicado-card p,
.treinamento-card p,
.depoimento-texto,
.cta-box p {
    color: rgba(245, 245, 245, 0.76);
}

.btn {
    min-height: 48px;
    touch-action: manipulation;
}

.btn-primary,
.btn-gold {
    background:
        linear-gradient(135deg, #ffe58f 0%, #c8a962 44%, #9f7933 100%);
    color: #080808;
    border: 1px solid rgba(255, 235, 160, 0.55);
    box-shadow:
        0 12px 32px rgba(200, 169, 98, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-primary:hover,
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 42px rgba(200, 169, 98, 0.38),
        0 0 34px rgba(255, 216, 107, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.btn-outline:hover {
    background: rgba(200, 169, 98, 0.09);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(255, 229, 143, 0.92);
    outline-offset: 3px;
}

.tema-card,
.indicado-card,
.treinamento-card,
.depoimento-card,
.contato-link-item {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(15, 15, 15, 0.88);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tema-card::after,
.indicado-card::after,
.treinamento-card::after,
.depoimento-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 229, 143, 0.18), transparent 38%);
    transition: opacity 0.28s ease;
}

.tema-card:hover,
.indicado-card:hover,
.treinamento-card:hover,
.depoimento-card:hover,
.contato-link-item:hover {
    border-color: rgba(255, 229, 143, 0.34);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 229, 143, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tema-card:hover::after,
.indicado-card:hover::after,
.treinamento-card:hover::after,
.depoimento-card:hover::after {
    opacity: 1;
}

.tema-icon,
.indicado-card i,
.treinamento-card span,
.depoimento-avatar {
    box-shadow:
        0 0 0 1px rgba(255, 229, 143, 0.12),
        0 12px 28px rgba(200, 169, 98, 0.16);
}

.cta-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 229, 143, 0.14), transparent 42%),
        linear-gradient(135deg, rgba(200, 169, 98, 0.12) 0%, rgba(200, 169, 98, 0.018) 100%);
}

.cta-box {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(10, 10, 10, 0.92);
    border-color: rgba(255, 229, 143, 0.20);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.contato-form {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(10, 10, 10, 0.54);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 50px;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.11);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 229, 143, 0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 229, 143, 0.68);
    box-shadow:
        0 0 0 3px rgba(200, 169, 98, 0.22),
        0 12px 30px rgba(0, 0, 0, 0.20);
}

.footer {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(0, 0, 0, 0.42)),
        var(--bg-primary);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .sobre,
    .temas,
    .indicado,
    .treinamentos,
    .depoimentos,
    .galeria,
    .video-section,
    .logos-section,
    .faq-section,
    .cta-section,
    .contato {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .section-label {
        margin-left: auto;
        margin-right: auto;
    }

    .temas-header,
    .indicado-header,
    .treinamentos-header,
    .depoimentos-header,
    .video-header,
    .logos-header,
    .faq-header {
        text-align: center;
    }

    .hero-message::before {
        width: 100vw;
        top: 12%;
        bottom: 6%;
    }

    .contato-form {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .sobre,
    .temas,
    .indicado,
    .treinamentos,
    .depoimentos,
    .galeria,
    .video-section,
    .logos-section,
    .faq-section,
    .cta-section,
    .contato {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
    }

    .hero-controls {
        bottom: 14px;
        max-width: calc(100vw - 34px);
    }

    .whatsapp-float {
        right: 16px;
        bottom: 88px;
        width: 48px;
        height: 48px;
        font-size: 1.28rem;
        opacity: 0.92;
    }

    .cta-box {
        padding: 3rem 1.25rem;
    }
}
/* /BLOCO: refinamento-ui-v005 */
