:root {
    --primary: #FF0021;
    --secondary: #FFB000;
    --bg: #050505;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #6b6b6b;
    border-radius: 20px;
    border: 2px solid white;
    transition: all 1s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #043286;
    transition: 1s;
}

#video-wrapper {
    position: relative;
    width: 100%;
    margin-top: -200px;
    overflow: visible;
}

#video-container {
    width: 100%;
    height: 100vh;
    /* O container ocupa a tela cheia */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Fundo preto para o vídeo */
}

#video-bg {
    width: 85%;
    height: 80%;
    padding: 10px;
    background-color: white;
    border-radius: 40px;
    border: none;
    display: block;
    object-fit: cover;
}

#unmute-btn {
    position: absolute;
    z-index: 999;
    background-color: rgba(147, 0, 0, 0.9);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 20px 30PX;
    border: 2px solid rgb(137, 0, 0);
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    animation: fadeIn 2s infinite ease-in-out;
}

#unmute-btn:hover {
    
    border: 2px solid rgb(255, 189, 189);
    transform: scale(1.1);
}

/* Animação de Pulso Suave */
@keyframes fadeIn {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 15px 35px rgba(176, 30, 35, 0.2); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }
}




#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-title {
    font-family: 'Syncopate', sans-serif;
    line-height: 0.9;
    color: white;
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    background: linear-gradient(270deg, #2c002c 10%, #b01e23 50%, #1a4593 90%);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
    top: 20px;
    left: 15%;
    width: 70%;
    border-radius: 9999px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}


.btn-magnetic {
    position: relative;
    background: var(--primary);
    padding: 1.5rem 3rem;
    border-radius: 100px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-magnetic:hover {
    color: black;
    background: var(--secondary);
}

.section-padding {
    padding: 10rem 2rem;
}


/* ============================================= */
/* CSS ESPECÍFICO PARA A SEÇÃO DE DOR & EPIFANIA */
/* ============================================= */

/* Customizações para a Seção de História */

#story-section .text-outline {
    -webkit-text-stroke: 2px #0D3070;
    color: transparent;
    transition: all 0.5s ease;
}

#story-section .text-outline:hover {
    color: #0D3070;
    -webkit-text-stroke: 2px transparent;
}

/* Garante que o Montserrat seja aplicado */
#story-section h3,
#story-section p,
#story-section span {
    font-family: 'Montserrat', sans-serif;
}

/* Animação de entrada do JS */
.show-element {
    opacity: 1 !important;
}

/* Mobile: Ajustando a troca de conteúdo que você pediu */
@media (max-width: 480px) {
    #story-section {
        padding-top: 50px;
    }

    #story-section h3 {
        font-size: 42px !important;
        line-height: 1 !important;
    }

    #problem-box {
        margin-bottom: 40px;
    }
}

/* Pulso suave que remete a um sinal de radar */
@keyframes ping-slow {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.animate-ping-slow {
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Bounce customizado mais seco e tecnológico */
@keyframes bounce-custom {

    0%,
    100% {
        transform: translate(-50%, 0) rotate(45deg);
    }

    50% {
        transform: translate(-50%, 10px) rotate(45deg);
    }
}

.animate-bounce-custom {
    animation: bounce-custom 1.5s ease-in-out infinite;
}

/* Ajuste para o texto não sumir no fundo branco */
#story-section span {
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}





.marquee {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    background: var(--primary);
    color: rgb(44, 44, 44);
    padding: 1rem 0;
    font-weight: 900;
    text-transform: uppercase;
}

#graph-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

@keyframes pulse-red {
    from {
        text-shadow: 0 0 10px rgba(176, 30, 35, 0.4);
    }

    to {
        text-shadow: 0 0 30px rgba(176, 30, 35, 0.8);
    }
}


.stats-wrapper {
    position: relative;
    background: #ffffff;
    margin-top: -200px;
    clip-path: ellipse(150% 100% at 50% 100%);
    overflow: hidden;

}



#stats-pin-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #ffffff;
}

.bg-graph-container {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 700px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

#main-bg-path {
    stroke: var(--primary);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3));
}

#graph-fill-area {
    mix-blend-mode: multiply;
}

.horizontal-scroll-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.stat-card-finance {
    opacity: 0;
    transform: translateY(50px);
}

.stat-card-finance:hover {
    transform: scale(1.2);
}

.stat-card-finance::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card-finance:hover::before {
    opacity: 1;
}

.stat-card-finance h4 {
    margin-top: 1rem;
    letter-spacing: -2px;
    transition: color 0.3s;
}

.stat-card-finance p.text-gray-500 {
    transition: color 0.3s;
}

.stat-card-finance:hover p.text-gray-500 {
    color: rgba(61, 61, 61, 0.8);
}


#beneficios {
    color: black;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(49, 49, 49, 0.637);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #FFB000;
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(176, 166, 30, 0.15);
}

/* Icon Box minimalista */
.icon-box {
    width: 50px;
    height: 50px;
    background: transparent;
    color: #b0a11e;
    margin-bottom: 2.5rem;
    transition: transform 0.5s ease;
}

.benefit-card:hover .icon-box {
    transform: scale(1.2) rotate(5deg);
}


.benefit-card .dor {
    color: rgb(68, 68, 68);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.benefit-card .solucao {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.benefit-card .resultado {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: auto;
    /* Joga o texto para baixo */
}

/* Detalhe: Linha de progresso no hover */
.benefit-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #FFB000;
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.benefit-card:hover::after {
    width: 80%;
}

#beneficios .text-gray-400 {
    color: #b01e23;
    font-weight: bold;
}

#beneficios .grid {
    position: relative;
}



#ray-grad stop {
    stop-color: #b01e23;
    animation: rayGlow 1s infinite alternate;
}

@keyframes rayGlow {
    from {
        stop-color: #b01e23;
    }

    to {
        stop-color: #ff0000;
    }
}

#ray-real-fill {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 1px;
}

@keyframes scanX {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes scanXGlow {
    0% {
        left: -10%;
    }

    100% {
        left: 100%;
    }
}

.animate-scan-x {
    animation: scanX 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.animate-scan-x-glow {
    animation: scanXGlow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}



@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 4s ease-in-out infinite;
}

.testimonial-card-white {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 2.5rem;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-white:hover {
    transform: translateY(-12px);
    border-color: #b01e23;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: #ebebeb;
    font-family: serif;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b01e23;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card-white:hover::before {
    transform: scaleX(1);
}

.orbit-slot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -25px;
    margin-left: -25px;
}

.orbit-icon-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0PX 0px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.orbit-icon-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.orbit-icon-inner:hover {
    transform: scale(1.2);
    border-color: #b01e23;
    box-shadow: 0 0 15px rgba(176, 30, 35, 0.2);
}

#textCanais {
    display: none;
}

@keyframes orbit-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-orbit-slow {
    animation: orbit-slow 40s linear infinite;
}

.animate-orbit-slow:hover {
    animation-play-state: paused;
}

@keyframes scrollX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll-x {
    display: flex;
    width: max-content;
    animation: scrollX 30s linear infinite;
}

/* Pausa o scroll ao passar o mouse */
.group:hover .animate-scroll-x {
    animation-play-state: paused;
}

/* Estilização extra para garantir que os logos não distorçam */
.animate-scroll-x img {
    flex-shrink: 0;
    max-width: none;
}

.arrow-infinite {
    display: block;
    margin-top: 0px;
    animation: arrowScroll 2s infinite;
    opacity: 0;
}

.arrow-1 {
    animation-delay: 0s;
}

.arrow-2 {
    animation-delay: 0.2s;
}

.arrow-3 {
    animation-delay: 0.4s;
}

@keyframes arrowScroll {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}


/* --- RESPONSIVIDADE IM3X --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px !important;
    }

    .stats-wrapper h2 {
        font-size: 60px !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 768px) {

    html,
    body {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    section {
        height: auto !important;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 60px !important;
        text-align: center;
        margin-top: 20%;
        line-height: 1 !important;
    }

    #sub-title {
        font-size: 10px !important;
        letter-spacing: 0.3em !important;
        text-align: center;
    }

    section .grid {
        max-width: 100% !important;
        gap: 40px !important;
        display: flex;
        height: 150%;
        flex-direction: column;
    }

    #targets {
        visibility: hidden;
        margin-top: -30%;
    }

    .dashboard {
        max-height: 100px;
        margin-top: 20px !important;
        visibility: hidden;
    }

    .dashboard span,
    .dashboard h2 {
        color: #050505;
    }


    .dashboard .grid-cols-12 {
        display: flex;
        flex-direction: column;
    }

    .dashboard .col-span-4,
    .dashboard .col-span-8 {
        width: 100%;
    }

    #scroll-indicator {
        visibility: hidden;
    }

    .stats-wrapper h2 {
        font-size: 40px !important;
        line-height: 1 !important;
        text-align: center;
        margin-top: -100px !important;
    }

    .horizontal-scroll-container {
        display: flex;
        flex-direction: column !important;
        gap: 70px;
        padding: 20px;
    }

    .stat-card-finance {
        min-width: 100% !important;
        text-align: center;

    }

    .stat-card-finance h4 {
        font-size: 40px !important;
        text-align: center;
    }

    .stat-card-finance p {
        width: 50%;
        margin-left: 25%;
    }

    .benefit-card {
        margin-left: -40px;
    }

    #beneficios {
        margin-top: -170px;
    }

    #beneficios h3 {
        font-size: 32px !important;
    }

    .absolute.left-24.top-0 {
        display: none;
    }

    .lg\:flex-row {
        flex-direction: column !important;
    }

    #canais h3 {
        line-height: 70px;
        text-align: center;
    }

    #canais p {
        text-align: justify;
        width: 100%;
        margin-left: 10%;
    }

    #imagemSystem {
        margin: -200px;
        visibility: hidden;
    }

    #titleDuvida {
        visibility: hidden;
        margin: -200px;
    }

    .faq-item {
        width: 80%;
        margin-left: 10%;
    }


    .animate-scroll-x {
        animation-duration: 20s !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px !important;
        padding-top: 200px;
    }

    .dashboard {
        visibility: hidden;
    }

    .glass-nav.scrolled {
        top: 0px;
        left: 0%;
        width: 100%;
        border-radius: 0px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    }

    .bg-graph-container {
        visibility: hidden;
    }

    .stats-wrapper {
        position: relative;
        background: #ffffff;
        margin-bottom: -100px;
        margin-top: 50px;
        clip-path: none;
        overflow: hidden;

    }

    #orbitIcons {
        display: none;
    }

    #textCanais {
        display: block;
        text-align: justify;
        width: 100%;
        margin-left: 0%;
    }

    .glass-nav button {
        padding: 8px 16px !important;
        font-size: 10px !important;
    }


    #titleCanal {
        margin-top: -150px;
        font-size: 20px;
    }



    #titlePlataform {
        font-size: 30px;
    }

    .btnComprar {
        font-size: 15px;
    }

    .reveal-y h3 {
        font-size: 50px;
        line-height: 40px;
    }
}



@media (min-width: 768px) and (max-width: 1680px) {
    .dashboard {
        visibility: hidden;
    }

    .hero-title,
    .hero-sub {
        text-align: center;
        width: 80vw;
        z-index: 10000;
    }

    .bg-graph-container {
        visibility: hidden;
    }

    #raio {
        visibility: hidden;
    }

}