html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../identidade_visual/Fontes/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nordique Pro';
    src: url('../identidade_visual/Fontes/nordique-pro-font/fontspring-demo-nordiquepro-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nordique Pro Bold';
    src: url('../identidade_visual/Fontes/nordique-pro-font/fontspring-demo-nordiquepro-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Custom scrollbar matching novaref.html */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF5A00;
}

/* Texture escura de alta performance */
.bg-dark-texture {
    background-color: #030303;
    background-image: 
        radial-gradient(circle at 50% 40%, rgba(255, 90, 0, 0.12) 0%, transparent 70%),
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    background-position: center;
}

/* Barra de Navegação Estilos */
.header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    border-color: rgba(255, 90, 0, 0.2) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

/* SplitType Word & Char Anim optimization */
#hero-title .word {
    display: inline-block;
    white-space: nowrap;
}

#hero-title .char {
    display: inline-block;
    will-change: filter, opacity;
}

/* Parallax Curtain Reveal */
#topo {
    z-index: 1;
}

#pain-points {
    position: relative;
    z-index: 10;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.8);
}

/* Infinite Marquee Animation for Social Proof Banner */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}



