@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
/* --- Variáveis Globais e Reset --- */
:root {
    --bg-dark: #031B2E; /* Um azul/verde muito escuro */
    --ui-dark: #031B2E; /* Um pouco mais claro para caixas */
    --accent-green: #b8ff3c; /* Verde limão brilhante */
    --text-light: #f0f0f0;
    --text-medium: #a0b0b8;
    --text-dark: #0a1a1f;
    --font-main: 'Inter', sans-serif; /* Use uma fonte moderna como Inter ou Poppins se preferir */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

svg.vertical_line_animation {
    position: absolute;
    right: 0;
    z-index: 1;
    margin-right: 10px;
}

#scroll-line {
    position: absolute;
    right: 0;
    margin-right: 14px;
    top: 0;
    z-index: 1;
    transform-origin: center center;
    transform: scale(2.407);
}

#marker.following-curve {
    transition: none !important;
}


/* Classe que o JS vai adicionar */
.cta-button.active-pulse {
    /* Brilho constante no botão */
background-color: #8AF336; 
    color: #000;
    
    /* Borda brilhante */
    border-color: #fff;
    box-shadow: 0 0 20px rgba(138, 243, 54, 1);
}

.cta-button {
    position: relative; /* Necessário para o ::after posicionar corretamente */
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible !important;
    
}

.line-active path {
    animation: linePulseEffect 0.8s infinite alternate ease-in-out;
}

@keyframes linePulseEffect {
    0% {
        stroke-width: 1;
        filter: drop-shadow(0 0 0 rgba(138, 243, 54, 0));
        opacity: 0.5;
    }
    100% {
        stroke-width: 3; /* Engrossa a linha */
        filter: drop-shadow(0 0 6px rgba(138, 243, 54, 1)); /* Brilho Neon Vertical */
        opacity: 1;
    }
}

.cta-button.active-pulse::after {
content: "";
    position: absolute;
    
    /* MUDANÇA CRUCIAL: Centraliza o elemento no meio do botão */
    /* top: 50%;
    left: 50%; */
    /* O transform aqui garante o centro exato e será mantido na animação */
    /* transform: translate(-50%, -50%); */
    
    /* Começa como um círculo perfeito */
    border-radius: inherit;
    
    /* Configuração visual da linha */
    border: 2px solid rgba(138, 243, 54, 1);
    background: transparent;
    
    /* Joga para trás do botão */
    z-index: -1;
    /* Garante que não interfira no clique */
    pointer-events: none;
    
    /* A Animação Contínua */
    animation: buttonRadarWave 1.5s infinite ease-out;
}

@keyframes buttonRadarWave {
    0% {
        /* Começa colado nas bordas do botão */
        top: 0; 
        left: 0; 
        right: 0; 
        bottom: 0;
        opacity: 1;
        border-width: 2px;
    }
    100% {
        /* Expande 30px para fora em todas as direções */
        /* Aumente este valor se quiser a onda maior */
        top: -30px; 
        left: -30px; 
        right: -30px; 
        bottom: -30px;
        
        /* Fica transparente */
        opacity: 0;
        border-width: 0px;
    }
}

.connector-wrapper {
    position: absolute;
    top: 346px;
    width: max-content;
    height: 142px;
    overflow: hidden !important;
    left: 142px;
    pointer-events: none;
    z-index: 0;
    
}

#connector-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.final-button.active {
    box-shadow: 0 0 20px rgba(138, 243, 54, 0.6);
    transition: box-shadow 0.3s ease;
}

#marker {
    position: fixed;
    right: 0;
    margin-right: 2px;
    top: 50%; 
    z-index: 10;
    
    /* Ajuste fino para centralizar a própria altura da bolinha */
    margin-top: -13px; /* Metade da altura (26px / 2) */
    
    /* Começa no centro (0px de deslocamento) */
    transform: translateY(0px);
    
    /* Transição suave para voltar ao centro quando soltar */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Quando livre: segue o scroll rápido e linear */
    /* transition: transform 0.1s linear;  */
    
    /* Garante que o centro do elemento seja o ponto de referência */
    /* transform-origin: center center; */
}

/* --- ESTADO TRAVADO (O Efeito "Sugar") --- */
#marker.locked {
    transition: none;
    /* Aqui está a mágica do "sugar". 
       A curva backOut (1.5) faz ele ir rápido e dar um leve "tranco" de encaixe.
    */
    /* transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
}

#marker.locked svg {
    /* Brilho verde quando trava */
    filter: drop-shadow(0 0 8px rgba(138, 243, 54, 0.8));
    transition: filter 0.3s ease;
}

#marker.radar::before,
#marker.radar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    /* Começa do tamanho da bolinha */
    width: 26px;
    height: 26px;
    border-radius: 50%;
    
    border: 2px solid rgba(138, 243, 54, 1);
    border-left-color: transparent;
    border-right-color: transparent;
    
    /* Centraliza e corrige o posicionamento */
    transform: translate(-50%, -50%);
    
    /* Garante que o clique não pegue na onda */
    pointer-events: none;
    
    /* Joga para trás da bolinha principal */
    z-index: -1;
    
    opacity: 0; /* Começa invisível */
}

#marker.radar::after {
    animation: radarWaveAction 2s linear infinite;
}

#marker.radar::before {
    animation: radarWaveAction 2s linear infinite;
    animation-delay: 1s; /* Delay de metade do tempo total */
}

@keyframes radarWaveAction {
    0% {
        width: 26px; 
        height: 26px;
        opacity: 1;
        border-width: 2px;
    }
    100% {
        /* Expande muito */
        width: 120px; 
        height: 120px;
        
        /* Fica totalmente transparente no final */
        opacity: 0;
        
        /* A borda fica fina conforme expande */
        border-width: 0px; 
    }
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* --- ANIMAÇÕES DE SCROLL (BASE) --- */
/* Estado inicial invisível para elementos animados */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px); /* Começa 30px para baixo */
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
                transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* Estado quando entra na tela (Classe adicionada pelo JS) */
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.text-decoration-none{
    text-decoration: none !important;
}

/* --- EFEITO 1: UNDERLINE QUE CRESCE --- */
.color-green-underline {
    position: relative;
    display: inline-block;
}

/* A linha verde começa com largura 0 */
.color-green-underline::after {
    content: '';
    position: absolute;
    bottom: 0; /* Ajuste conforme a altura da sua fonte */
    left: 0;
    width: 0%; /* Começa invisível */
    height: 3px; /* Espessura */
    background-color: #8AF336;
    transition: width 1s ease-out;
    transition-delay: 0.5s; /* Espera o texto aparecer para riscar */
}

/* Quando o pai (h1) entra na tela, a linha cresce */
.hero-title-h1.in-view .color-green-underline::after {
    width: 100%;
}

/* --- EFEITO 2: DELAY EM CASCATA (STAGGER) --- */
/* Para os itens aparecerem um de cada vez */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Efeito especial para os ícones (Pequeno Zoom) */
.hero-sub div.in-view img {
    animation: icon-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes icon-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/* --- EFEITO GLITCH (Para a palavra "Atacada") --- */
.glitch-text {
    position: relative;
    color: #8AF336; /* Verde Neon */
    display: inline-block;
}

/* Cria cópias do texto para simular o erro */
.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #031B2E; /* Mesma cor do fundo para esconder o original */
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1; /* Sombra Rosa */
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9; /* Sombra Ciano */
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
    animation-delay: 2s; /* Descompasso */
}

@keyframes glitch-anim {
    0% { clip: rect(12px, 9999px, 56px, 0); }
    5% { clip: rect(80px, 9999px, 12px, 0); }
    10% { clip: rect(35px, 9999px, 98px, 0); }
    15% { clip: rect(62px, 9999px, 24px, 0); }
    20% { clip: rect(4px, 9999px, 83px, 0); }
    100% { clip: rect(0, 0, 0, 0); } /* Fica parado a maior parte do tempo */
}

/* --- CARDS MODERNOS (Glassmorphism + Hover) --- */
.why-veloster-item {
    background: rgba(3, 27, 46, 0.4); 
    border: 1px solid rgba(138, 243, 54, 0.1) !important; 
    backdrop-filter: blur(10px) !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
    opacity: 0 !important; 
    transform: translateY(40px) !important;
}

/* Estado ao entrar na tela (JS adiciona .in-view) */
.why-veloster-item.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hover Cyberpunk */
.why-veloster-item:hover {
    border-color: #8AF336 !important;
    transform: translateY(-10px) scale(1.02) !important; /* Sobe e cresce levemente */
    box-shadow: 0 15px 40px rgba(138, 243, 54, 0.15) !important; /* Brilho verde */
}

/* Delays para os cards entrarem em escadinha */
.why-veloster-item:nth-child(1) { transition-delay: 0.1s !important; }
.why-veloster-item:nth-child(2) { transition-delay: 0.2s !important; }
.why-veloster-item:nth-child(3) { transition-delay: 0.3s !important; }
.why-veloster-item:nth-child(4) { transition-delay: 0.4s !important; }

.padding-top-50{
    /* padding-top: 50px; */
}

.hero-content {
    z-index: 2;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* overflow: hidden; */
    z-index: 0;
}

.linha-full{
    width: 100%;
}

.svg-horizontal-line-group{
    z-index: 99;
    position: relative;
    display: flex;
    padding-top: 64px;
    gap: 60px;
    flex-direction: column;
}

.overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        120deg,
        rgba(3, 27, 46, 0.7) 100%,
        rgba(3, 27, 46, 0.63) 100%,
        rgba(3, 27, 46, 0.08) 100%,
        rgba(3, 27, 46, 0) 100%
    );    
    clip-path: polygon(0% 0%, 60% 0, 65% 100%, 0% 100%);
    pointer-events: none;
}

.svg-que-vaza {
    /* overflow: visible !important;
        position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; */

    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    
    /* A técnica de "fuga" que já estávamos usando */
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.padding-top-0{
    padding-top: 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
p { color: var(--text-medium); margin-bottom: 1.5rem; }

h1 strong, h2 strong, h3 strong {
    color: var(--accent-green);
    font-weight: 900;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #ffffff;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.features::before,
.features::after {
  content: "";
  position: absolute;
  top: 40px;                 /* ajuste de vertical */
  height: 20px;              /* altura visual da linha */
  width: 260px;              /* largura do SVG */
  background-image: url('/assets/img/small-line-bitdefender.svg'); /* caminho real DO SEU SVG */
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* linha esquerda */
.features::before {
  left: 0;
}

/* linha direita — usa o mesmo SVG rotacionado */
.features::after {
  right: 0;
  transform: scaleX(-1); /* ou rotate(180deg); dep. do desenho */
}

.small-line-left{
    position: absolute;
    height: 50px;
    width: 18%;
    pointer-events: none;
    z-index: 0;
    left: 0px;
}

.title-lines{
    font-size: 40px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: normal;
}

.title-lines strong{
    color: #8AF336 !important;
}

.subtitle{
    font-size: 20px !important;
    font-weight: 400;
    color: #FFFFFF !important;
}



.small-line-right{
    position: absolute;
    right: 0px;
    height: 50px;
    width: 18%;
    pointer-events: none;
    z-index: 0;
}

.button-primary {
    display: inline-block;
    background-color: #8AF336;
    color: #031B2E;
    padding: 12px 28px;
    border-radius: 16px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button-primary:hover {
    transform: scale(1.05);
    background-color:#6AC91F;
    color: var(--text-dark);
}

.logo {
    width: 142px;
    height: 39px;
    cursor: pointer;
    content: url("../img/logo-senfaz.png");
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    /* max-width: 600px; */
}

/* --- 1. Header --- */
header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--ui-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav{
    margin-left: 40px;
}

.main-nav ul {
    display: flex;
    gap: 10px;
    align-items: center;

    list-style: none;
}

.dropdown {
    position: relative;
}

.dropdown:hover{
    background-color: #355719;
    border-radius: 12px;
    padding: 10px;
    text-decoration: none !important;
}

.drop-btn:hover{
    text-decoration: none !important;
}

/* O menu dropdown (filho) */
.dropdown-menu {
    display: none !important; /* Oculto por padrão */
    position: absolute; /* Flutua sobre o conteúdo */
    top: 100%; /* Fica logo abaixo do botão */
    left: 0;
    border-radius: 8px;
    border: 1px solid #8AF336;
    background-color: #fff; /* Fundo branco para leitura */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Sombra suave */
    min-width: 160px; /* Largura mínima */
    z-index: 1; /* Garante que fique na frente de tudo */
    
    /* Reseta o flex para que os itens caiam um abaixo do outro no dropdown */
    flex-direction: column; 
}

.dropdown-menu li{
    margin-left: 0px !important;
    text-align: center;
    padding: 10px;
}

/* Estilo dos links dentro do dropdown */
.dropdown-menu li a {
    padding: 12px 16px;
    color: black;
    display: block;
}

/* Efeito Hover: Quando passar o mouse no .dropdown, mostre o .dropdown-menu */
.dropdown:hover .dropdown-menu {
    display: block !important; /* Ou display: flex; se preferir */
}

/* Cor ao passar o mouse nos links do dropdown */
.dropdown-menu li a:hover {
    background-color: #E7E7E7;
    text-decoration: none !important;
    color: #000 !important;
    border-radius: 8px;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    letter-spacing: 0,1%;
    line-height: 20px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
}
.main-nav a:hover {
    color: #8AF336;
    text-decoration: underline;
    text-decoration-color: #8AF336;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.h4-hero-small-text{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.1%;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.header-button {
    padding: 12px 24px;
    margin-left: auto;
    border-radius: 16px;
    background-color: #8AF336;
    color: #031B2E;
}

.header-button:hover{
    background-color: #6AC91F;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* --- 2. Hero Section --- */
.hero {
    padding-top: 69px;
    position: relative;
    margin-bottom: 60px;
    padding-bottom: 0px;

    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-title-h1{
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
}

.button-padding-24{
    padding: 12px 24px !important;
    white-space: nowrap;
}

.color-green-underline{
    color: #8AF336;
    text-decoration: underline;
}

.hero-sub-first-column span, .hero-sub-second-column span, .hero-sub-third-column span{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

.hero-sub-first-column img, .hero-sub-second-column img, .hero-sub-third-column img{
    width: 24px;
    height: 24px;
}

.hero-sub-first-column{
    border-left: 1px solid #8AF336;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 12px;
    gap: 16px
}

.hero-sub-second-column{
    border-left: 1px solid #8AF336;
    display: flex;
    flex-direction: column;
    align-items: flex-start;   
    padding-left: 12px;
    gap: 16px
}

.shild-svg{
    width: 100%;
}

.shild-lines{
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.background-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* SVG não interfere no mouse */
    overflow: hidden;     /* Impede overflow feio */
}

.confianca-text{
    font-size: 31px;
    font-weight: 800;
    text-align: center;
}

.main-nav .active {
    color: #8AF336;
    text-decoration: underline;
    text-decoration-color: #8AF336;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.lines-left,
.lines-right {
    position: absolute;
    height: 100%;
    width: auto;
}

.lines-left {
    left: 0;
}

.lines-right {
    right: 0;
}


.hero-solutions {
  position: relative;
  overflow: hidden;      /* importante para cortar as partes excedentes */
  background: #061927;   /* ou o que já tiver */
}

/* pseudo-elements decorativos */
.hero-solutions::before,
.hero-solutions::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;                 /* largura variável; background-size controla o escalonamento */
  pointer-events: none;
  z-index: 0;                  /* atrás do conteúdo - coloque o conteúdo com z-index:1 */
  opacity: 1;                  /* ajuste se quiser mais sutil */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;  /* escala pela altura (mantém proporção) */
}

/* SVG da esquerda */
.hero-solutions::before {
  left: 0; 
  transform: translateX(-6%); /* deslocamento pequeno pra sair um pouco da borda; ajuste conforme necessário */
  background-image: url('/assets/svgs/lines-left.svg'); /* caminho real do seu SVG */
  background-position: left top;
}

/* SVG da direita */
.hero-solutions::after {
  right: 0;
  transform: translateX(6%);  /* deslocamento pequeno para fora da borda */
  background-image: url('/assets/svgs/lines-right.svg');
  background-position: right top;
}

/* Garante que o conteúdo fique acima dos svgs */
.hero-solutions .container {
  position: relative;
  z-index: 1;
}

.three-bars-left{
    position: absolute;
    left: 465px;
    top: 117px;
    height: 727px;
    z-index: 1;
}


.three-bars-right{
    position: absolute;
    left: 500px;
    top: 223px;
}

.card {
    display: flex;
    gap: 31px;
    margin-top: 90px;
}

.button-hero-section{
    background-color: #8AF336 !important;
    color: #031B2E !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 16px !important;
    padding: 16px 24px;

    transition: transform 0.2s;
}

.button-hero-section:hover{
    background-color: #6AC91F !important;

    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 243, 54, 0.4);
}

.hero-sub-third-column{
    border-left: 1px solid #8AF336;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  
    padding-left: 12px;  
    gap: 16px
}

.text-up-hero-button{
    font: 20px;
    color: #FFFFFF;
    line-height: 28px;
    letter-spacing: 0,1%;
    font-weight: 400;
}

.hero-subtext{
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 400;
}

.hero-sub {
    display: flex;
    gap: 20px;
    margin: 20px 0 30px;
    color: var(--text-medium);
}

.hero-solutions {
    background-color: var(--ui-dark);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    height: 104%;
}

.solutions-title {
    color: var(--text-medium);
    margin-bottom: 20px;
    display: block;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.solution-item {
    background-color: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}
.solution-item:hover {
    background-color: #2a3b43;
}
.solution-item i {
    font-size: 1.2rem;
    color: var(--accent-green);
}

/* --- 3. Features --- */
.features h2, .features .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

ul.features-list{
    display: flex;
    gap: 22px;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.video-bitdefender{
    width: 100%;
    object-fit: fill;
    height: 100%;
    border-radius: 18px;
}

.features-image-placeholder {
    /* background-color: #ffffff; */
    min-height: 400px;
    border-radius: 18px;
    /* height: -webkit-fill-available; */

    position: relative; /* Necessário para o scanner absoluto */
    overflow: hidden;   /* Corta a linha quando ela sai do vídeo */
    border-radius: 12px; /* Arredondamento sutil */
    border: 1px solid rgba(138, 243, 54, 0.2); /* Borda Tech */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.link-arrow {
    /* display: inline-block !important;
    margin-top: 30px !important;
    padding: 12px 24px !important;
    border: 1px solid #8AF336 !important;
    border-radius: 4px !important;
    color: #8AF336 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: bold !important;
    letter-spacing: 1px !important; */
    transition: all 0.3s ease !important;
    
    /* Fundo escuro para contraste */
    /* background: rgba(138, 243, 54, 0.05) !important; */
}

.link-arrow:hover {
    background: #8AF336 !important;
    color: #031B2E !important;
    box-shadow: 0 0 20px rgba(138, 243, 54, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* A Linha de Luz (Scanner) */
.features-image-placeholder::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 3px; /* Espessura da linha */
    
    /* Gradiente para parecer um laser */
    background: linear-gradient(90deg, transparent, #8AF336, transparent);
    
    /* Brilho intenso */
    box-shadow: 0 0 20px rgba(138, 243, 54, 0.8);
    opacity: 0.7;
    z-index: 5;
    pointer-events: none;
    
    /* Animação infinita */
    animation: radar-scan 4s linear infinite;
}

@keyframes radar-scan {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

.features-list li:hover {
    transform: translateX(10px); /* Move para a direita */
    color: #fff; /* Fica branco brilhante */
    text-shadow: 0 0 10px rgba(138, 243, 54, 0.3);
}

.bullet-green {
    /* Garante que a imagem se comporte bem */
    vertical-align: middle;
    margin-right: 8px;
    transition: filter 0.3s;
    
    /* Animação de pulso constante */
    animation: status-pulse 2s infinite ease-in-out;
}

.features-list li:hover .bullet-green {
    filter: drop-shadow(0 0 5px #8AF336); /* Brilha mais no hover */
}

@keyframes status-pulse {
    0% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; transform: scale(0.9); }
}

.features-list li {
    font-size: 16px !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-weight: 400;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.title-empresas-confiam{
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
}

.padding-top-64{
    padding-top: 64px;
}

.empresas-confiam-text-green{
    color: #8AF336;
}

.subtext-empresas-confiam{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
}

.confianca-section{
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.confianca-main-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-green{
      width: 8px;        /* ajuste para o tamanho exato */
  height: 8px;
  margin-top: 9px;
  align-self: baseline;
  /* background: #8AF336;  /* verde da sua imagem */
  /* border-radius: 50%;    */
  display: inline-block;
  /* background-image: url("assets/img/elipse.png"); */
}

.features-list i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 13px;
    font-weight: bold;
    border-radius: 16px;
    padding: 20px 54px;
    border: 1px solid #8AF336;
    align-self: center;
}
.link-arrow i {
    vertical-align: middle;
}

.mt-50{
    margin-top: 50px;
}

section.features.padding-top-0{
    padding-bottom: 40px ;
}

.empresas-que-confiam{
    text-align: center;
}

/* --- 4. Social Proof --- */
.social-proof {
    text-align: center;
}

.social-proof .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    color: #FFFFFF !important;
    font-weight: 4000;
    margin-top: 80px;
    margin-bottom: 40px;
    /* Simula logos brancos */
}

.social-proof .logos span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    font-weight: 400;
}

.color-withe-400{
    color: #FFFFFF;
    font-weight: 400;
}

.vazamento-span{
    font-size: 14px; 
    font-weight: 400;
     color: #F9FBF8;    
      padding: 20px 0;
}

.defenz-tooltip {
    position: fixed;
    display: none;
    z-index: 9999;
    
    background-color: rgba(3, 27, 46, 0.95);
    border: 1px solid #8AF336;
    border-radius: 8px;
    padding: 15px;
    width: 280px;
    
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.defenz-tooltip strong {
    display: block;
    color: #8AF336;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}


.defenz-tooltip p {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

/* Opcional: Cursor pointer nas bolinhas */
.tooltip-trigger {
    cursor: pointer;
}

.tooltip-svg-vazamento{
    display: flex;
    justify-content: center;
}

.vazamento-h4{
    font-size: 36px !important; 
    font-weight: 800 !important; 
    color: #F9FBF8;
    margin-top: 0 !important;
    margin-bottom: 0;
}

.shadow-green{
    box-shadow: 0px 0px 52px 29px rgba(138, 243, 54, 0.10);
}

.why-us-item.why-veloster-item {
    /* Adiciona uma transição suave para o efeito não ser brusco */
    transition: box-shadow 0.3s ease-in-out;
}

.why-us-item.why-veloster-item:hover {
    box-shadow: 0px 0px 52px 29px rgba(138, 243, 54, 0.10);
}

/* --- 5. Partnership --- */
.partnership {
    text-align: center;
}

.why-veloster{
    display: flex !important;
    gap: 20px; 
    margin-top: 64px;
}

.why-veloster-item{
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    align-items: center;
}

.partner-box {
    background-color: var(--ui-dark);
    max-width: auto;
    width: auto;
    margin: 100px auto 0;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--accent-green);
    /* text-align: left; */

    background: rgba(3, 27, 46, 0.6); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(5px);
    
    /* O Shadow que você pediu */
    box-shadow: 0px 0px 52px 29px rgba(138, 243, 54, 0.10);
    
    /* Animação de entrada */
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /
}

.partner-box.in-view {
    opacity: 1;
    transform: scale(1);
}

.partner-box p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* --- CARD (Estilo Wireframe/Blueprint) --- */
.purchase-card {
    transition: all 0.3s ease;
    cursor: default;
    
    /* Configuração inicial para animação */
    opacity: 0;
    transform: translateY(30px);
}

/* Estado Visível (Scroll) */
.purchase-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hover: Preenchimento sutil */
.purchase-card:hover {
    background: rgba(138, 243, 54, 0.1); /* Verde bem transparente */
    box-shadow: 0 0 30px rgba(138, 243, 54, 0.15); /* Glow externo */
    transform: translateY(-5px); /* Flutua */
}

/* Ícone dentro do card */
.purchase-card img {
    /* Garante que o ícone fique nítido */
    filter: drop-shadow(0 0 2px rgba(138, 243, 54, 0.5)); 
}


/* --- TEXTO DA EQUAÇÃO FINAL --- */
.math-equation-text {
    opacity: 0; /* Começa invisível */
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.math-equation-text.in-view {
    opacity: 1;
    transform: scale(1);
}

#final-button {
    box-shadow: 0 0 30px rgba(138, 243, 54, 0.3); /* Brilho inicial */
    transition: all 0.3s ease;
}


.logo-cta-bottom {
    
    /* Estado inicial para animação */
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.logo-cta-bottom.in-view {
    opacity: 0.3; /* Mantém sutil para não brigar com o botão */
    transform: translateY(0) scale(1);
    filter: grayscale(100%); /* Estilo tech/sóbrio */
}

/* Hover na logo final (opcional, dá vida) */
.logo-cta-bottom:hover {
    opacity: 1;
    filter: grayscale(0%);
    transition-duration: 0.4s;
}

/* --- 6. Cases Slider --- */
.cases h2, .cases .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.min-width-100{
    min-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 20px !important;
}

.slider-container {
    position: relative;
    /* max-width: 900px; */
    margin: 40px auto 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 32%;
    gap: 20px;
    /* height: 300px; */
}

.card-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.card-container {
    width: 100%;
    max-width: 700px; /* ajuste se quiser */
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}


.slide {
    min-width: 100%;
    box-sizing: border-box;
    background-color: #1d3343;
    border: 1px solid #8AF336;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    padding: 40px;
    width: 100%;
}

.slide-content span {
    color: #8AF336;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-content h4 {
    color: #8AF336;
    font-size: 32px;
    margin-top: 10px;
    font-weight: 400;
    width: 80%;
    text-align: center;
    height: 160px;
}

.slide-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-medium);
}

.slider-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    justify-self: anchor-center;
}

.slider-wrapper-external{
    position: relative;
    width: 100%;
}

.slider-prev{
    position: absolute;
    left: -60px; 
}

.slider-next{
    position: absolute;
    right: -60px;
}

.slider-nav button {
    background: #D9D9D9;
    border: 1px solid #8AF336;
    background-color: transparent;
    color: #8AF336;
    width: 40px;
    pointer-events: auto;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
.slider-nav button:hover {
    background: var(--accent-green);
    color: var(--text-dark);
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.slider-dot.active {
    background: #8AF336;
}

/* --- 7. Why Us --- */
.why-us h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
}

.why-us-grid-solution {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;




}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.defenz_bitdefender{
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    padding-top: 64px;
}

.why-us-item-solution {
    background-color: var(--ui-dark);
    padding: 11px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #8AF336;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;


    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Estado inicial para animação de scroll */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.why-us-item {
    background-color: var(--ui-dark);
    padding: 11px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #8AF336;
}

.why-us-item-solution img{
    width: 36px;
    height: 36px;

    transition: filter 0.3s, transform 0.3s;
}

.why-us-item img{
    width: 44px;
    height: 44px;
}

/* --- ESTADO VISÍVEL (Scroll) --- */
.why-us-item-solution.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- EFEITO HOVER (O Pulo do Gato) --- */
.why-us-item-solution:hover {
    background-color: #8AF336; /* Preenche de verde */
    box-shadow: 0 0 25px rgba(138, 243, 54, 0.4); /* Brilho externo */
    transform: translateY(-5px); /* Flutua levemente */
}

/* Muda a cor do texto e ícone para escuro no hover (Contraste) */
.why-us-item-solution:hover h4 {
    color: #031B2E; /* Azul escuro do fundo */
    font-weight: 700;
}

/* Truque para deixar o ícone preto no hover (se for PNG transparente) */
.why-us-item-solution:hover img {
    filter: brightness(0); /* Torna o ícone preto */
    transform: scale(1.1); /* Ícone cresce um pouco */
}

.why-us-item-solution i {
    font-size: 3rem;
    color: var(--accent-green);
}

.why-us-item i {
    font-size: 3rem;
    color: var(--accent-green);
}

.why-us-item-solution h4 {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #8AF336;
    font-weight: 400;
    transition: color 0.3s;
}

.why-us-item h4 {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #fff;
    font-weight: 400;
}

/* Caroussel */

.logos-carousel {
  width: 100%;
  overflow: hidden;
  background: #031B2E; /* fundo igual ao seu */
  padding: 20px 0;

  /* MÁGICA: Cria um fade transparente nas laterais */
    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-track {
  display: flex;
  width: max-content;

  animation: scroll 25s linear infinite;
}

/* Pause a animação se o usuário passar o mouse */
.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
  width: 156px;
  height: 135px;
  padding: 20px;
  border-radius: 16px;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;

  filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(138, 243, 54, 0.4)); /* Brilho verde sutil */
}

/* animação infinita */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.padding-bottom-55{
    padding-bottom: 55px;
}

.center-milions{
    padding-top: 50px;
    margin-bottom: 0px;
}

/* --- 8. Footer CTA --- */
.footer-cta {
    background-color: var(--ui-dark);
}

.footer-cta .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.cta-content {
    /* flex: 2; */
}

.cta-logo {
    /* flex: 1; */
    place-self: center;
}

.cta-logo img{
    width: 567px;
    height: 375px;
}


/* --- 9. Footer --- */
footer {
    /* background-color: #051014; */
    padding-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col-logo p {
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-col-links h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col-links li {
    margin-bottom: 10px;
}

.footer-col-links a {
    color: var(--text-medium);
}
.footer-col-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid var(--ui-dark);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.card-content {
    display: flex;
    background-color: #F9FBF8;
    width: 100%;
    height: auto;
    border-radius: 18px;
    padding: 20px;
    flex-direction: column;

    position: relative;
    border: 2px solid transparent; /* Prepara para o hover */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Sombra suave inicial */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Configuração inicial para animação de scroll */
    opacity: 0;
    transform: translateY(40px);
}

/* Estado Visível (Scroll) */
.card-content.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- HOVER EFFECT --- */
.card-content:hover {
    transform: translateY(-10px); /* Sobe */
    border-color: #8AF336; /* Borda Verde Neon aparece */
    box-shadow: 0 20px 50px rgba(138, 243, 54, 0.15); /* Sombra verde */
}

.card-hero {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.card-hero-text{
    color: #031B2E;
    font-size: 16px;
}

.card-hero-text strong{
    font-size: 20px;
}

img.big-card-img {
    object-fit: contain;
    max-width: 140px;
}

img.card-img {
    width: 98px;
    height: 98px;
}

.card-hr{
    background-color: #D9D9D9;
    height: 1px;
    border: none;
        margin-top: 30px;
}

.card-body-text{
    color: #031B2E;
    font-weight: 300;
}

.card-body {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    flex: 1;
}

.aspas-product{
    width: 49px;
}

.confianca-section{
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.confianca-main-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confianca-text{
    font-size: 31px;
    font-weight: 800;
}

img.big-card-img {
    object-fit: contain;
    max-width: 140px;
}

.big-card {
        margin-top: 50px;
    display: flex;
    width: 100%;
    /* background-color: #F9FBF8; */
    /* height: 100px; */
    gap: 40px;
    padding: 20px;
    border-radius: 18px;
        align-items: center;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

/* --- Responsividade --- */

@media (max-width: 992px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }

    .mobile-only {
        padding: 20px 0;
    }

    /* Ícone do Escudo Central no Mobile */
    .mobile-shield-icon {
        text-align: center;
        margin-bottom: 30px;
        font-size: 60px;
        color: #8AF336;
        animation: shield-pulse 3s infinite ease-in-out;
    }

    @keyframes shield-pulse {
        0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(138, 243, 54, 0.3)); }
        50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(138, 243, 54, 0.6)); }
    }

    /* Grid Mobile */
    .mobile-cyber-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* O Card Individual */
    .cyber-card {
        background: rgba(3, 27, 46, 0.6); /* Fundo escuro */
        border: 1px solid rgba(138, 243, 54, 0.2); /* Borda fina verde */
        border-left: 4px solid #8AF336; /* Borda lateral grossa para destaque */
        border-radius: 8px;
        padding: 20px;
        
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .cyber-card:hover {
        transform: translateX(5px);
        background: rgba(3, 27, 46, 0.9);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        border-color: #8AF336;
    }

    /* Cabeçalho do Card (Ícone + Título) */
    .cyber-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .cyber-header i {
        font-size: 24px;
        color: #8AF336;
    }

    .cyber-header h3 {
        margin: 0;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Texto de Descrição */
    .cyber-card p {
        color: #cbd5e0;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        font-weight: 300;
    }

    .confianca-main-text{
        align-items: flex-start;
        flex-direction: column;
    }

    .big-card{
        flex-direction: row;
        flex-wrap: wrap;
    }

    .slider-track{
        width: 100%;
    }

    .slider-prev{
        position: relative;
        left: unset;
    }

    .slider-next{
        position: relative;
        right: unset;
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    section { padding: 60px 0; }

    .hero-content{
        grid-row-start: 1;
    }

    .hero-solutions{
        padding-bottom: 0px;
    }

    .slider-track{
        height: auto;
    }

    .svg-horizontal-line-group{
        z-index: 99;
        position: relative;
        display: flex;
        margin-top: -106px;
        margin-bottom: 50px;
        gap: 60px;
        flex-direction: column;
    }

    .shild-lines{
        position: unset;
        width: 100% !important;
        object-fit: cover !important;
        margin-top: -140px !important;
        pointer-events: none !important;
    }

    .hero{
        padding-bottom: 2px;
    }

    .main-nav {
        display: none; /* Escondido por padrão no mobile */
        position: absolute;
        top: 75px; /* Altura do header */
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
    }
    .main-nav.active {
        display: block; /* Mostra quando ativo */
    }
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    .main-nav li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid var(--ui-dark);
    }
    .main-nav a {
        display: block;
        padding: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }
    .header-button {
        display: none; /* Esconde botão principal no mobile */
    }


    .hero-solutions {
        order: -1; /* Move o grid de soluções para cima */
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .slide {
        grid-template-columns: 1fr;
    }
    .slide-image {
        max-height: 250px;
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-grid-solution {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .cta-logo img{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 769px) {

    .slider-nav{
        top: unset;
        left: unset;
        position: relative;
        /* justify-content: center; */
    }

    .confianca-main-text{
        align-items: center;
    }

    .features-image-placeholder{
        min-height: unset;
    }

    .why-veloster{
        flex-wrap: wrap;
    }

    .card{
        flex-direction: column;
    }

    .confianca-main-text{
        /* align-items: flex-start; */
        flex-direction: column;
    }

    .features-image-placeholder{
        height: 100% !important;
    }
    #scroll-line{
        display: none;
    }
    .connector-wrapper{
        display: none;
    }
    .hero .container {
        grid-template-columns: 1fr;
    }

    .overlay{
        clip-path: unset;
        height: 100%;
    }

    .padding-top-0{
        padding-top: 60px;
    }

    .slide-content h4{
        width: 100%;
        height: unset;
    }

    .slide-content{
        padding: 40px 5px 60px 5px;
    }

}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    
    .hero-sub {
        flex-direction: column;
        gap: 10px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .social-proof .logos {
        flex-direction: column;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid-solution {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}