@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;
}

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

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

.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;
}

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

    list-style: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu a{
    color: #000 !important;
    text-decoration: none !important;
}

.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;
}

.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; */
    width: 90%;
}

.falar-especialista {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* --- 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;
}

.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;
}

.mb-10{
    margin-bottom: 10px;
}

.hero .container {
    display: flex;
    /* 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;
}

.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
}

img.hand-shake {
    width: 100%;
    object-fit: contain;
}

.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 */
}

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

.lines-left {
    left: 0;
}

.lines-right {
    right: 0;
}


.hero-solutions {
    padding: 30px;
    border-radius: 12px;
    position: relative;
    width: 50%;
  background: #061927;  
}



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


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

.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;
}

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

.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;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.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;
}

.features-list li {
    font-size: 16px !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-weight: 400;
}

.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;
}

.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;
}
.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;
}

/* --- 5. Partnership --- */
.partnership {
    text-align: 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;
}

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

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

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

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 300px;
}

.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;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    justify-self: anchor-center;
}

.slider-nav button {
    background: #D9D9D9;
    border: 1px solid #8AF336;
    background-color: transparent;
    color: #8AF336;
    width: 40px;
    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;
}

.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;
}

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

.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;
}

.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;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.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;
}

/* 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;
}

.cta-content {
    /* flex: 2; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

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


/* --- 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);
}

.apresentacao-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
    margin-top: 80px;
}
.apresentacao-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    overflow: visible;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}

/* Texto */
.apresentacao-texto {
    width: 55%;
    z-index: 2;
}

.apresentacao-texto h2 {
    font-size: 40px;
    font-weight: 900;
    color: #031B2E;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: left;

}

.cta-content p {
    color: #FFFFFF;
    margin-bottom: 12px;
    font-size: 20px;
    text-align: left;
}

.apresentacao-texto p {
    color: #031B2E;
    margin-bottom: 12px;
    font-size: 20px;
}


.cta-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.apresentacao-texto ul {
    margin: 15px 0;
    padding-left: 20px;
}

.apresentacao-texto ul li {
    margin-bottom: 6px;
    font-size: 20px;
    color: #031B2E;
    list-style: disc;
}

.cta-content ul li {
    margin-bottom: 6px;
    font-size: 20px;
    color: #FFFFFF;
    list-style: disc;
    text-align: left;
}

/* Botão */
.btn-ver-apresentacao {
    display: inline-block;
    margin-top: 20px;
    background: #8AF336;
    padding: 12px 28px;
    border-radius: 30px;
    color: #0E223A;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-ver-apresentacao:hover {
    background: #7BE030;
}

.apresentacao-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background: #E8EEE4;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
    z-index: 0;
}

.apresentacao-card-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0 !important;
    width: 44%;
    height: 100%;
    background: #E8EEE4;
    border-bottom-left-radius: 16px !important;
    border-top-left-radius: 16px !important;
        border-top-right-radius: unset;
            border-bottom-right-radius: unset;

    z-index: 0;
}
/* Imagem à direita ultrapassando */
.apresentacao-imagem {
    width: 45%;
    margin-left: -24px;    /* faz ultrapassar */
    transform: translateX(40px); /* empurra para fora */
}

.apresentacao-imagem-left {
    width: 45%;
    margin-left: -24px;    /* faz ultrapassar */
    transform: translateX(-100px); /* empurra para fora */
}

.apresentacao-imagem-left img {
    /* width: 100%; */
    width: 616px;
    height: auto;
    border-radius: 16px;
    display: block;
}

.apresentacao-imagem img {
    /* width: 100%; */
    width: 616px;
    height: auto;
    border-radius: 16px;
    display: block;
}

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

.apresentacao-texto-right{
    width: 58% !important;
    display: flex !important;
    flex-direction: column !important;
    padding-left: 67px !important;
    align-items: flex-start;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .apresentacao-card {
        flex-direction: column;
        text-align: center;
    }

    .apresentacao-texto {
        width: 100%;
    }

    .apresentacao-imagem {
        width: 100%;
        transform: none;
        margin: 20px 0 0;
    }

    .apresentacao-imagem-left {
        width: 100%;
        transform: none;
        margin: 20px 0 0;
    }
}


/* --- Responsividade --- */
@media (max-width: 1349px) {

    .apresentacao-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 44%;
        height: 100%;
        background: #E8EEE4;
        border-bottom-right-radius: 16px;
        overflow: hidden;
        border-top-right-radius: 16px;
        z-index: 0;
        content: url("../img/saiba_mais_mans.png");
    }

    .apresentacao-card.poc::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 44%;
        height: 100%;
        background: #E8EEE4;
        border-bottom-right-radius: 16px;
        overflow: hidden;
        border-top-right-radius: 16px;
        z-index: 0;
        content: url("../img/woman-shake-hand.png") !important;
    }

    .apresentacao-imagem img{
        display: none !important;
    }
    .apresentacao-imagem {
        width: 45%;
        margin-left: -24px;
        transform: translateX(40px);
        flex: 1;
        height: 100%;
    }

    .apresentacao-imagem img {
        max-width: 100%;
        width: 616px;
        height: 100%;
        border-radius: 16px;
        display: block;
    }

    .apresentacao-card-left::before {
        content: url("../img/saiba_mais_grafico.png");
        position: absolute;
        top: 0;
        left: 0 !important;
        width: 44%;
        height: 100%;
        background: #E8EEE4;
        border-bottom-left-radius: 16px !important;
        border-top-left-radius: 16px !important;
            border-top-right-radius: unset;
                border-bottom-right-radius: unset;

        z-index: 0;
    }

    /* .apresentacao-card-left::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 44%;
        height: 100%;
        background: #E8EEE4;
        border-top-left-radius: 16px !important;
        overflow: hidden;
        border-bottom-left-radius: 16px !;
        z-index: 0;
        
    } */

    .apresentacao-imagem-left img{
        display: none !important;
    }
    .apresentacao-imagem-left {
        width: 45%;
        margin-left: -24px;
        transform: translateX(40px);
        flex: 1;
        height: 100%;
    }

    .apresentacao-imagem-left img {
        max-width: 100%;
        width: 616px;
        height: 100%;
        border-radius: 16px;
        display: block;
    }

    
}

@media (max-width: 992px) {
    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) {

    .hero .container{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .apresentacao-texto-left h2{
        font-size: 39px;
    }

    .apresentacao-texto h2{
        font-size: 39px;
    }

    .apresentacao-texto-left p{
        text-align: left;
    }

    .apresentacao-texto p{
        text-align: left;
    }

    .apresentacao-texto-left ul li{
        text-align: left;
    }

    .apresentacao-texto ul li{
        text-align: left;
    }

    .apresentacao-imagem-left{
        width: 100%;
        transform: unset;
        margin-left: 0px;
    }

    .apresentacao-imagem{
        width: 100%;
        transform: unset;
        margin-left: 0px;
    }

    .footer-cta{
        padding-bottom: 0px;
    }

    .apresentacao-texto-right{
        width: 100% !important;
        padding-left: 0px !important;
    }

    .apresentacao-card-left{
        padding: 20px;
        flex-direction: column-reverse !important;
    }

    .apresentacao-card{
        padding: 20px;
    }

    .apresentacao-imagem-left img{
        display: block !important;
    }

    .apresentacao-imagem img{
        display: block !important;
    }

    .apresentacao-card-left::before {
        display: none;
        content: none; /* Garante que o conteúdo seja removido */
    }

    .apresentacao-card::before {
        display: none;
        content: none; /* Garante que o conteúdo seja removido */
    }

    .hero-content{
        width: 100%;
    }

    .hero-solutions{
        width: 100%;
    }

    .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;
    }
}