/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height para mobile */
    margin: 0;
    padding: 0;
}

/* Garantir que o loading seja sempre visível primeiro */
#initial-loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    background: linear-gradient(135deg, var(--dark-color), #0f0f23) !important;
    transition: all 0.5s ease-out;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

/* Garantir que o conteúdo principal fique escondido inicialmente */
#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Estilos para o botão Start */
#start-button-container {
    display: none;
    opacity: 0;
    transition: all 0.8s ease;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

#start-button-container.animate-pulse {
    animation: startButtonPulse 2s ease-in-out infinite;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    #start-button-container {
        bottom: 10% !important;
    }
    
    #loading-bar-container {
        bottom: 10% !important;
    }
    
    #start-button {
        max-width: 150px;
    }
}

/* Responsividade para telas grandes */
@media (min-width: 1200px) {
    #start-button-container {
        bottom: 30% !important;
    }
    
    #loading-bar-container {
        bottom: 38% !important;
    }
}

/* Responsividade para telas muito grandes */
@media (min-width: 1920px) {
    #start-button-container {
        bottom: 35% !important;
    }

    #loading-bar-container {
        bottom: 40% !important;
    }
}

#start-button {
    cursor: pointer;
    max-width: 200px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(67, 197, 141, 0.3));
}

#start-button:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(67, 197, 141, 0.5));
}

/* Estilos para a logo de loading */
#loading-logo {
    position: relative;
    transition: all 0.8s ease;
    max-width: 300px;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 60px; /* Espaçamento entre logo e barra */
}

/* Estilos para a barra de loading */
#loading-bar-container {
    transition: all 0.5s ease;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(19, 99, 25, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

#loading-bar-container > div {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(67, 197, 141), #19fa9a);
    border-radius: 2px;
    animation: loading 3s ease-out forwards;
}

/* Variáveis CSS */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #ffd23f;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --vh: 1vh; /* Fallback para browsers sem suporte a dvh */
}

/* Controles de música */
.music-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-icon {
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.music-icon:hover {
    transform: scale(1.1);
}

/* Container da barra de volume */
.music-bar-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-bar-image {
    width: 100%;
    height: auto;
    pointer-events: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Preenchimento visual da barra */
.volume-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 97%;
    height: 47%;
    background: linear-gradient(90deg, #43c58d, #19fa9a);
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 0 8px rgba(67, 197, 141, 0.6);
    transform-origin: right center;
    transform: translate(-50%, -50%) scaleX(0.2);
}

/* Controle de volume interativo */
.volume-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40%; /* Mesma altura do preenchimento */
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider de volume customizado */
.volume-slider {
    width: 100%;
    height: 100%;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    margin: 0;
    padding: 0;
}

/* Track do slider (invisível) */
.volume-slider::-webkit-slider-track {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 2px;
    border: none;
}

.volume-slider::-moz-range-track {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 2px;
    border: none;
}

/* Thumb do slider (bolinha) */
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #43c58d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    margin-top: 0; /* Remove o offset padrão */
    position: relative;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #43c58d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    margin-top: 0; /* Remove o offset padrão */
}

/* Hover effects para o thumb */
.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(67, 197, 141, 0.5), 0 0 0 4px rgba(67, 197, 141, 0.2);
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(67, 197, 141, 0.5), 0 0 0 4px rgba(67, 197, 141, 0.2);
}

/* Efeito visual na barra quando música está ativa */
.music-bar-container.music-playing .music-bar-image {
    filter: drop-shadow(0 0 8px rgba(67, 197, 141, 0.6));
}

/* Pulso sutil no preenchimento quando música está tocando */
.music-bar-container.music-playing .volume-fill {
    animation: volumePulse 2s ease-in-out infinite alternate;
}

@keyframes volumePulse {
    0% { 
        box-shadow: 0 0 8px rgba(67, 197, 141, 0.6);
    }
    100% { 
        box-shadow: 0 0 12px rgba(67, 197, 141, 0.8), 0 0 20px rgba(25, 250, 154, 0.3);
    }
}

/* Animação sutil para o controle de volume */
.volume-control {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Mostrar barra de volume no hover */
.music-controls:hover .music-bar-container {
    opacity: 1;
}

/* Mostrar barra de volume quando música está tocando (mobile) */
.music-bar-container.show-on-mobile {
    opacity: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: black;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3.8px solid white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-container {
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    position: relative;
}

.header-logo img {
    height: 105px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: 69px;
}

.header-logo img:hover {
    transform: scale(1.1);
}

/* Navegação */
.header-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    width: 120px;
    text-align: center;
    display: block;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Links disponíveis */
.nav-menu a.available {
    color: white;
}

/* Links em breve (desabilitados) */
.nav-menu a.coming-soon {
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    position: relative;
}

.nav-menu a.coming-soon:hover {
    color: rgba(255, 255, 255, 0.4);
    background: none;
    transform: none;
}

.nav-menu a.coming-soon:hover::after {
    width: 0;
}

/* Tag "Soon" */
.soon-tag {
    position: absolute;
    top: -8px;
    right: -15px;
    background: #318dff;
    color: white;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 15;
}

/* Redes sociais */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}

.social-links a:hover {
    transform: translateY(-3px) rotate(5deg) scale(1.1);
}

/* Seção Hero */
.hero-section {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height para mobile */
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #1a1a2e;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/Background.gif');
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
}

/* Fallback para garantir que a imagem cubra pelo menos a altura */
@media (max-height: 600px) {
    .hero-background {
        background-size: auto 100%;
    }
}

.hero-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Litepaper announcement */
.litepaper-announcement {
    text-align: center;
}

.litepaper-announcement img {
    width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    margin-bottom: 10px;
    animation: litepaperFloat 2s ease-in-out infinite;
}

/* Ícones sociais */
.social-icons {
    display: flex;
    gap: 68px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    transition: transform 0.3s ease;
    display: block;
}

.social-icon img {
    width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Logo principal */
.main-logo {
    text-align: center;
}

.main-logo img {
    width: 100%;
    height: auto;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

/* Coming soon banner */
.coming-soon-banner {
    text-align: center;
}

.coming-soon-banner img {
    width: 100%;
}

/* Animações */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes litepaperFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes litepaperFloatMobile {
    0%, 100% {
        transform: scale(0.6) translateY(0px);
    }
    50% {
        transform: scale(0.6) translateY(-12px);
    }
}

/* Rotação automática implementada via JavaScript - CSS legado removido */

/* Aviso para virar celular para portrait */
#rotation-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color), #0f0f23);
    z-index: 999998;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
}

/* Aviso específico para landscape no litepaper */
#landscape-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color), #0f0f23);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Garantir altura dinâmica no mobile */
    body {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        height: 100dvh;
        min-height: -webkit-fill-available; /* Safari iOS */
    }
    
    .hero-section {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        height: 100dvh;
        min-height: -webkit-fill-available; /* Safari iOS */
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    /* Background específico para mobile - SEM background-position */
    .hero-background {
        background-image: url('assets/Background_mobile.gif') !important;
        background-size: cover !important;
        background-position: none !important;
        background-repeat: no-repeat !important;
        height: 100%;
        min-height: inherit;
    }
    
    /* Camada separada para motinhas Elements.gif - apenas mobile */
    .mobile-elements {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%; /* Mantém 30% que funciona no DevTools */
        min-height: 150px; /* Altura mínima para garantir visibilidade */
        background-image: url('assets/Elements.gif');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 8; /* Acima do background, abaixo do conteúdo */
        display: none; /* Escondido por padrão, JS controla */
    }
    
    .music-controls {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .music-icon {
        width: 55px;
        height: 55px;
    }
    
    .music-bar-image {
        width: 100%;
    }
    
    /* Volume slider menor para mobile */
    .volume-slider::-webkit-slider-thumb {
        width: 8px;
        height: 8px;
    }
    
    .volume-slider::-moz-range-thumb {
        width: 8px;
        height: 8px;
    }
    
    /* Volume control em mobile */
    .volume-control {
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        gap: 0px;
    }

    /* Imagens de texto com scale para manter qualidade */
    .litepaper-announcement img {
        width: auto;
        transform: scale(0.6);
        animation: litepaperFloatMobile 2s ease-in-out infinite;
    }

    .coming-soon-banner img {
        width: auto;
        transform: scale(0.6);
    }

    .litepaper-announcement img {
        margin-bottom: 0px;
    }

    .social-icon img {
        width: 60px;
        height: 60px;
    }

    .main-logo img {
        max-width: 250px;
        margin-bottom: 15px;
    }

    .social-icons {
        margin-bottom: 10px;
    }

    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
    
    .header-nav {
        position: static;
        transform: none;
        margin: 10px 0;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 8px 0;
        width: 100px;
        letter-spacing: 1.2px;
        font-weight: 700;
    }
    
    .soon-tag {
        font-size: 7px;
        padding: 1px 4px;
        top: -6px;
        right: -12px;
    }

    .header-logo img {
        height: 45px;
        margin-top: 10px;
    }
    
    .social-links {
        gap: 15px;
        justify-content: center;
        margin-top: 0;
    }
    
    .hero-section {
        height: calc(100vh);
    }
}


/* ==========================================
   AJUSTES PARA MONITORES DE ALTA RESOLUÇÃO
   ========================================== */

/* Para monitores QHD (2560x1440) e superiores */
@media (min-width: 1921px) {
    /* Background otimizado para telas grandes */
    .hero-background {
        background-size: cover;
        background-position: center bottom;
        min-height: 100vh;
        background-repeat: no-repeat;
    }
    
    /* Escalar elementos proporcionalmente */
    .hero-content {
        top: 45%;
        transform: translate(-50%, -50%) scale(1.05);
        transform-origin: center;
        max-width: 1200px;
    }
    
    /* Reduzir tamanho das imagens para 80% */
    .hero-content img {
        transform: scale(0.8);
    }
    
    /* Ajustar especificamente os ícones sociais */
    .social-icons img,
    .litepaper-announcement img,
    .main-logo img,
    .coming-soon-banner img {
        transform: scale(0.8);
    }
    
    /* Ajustar controles de música */
    .music-controls {
        top: 30px;
        right: 30px;
        gap: 15px;
        transform: scale(1.1);
    }
    
    /* Controles de música ajustados para QHD+ */
    .music-icon {
        width: 50px;
    }
    
    .music-bar-container {
        width: 165px;
    }
    
    /* Header ajustado */
    .header-container {
        padding: 0 120px;
        height: 95px;
    }
    
    .header-logo img {
        height: 120px;
        margin-top: 80px;
    }
    
    .nav-menu {
        gap: 50px;
    }
    
    .nav-menu a {
        font-size: 22px;
        width: 140px;
        letter-spacing: 1.8px;
    }
    
    .social-links {
        gap: 20px;
        transform: scale(1.05);
    }
    
    /* Garantir altura adequada */
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
}

/* Para monitores 4K (3840x2160) e ultrawide */
@media (min-width: 2560px) {
    /* Background ainda mais otimizado */
    .hero-background {
        background-size: cover;
        background-position: center bottom;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
    
    /* Escalar ainda mais os elementos */
    .hero-content {
        top: 42%;
        transform: translate(-50%, -50%) scale(1.15);
        max-width: 1400px;
    }
    
    /* Reduzir tamanho das imagens para 80% */
    .hero-content img {
        transform: scale(0.8);
    }
    
    /* Ajustar especificamente os ícones sociais */
    .social-icons img,
    .litepaper-announcement img,
    .main-logo img,
    .coming-soon-banner img {
        transform: scale(0.8);
    }
    
    /* Controles de música maiores */
    .music-controls {
        top: 40px;
        right: 40px;
        gap: 20px;
        transform: scale(1.25);
    }
    
    /* Controles de música ajustados para 4K */
    .music-icon {
        width: 55px;
    }
    
    .music-bar-container {
        width: 180px;
    }
    
    /* Header para 4K */
    .header-container {
        padding: 0 160px;
        height: 110px;
    }
    
    .header-logo img {
        height: 140px;
        margin-top: 90px;
    }
    
    .nav-menu {
        gap: 60px;
    }
    
    .nav-menu a {
        font-size: 26px;
        width: 160px;
        letter-spacing: 2px;
    }
    
    .soon-tag {
        font-size: 10px;
        padding: 3px 8px;
        top: -10px;
        right: -18px;
    }
    
    .social-links {
        gap: 25px;
        transform: scale(1.15);
    }
    
    /* Garantir altura adequada para 4K */
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
}

/* Para monitores ultrawide extremos (acima de 3440px width) */
@media (min-width: 3441px) {
    /* Centralizar melhor o conteúdo */
    .hero-content {
        transform: translate(-50%, -50%) scale(1.3);
        max-width: 1600px;
    }
    
    /* Reduzir tamanho das imagens para 80% */
    .hero-content img {
        transform: scale(0.8);
    }
    
    /* Ajustar especificamente os ícones sociais */
    .social-icons img,
    .litepaper-announcement img,
    .main-logo img,
    .coming-soon-banner img {
        transform: scale(0.8);
    }
    
    .music-controls {
        transform: scale(1.4);
        top: 50px;
        right: 50px;
    }
    
    /* Controles de música ajustados para ultrawide */
    .music-icon {
        width: 60px;
    }
    
    .music-bar-container {
        width: 200px;
    }
    
    .header-container {
        padding: 0 200px;
        height: 130px;
    }
    
    .header-logo img {
        height: 160px;
        margin-top: 100px;
    }
    
    .nav-menu a {
        font-size: 30px;
        width: 180px;
        letter-spacing: 2.2px;
    }
    
    .social-links {
        transform: scale(1.3);
    }
    
    /* Garantir altura adequada para ultrawide */
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
}

/* Ajustes específicos para o sistema de slides em telas grandes */
@media (min-width: 1921px) {
    #litepaper-presentation {
        background: #000;
    }
    
    #close-button {
        top: 30px;
        right: 30px;
    }
    
    /* Mobile: ajustar posição do botão fechar */
    @media (max-width: 768px) {
        #litepaper-presentation #close-button {
            right: 10px !important;
            top: 8px !important;
        }
    }
    
    #navigation-overlay .slide-indicator {
        width: 12px;
        height: 12px;
    }
    
    #prev-arrow, #next-arrow {
        width: auto;
        height: 45px;
    }
}

/* Regras para Slides Compostos */
.composite-slide-container {
    display: flex;
    position: relative; /* Essencial para o posicionamento dos overlays */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
    border-radius: 10px;
    
    /* Aplicando a imagem de fundo diretamente aqui */
    background-image: url('assets/litepaper/Background_2_9.gif');
    background-size: cover;
    background-position: center;
}

.composite-content,
.composite-elements {
    width: 100%;
    height: 100%;
}

.composite-content {
    object-fit: contain;
    z-index: 2;
    position: relative; /* O conteúdo base fica no fluxo normal */
}

/* Nova regra para os conteúdos extras */
.composite-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3; /* Garante que fique sobre o conteúdo base */
}

/* Animação e estilo para o extra do slide 5 */
.pag-5-extra-animation {
    width: 24% !important; /* Força a largura */
    left: 50%; /* Inicia o posicionamento horizontal */
    transform: translate(-50%, 0); /* Centraliza o elemento */
    animation: float-up-down 2s infinite;
}

@keyframes float-up-down {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 30px); /* Sobe 30px */
    }
}

.composite-elements {
    margin-top: -50%; /* Sobrepõe os elementos sobre o conteúdo */
    object-fit: contain;
    object-position: bottom left;
    z-index: 4; /* Z-index mais alto para ficar sobre tudo */
    width: 46%;
    margin-right: 54%;
}

/* Estilos para o Slide Final (Página 10) - Posicionamento Absoluto Preciso */
.final-slide-container {
    position: relative;
    height: 100%;
    aspect-ratio: 1920 / 1080;
    max-width: 100%;
    max-height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Regras de posicionamento para cada elemento INDIVIDUAL */
.visit-socials-text,
.final-buttons-container,
.final-logo,
.coming-soon-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes text-float {
    0%, 100% {
        transform: translate(-50%, 0px);
    }
    50% {
        transform: translate(-50%, -15px);
    }
}

.visit-socials-text {
    top: 22%;
    width: 40%;
    animation: text-float 2s ease-in-out infinite;
}

.final-buttons-container {
    top: 32%;
    display: flex;
    justify-content: center;
    gap: 4%; /* Espaço entre os botões */
    width: 100%;
    margin-bottom: 10%;
}

.final-buttons-container .social-icon img {
    max-width: 100%;
    height: auto;
}

.final-buttons-container .social-icon {
    width: 4.5%;
    height: auto;
}

.final-logo {
    top: 50%;
    transform: translate(-50%, -50%); /* Centraliza perfeitamente */
    width: 18%;
    margin-top: 2%;
}

.coming-soon-text {
    bottom: 28%;
    width: 30%;
}
