

:root {
    --bg-dark: #0b0f19;
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    overflow-x: hidden;
}

/* HERO SECTION */
.hero-sectionn {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 0.8s ease;
    z-index: 1;
}

/* Overlay Escuro com Gradiente para dar profundidade cinematográfica */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.7) 50%, rgba(11, 15, 25, 0.4) 100%);
    z-index: 2;
}

.hero-containern {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
}

.hero-contentn {
    max-width: 700px;
    margin: 0 auto;       /* Centraliza o bloco na tela */
    text-align: center;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Centraliza todo o bloco de conteúdo do Hero */
.hero-content {
    max-width: 700px;
    margin: 0 auto;       /* Centraliza o bloco na tela */
    text-align: center;   /* Centraliza o título, tag e descrição */
}

/* Centraliza os botões na horizontal */
.hero-actionsn {
    display: flex;
    align-items: center;
    justify-content: center; /* Alinha os botões no centro */
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;      /* Garante o espaçamento correto */
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
}

/* BOTÃO PLAY DE VÍDEO DINÂMICO */
.btn-video-trigger {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    gap: 12px;
    padding: 8px;
    transition: opacity 0.3s ease;
}

.play-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito de Ondas/Pulso concêntrico */
.play-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulseWave 2s infinite;
    z-index: -1;
}

.play-icon-wrapper i {
    transform: translateX(2px); /* Ajuste óptico central do triângulo */
    transition: transform 0.3s ease;
}

.play-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Hover do Botão de Vídeo */
.btn-video-trigger:hover .play-icon-wrapper {
    background-color: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-video-trigger:hover .play-text {
    color: var(--primary);
}

/* LIGHTBOX MODAL (VÍDEO) */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    z-index: 1002;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-lightbox.active .lightbox-container {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    background-color: #000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ANIMAÇÕES */
@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-actionsn {
        gap: 1.5rem;
    }
    .hero-section {
        padding: 60px 16px;
    }
}