/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background:linear-gradient(180deg,#0f172a,#0b1220);
    color:#f8fafc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.site-header{
width:100%;

position:fixed;
top:0;
left:0;

z-index:1000;

/* totalmente transparente */
background:transparent;

transition:background .35s ease, box-shadow .35s ease;
}

/* HEADER AO ROLAR */

.site-header.scrolled{
background:rgba(15,23,42,0.9);
backdrop-filter:blur(8px);
box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.header-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:75px;
}

/* ================= HEADER LOGO ================= */

.header-logo-img{
height:50px;
transition:.4s ease;
}

.header-logo-link:hover .header-logo-img{
transform:scale(1.05);
filter:drop-shadow(0 0 12px rgba(37,99,235,.7));
}

/* ================= MENU DESKTOP ================= */

.main-nav ul{
display:flex;
gap:30px;
list-style:none;
}

.main-nav a{
text-decoration:none;
color:#ffffff;
font-weight:500;
transition:.3s;
}

.main-nav a:hover{
color:#2563eb;
}

/* ================= BOTÕES ================= */

.header-actions{
display:flex;
gap:15px;
}

.btn{
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-outline{
border:1px solid #2563eb;
color:#2563eb;
}

.btn-outline:hover{
background:#2563eb;
color:#fff;
}

.btn-primary{
background:#2563eb;
color:#fff;
}

.btn-primary:hover{
background:#1e40af;
}

/* ================= MOBILE ================= */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#fff;
}

.mobile-actions{
display:none;
}

@media (max-width:992px){

.main-nav{
position:absolute;
top:75px;
left:0;

width:100%;

background:#0b1220;

padding:25px 0;

display:none;

border-top:1px solid #1f2937;

box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.main-nav ul{
flex-direction:column;
align-items:center;
gap:20px;
}

.main-nav a{
color:#f8fafc;
font-size:16px;
}

.main-nav.active{
display:block;
}

.header-actions{
display:none;
}

.mobile-actions{
display:flex;
flex-direction:column;
gap:15px;
margin-top:25px;
align-items:center;
}

.mobile-actions .btn{
width:80%;
text-align:center;
}

.menu-toggle{
display:block;
}

}

/* ================= FOOTER PREMIUM ================= */

.footer-premium{
    position:relative;
    background:#0b1220;
    padding:100px 20px 40px;
    color:#94a3b8;
    overflow:hidden;
}

.footer-glow{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:600px;
    height:300px;
    background:radial-gradient(circle,#2563eb30,transparent 70%);
    z-index:0;
}

.footer-grid-premium{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:50px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:20px;
}

.footer-description{
    margin-top:20px;
    line-height:1.6;
}

.footer-logo-img{
    height:50px;
    transition:.4s ease;
}

.footer-logo-link:hover .footer-logo-img{
    transform:scale(1.05);
    filter:drop-shadow(0 0 12px rgba(37,99,235,.7));
}

/* LINKS */

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#94a3b8;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#2563eb;
}

/* ================= SOCIAL ULTRA PREMIUM ================= */

.footer-social{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.footer-social a{
    position:relative;
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#94a3b8;
    border:1px solid #1f2937;
    transition:.4s cubic-bezier(.4,0,.2,1);
    overflow:hidden;
}

.footer-social svg{
    width:20px;
    height:20px;
}

/* Cor base neutra */
.footer-social a{
    color:#94a3b8;
}

/* Hover com cores reais */

.footer-social .whatsapp:hover{
    background:#25D366;
    box-shadow:0 10px 25px rgba(37,211,102,.4);
}

.footer-social .telegram:hover{
    background:#0088cc;
    box-shadow:0 10px 25px rgba(0,136,204,.4);
}

.footer-social .facebook:hover{
    background:#1877f2;
    box-shadow:0 10px 25px rgba(24,119,242,.4);
}

.footer-social .youtube:hover{
    background:#ff0000;
    box-shadow:0 10px 25px rgba(255,0,0,.4);
}

/* FORM */

.footer-contact-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-contact-form input,
.footer-contact-form textarea{
    padding:10px 12px;
    border-radius:8px;
    border:1px solid #1f2937;
    background:#111827;
    color:#fff;
    font-size:14px;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 2px rgba(37,99,235,.2);
}

.footer-contact-form button{
    padding:10px;
    border:none;
    border-radius:8px;
    background:#2563eb;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.footer-contact-form button:hover{
    background:#1e40af;
}

/* PAYMENT */

.payment-icons img{
    height:30px;
    margin-right:10px;
    margin-bottom:15px;
}

.security-badges img{
    height:35px;
    margin-right:10px;
    margin-top:10px;
    opacity:.8;
    transition:.3s;
}

.security-badges img:hover{
    opacity:1;
}

/* BOTTOM */

.footer-bottom{
    text-align:center;
    margin-top:60px;
    padding-top:20px;
    border-top:1px solid #1f2937;
    font-size:13px;
}

/* ================= SECTIONS BASE ================= */

section {
    padding: 100px 0;
}

/* ================= SOLUÇÕES ================= */

/* TÍTULO SOLUÇÕES */

.solutions-title{
text-align:center;
font-size:42px;
margin-bottom:80px;
font-weight:800;
background:linear-gradient(90deg,#ffffff,#93c5fd);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
position:relative;
}

/* Linha tecnológica abaixo */
.solutions-title::after{
content:"";
display:block;
width:80px;
height:4px;
margin:25px auto 0;
background:linear-gradient(90deg,#2563eb,#1e40af);
border-radius:10px;
box-shadow:0 0 20px rgba(37,99,235,.6);
}

.solutions {
    background: #111827;
}

.solutions .container {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #ffffff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.solution-item {
    background: #111827;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #1f2937;
    transition: .4s;
    text-align: center;
}

.solution-item:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37,99,235,0.2);
}

.solution-item img {
    height: 45px;
    margin-bottom: 20px;
}

.solution-item h3 {
    color: #f8fafc;
    margin-bottom: 10px;
}

.solution-item p {
    color: #94a3b8;
}

/* ================= HERO ULTRA SaaS ================= */

.hero{
position:relative;
min-height:100vh;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

overflow:hidden;
}

.hero{
padding-top:120px;
}

/* VIDEO BACKGROUND */

.hero-video{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:0;

pointer-events:none;
}

/* OVERLAY ESCURO */

.hero-overlay{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.55);

z-index:1;

pointer-events:none;
}

/* GLOW BACKGROUND */

.hero-glow{
position:absolute;
width:600px;
height:600px;

background:radial-gradient(circle,#2563eb40,transparent 70%);

top:50%;
left:50%;

transform:translate(-50%,-50%);

z-index:1;

filter:blur(60px);
pointer-events:none;
}

/* CONTEÚDO */

.hero-content{
position:relative;
z-index:2;

max-width:900px;
margin:auto;

color:#fff;
padding:0 20px;
}

/* TÍTULO */

.hero-title{
font-size:60px;
font-weight:800;
line-height:1.15;

max-width:900px;   /* adicionar */

margin-bottom:30px;

background:linear-gradient(90deg,#ffffff,#93c5fd);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

position:relative;
}

/* GLOW NO TEXTO */

.hero-title::after{
content:"";
position:absolute;

left:50%;
top:50%;

transform:translate(-50%,-50%);

width:120%;
height:120%;

background:radial-gradient(circle, rgba(37,99,235,.35), transparent 70%);

z-index:-1;

filter:blur(60px);
}

/* SUBTÍTULO */

.hero-subtitle{
font-size:20px;
color:#94a3b8;

margin-bottom:60px;

max-width:750px;
margin-left:auto;
margin-right:auto;

line-height:1.6;
}

/* BOTÕES */

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* BOTÕES BASE */

.btn{
display:inline-block;

padding:16px 32px;

border-radius:8px;

font-weight:600;
text-decoration:none;

transition:.3s ease;
}

/* BOTÃO PRIMÁRIO */

.btn-primary{
background:linear-gradient(135deg,#2563eb,#1e40af);
color:#fff;

box-shadow:0 10px 30px rgba(37,99,235,.4);
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(37,99,235,.6);
}

/* BOTÃO WHATSAPP */

.btn-whatsapp{
background:#22c55e;
color:#fff;

box-shadow:0 10px 25px rgba(34,197,94,.4);
}

.btn-whatsapp:hover{
background:#16a34a;

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(34,197,94,.6);
}

/* ================= RESPONSIVO ================= */

@media(max-width:768px){

.hero{
padding:140px 20px 100px;
}

.hero-title{
font-size:36px;
}

.hero-subtitle{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
gap:15px;
}

.btn{
width:100%;
max-width:320px;
margin:auto;
}

}

/* ===== BLOG PREMIUM SECTION ===== */

.blog-premium{
background:linear-gradient(180deg,#0b1220,#0f172a);
padding:140px 0;
position:relative;
overflow:hidden;
}

/* Glow de fundo */
.blog-premium::before{
content:"";
position:absolute;
top:-200px;
right:-200px;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(37,99,235,.25),transparent 70%);
filter:blur(120px);
z-index:0;
}

.blog-premium-content{
display:flex;
align-items:center;
gap:80px;
position:relative;
z-index:2;
}

/* IMAGEM */
.blog-premium-image{
flex:1;
position:relative;
}

.blog-premium-image img{
width:100%;
border-radius:20px;
position:relative;
z-index:2;
box-shadow:0 30px 70px rgba(0,0,0,.6);
transition:transform .6s ease, box-shadow .6s ease;
}

.blog-premium-image img:hover{
transform:scale(1.04);
box-shadow:0 40px 90px rgba(0,0,0,.7);
}

/* Glow atrás da imagem */
.image-glow{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:130%;
height:130%;
background:radial-gradient(circle,rgba(37,99,235,.35),transparent 70%);
z-index:1;
filter:blur(80px);
}

/* TEXTO */
.blog-premium-text{
flex:1;
}

.premium-badge{
display:inline-block;
background:linear-gradient(135deg,#2563eb,#1e40af);
padding:7px 16px;
border-radius:20px;
font-size:13px;
margin-bottom:25px;
color:#fff;
letter-spacing:.5px;
}

.blog-premium-text h2{
font-size:40px;
margin-bottom:25px;
line-height:1.2;
}

.premium-lead{
font-size:20px;
color:#cbd5e1;
margin-bottom:25px;
}

.blog-premium-text p{
color:#94a3b8;
margin-bottom:20px;
line-height:1.7;
}

/* STATS */
.premium-stats{
display:flex;
gap:60px;
margin:40px 0;
}

.premium-stats strong{
display:block;
font-size:34px;
color:#3b82f6;
}

.premium-stats span{
font-size:14px;
color:#94a3b8;
}

/* BOTÃO */
.premium-btn{
padding:18px 40px;
font-size:16px;
}

/* RESPONSIVO */
@media(max-width:900px){

.blog-premium-content{
flex-direction:column;
text-align:center;
gap:60px;
}

.premium-stats{
justify-content:center;
gap:40px;
}

.blog-premium-text h2{
font-size:30px;
}

}

/* ================= COMO FUNCIONA ULTRA ================= */

.how-section{
background:#0b1220;
padding:140px 0;
position:relative;
overflow:hidden;
}

/* Glow de fundo discreto */
.how-section::before{
content:"";
position:absolute;
top:-150px;
left:-150px;
width:500px;
height:500px;
background:radial-gradient(circle,rgba(37,99,235,.25),transparent 70%);
filter:blur(100px);
z-index:0;
}

.steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
position:relative;
z-index:2;
}

/* CARD */
.step{
background:#111827;
padding:40px 30px;
border-radius:18px;
border:1px solid #1f2937;
text-align:center;
transition:.4s ease;
position:relative;
overflow:hidden;
}

.step:hover{
transform:translateY(-8px);
border-color:#2563eb;
box-shadow:0 20px 40px rgba(0,0,0,.5);
}

/* Número estilizado */
.step-number{
width:60px;
height:60px;
margin:0 auto 25px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:20px;
background:linear-gradient(135deg,#2563eb,#1e40af);
color:#fff;
box-shadow:0 10px 30px rgba(37,99,235,.5);
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:80px;
font-weight:800;
background:linear-gradient(90deg,#ffffff,#93c5fd);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
position:relative;
z-index:2;
}

/* Título */
.step h3{
font-size:20px;
margin-bottom:15px;
color:#94a3b8;
}

/* Texto */
.step p{
color:#94a3b8;
font-size:15px;
line-height:1.6;
}

/* RESPONSIVO */
@media(max-width:1000px){
.steps{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.steps{
grid-template-columns:1fr;
}
}

/* ================= DIFERENCIAIS ULTRA ================= */

.diferenciais-section{
background:#0b1220;
padding:140px 0;
position:relative;
overflow:hidden;
}

/* Glow de fundo sutil */
.diferenciais-section::before{
content:"";
position:absolute;
bottom:-200px;
right:-200px;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(37,99,235,.25),transparent 70%);
filter:blur(120px);
z-index:0;
}

/* TÍTULO */
.diferenciais-title{
text-align:center;
font-size:42px;
margin-bottom:80px;
font-weight:800;
background:linear-gradient(90deg,#ffffff,#93c5fd);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
position:relative;
z-index:2;
}

.diferenciais-title::after{
content:"";
display:block;
width:80px;
height:4px;
margin:25px auto 0;
background:linear-gradient(90deg,#2563eb,#1e40af);
border-radius:10px;
box-shadow:0 0 20px rgba(37,99,235,.6);
}

/* GRID */
.features{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
position:relative;
z-index:2;
}

/* CARD */
.feature{
background:#111827;
padding:30px 20px;
border-radius:16px;
border:1px solid #1f2937;
transition:.4s ease;
text-align:center;
}

.feature:hover{
transform:translateY(-8px);
border-color:#2563eb;
box-shadow:0 20px 40px rgba(0,0,0,.5);
}

.feature h4{
font-size:16px;
font-weight:600;
color:#e2e8f0;
}

/* RESPONSIVO */
@media(max-width:1200px){
.features{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.features{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:500px){
.features{
grid-template-columns:1fr;
}
}

/* ================= FAQ ULTRA ================= */

#faq{
background:#0b1220;
padding:140px 0;
position:relative;
overflow:hidden;
}

/* Glow de fundo */
#faq::before{
content:"";
position:absolute;
top:-200px;
left:-200px;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(37,99,235,.25),transparent 70%);
filter:blur(120px);
z-index:0;
}

/* TÍTULO */
.faq-title{
text-align:center;
font-size:42px;
margin-bottom:80px;
font-weight:800;
background:linear-gradient(90deg,#ffffff,#93c5fd);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
position:relative;
z-index:2;
}

.faq-title::after{
content:"";
display:block;
width:80px;
height:4px;
margin:25px auto 0;
background:linear-gradient(90deg,#2563eb,#1e40af);
border-radius:10px;
box-shadow:0 0 20px rgba(37,99,235,.6);
}

/* GRID */
.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
position:relative;
z-index:2;
}

@media(max-width:900px){
.faq-grid{
grid-template-columns:1fr;
}
}

/* ITEM */
.faq-item{
background:#111827;
border-radius:16px;
border:1px solid #1f2937;
margin-bottom:20px;
overflow:hidden;
transition:.3s ease;
}

.faq-item:hover{
border-color:#2563eb;
}

/* PERGUNTA */
.faq-question{
padding:22px 25px;
cursor:pointer;
font-weight:600;
position:relative;
color:#e2e8f0;
}

/* Ícone moderno */
.faq-question::after{
content:"+";
position:absolute;
right:25px;
top:50%;
transform:translateY(-50%);
font-size:20px;
color:#3b82f6;
transition:.3s ease;
}

.faq-item.active .faq-question::after{
content:"–";
transform:translateY(-50%) rotate(180deg);
}

/* RESPOSTA */
.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease, padding .3s ease;
padding:0 25px;
color:#94a3b8;
line-height:1.6;
}

.faq-item.active .faq-answer{
max-height:300px;
padding:0 25px 25px;
}

/* ================= CONTATO PREMIUM ================= */

.cta-premium{
    position:relative;
    padding:140px 20px;
    text-align:center;
    background:linear-gradient(180deg,#0b1220,#0f172a);
    overflow:hidden;
    color:#ffffff; /* <- garante texto branco na seção */
}

.cta-premium::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    height:1px;
    background:linear-gradient(to right,transparent,#2563eb,transparent);
    box-shadow:0 0 12px rgba(37,99,235,.6);
}

.cta-glow{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:600px;
    height:600px;
    background:radial-gradient(circle,#2563eb40,transparent 70%);
    z-index:0;
}

.cta-wrapper{
    position:relative;
    z-index:2;
    max-width:900px;
}

.cta-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
    line-height:1.3;
}

.cta-title span{
    color:#2563eb;
}

.cta-subtitle{
    font-size:18px;
    color:#94a3b8;
    margin-bottom:50px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
}

.cta-premium .btn{
    padding:16px 40px;
    font-size:16px;
    border-radius:8px;
}

/* Animação suave */
.cta-premium{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.cta-premium.show{
    opacity:1;
    transform:translateY(0);
}

/* ================= NEWSLETTER PREMIUM ================= */

.newsletter-premium{
    position:relative;
    padding:120px 20px;
    text-align:center;
    background:linear-gradient(180deg,#131c2f,#0f172a);
    overflow:hidden;
    color:#fff;
}

.newsletter-premium::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    height:1px;
    background:linear-gradient(to right,transparent,#2563eb,transparent);
}

.newsletter-glow{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:500px;
    height:500px;
    background:radial-gradient(circle,#2563eb30,transparent 70%);
    z-index:0;
}

.newsletter-wrapper{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.newsletter-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.newsletter-title span{
    color:#2563eb;
}

.newsletter-subtitle{
    color:#94a3b8;
    margin-bottom:40px;
    font-size:16px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.newsletter-form input{
    padding:14px 18px;
    border-radius:8px;
    border:1px solid #1f2937;
    background:#111827;
    color:#fff;
    min-width:280px;
    font-size:14px;
    transition:.3s;
}

.newsletter-form input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,0.2);
}

.newsletter-form button{
    padding:14px 28px;
    border-radius:8px;
    border:none;
    background:#2563eb;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#1e40af;
    transform:translateY(-2px);
}

/* ================= BACK TO TOP PREMIUM ================= */

.back-to-top{
    position:fixed;
    bottom:35px;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    width:58px;
    height:58px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    background:rgba(37,99,235,0.15);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s ease;
    opacity:0;
    visibility:hidden;
    z-index:999;
}

.back-to-top svg{
    transition:.3s ease;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.back-to-top:hover{
    background:#2563eb;
    color:#fff;
    transform:translateX(-50%) translateY(-5px) scale(1.08);
    box-shadow:0 15px 40px rgba(37,99,235,.5);
}

.back-to-top:hover svg{
    transform:translateY(-2px);
}

/* ================= POLICY PAGE ================= */

.policy-hero{
    background:linear-gradient(135deg,#0f172a,#0b1220);
    padding:120px 20px 80px;
    text-align:center;
}

.policy-hero h1{
    font-size:42px;
    color:#fff;
    margin-bottom:10px;
}

.policy-hero p{
    color:#94a3b8;
    font-size:14px;
}

.policy-content{
    background:#0b1220;
    padding:80px 20px 120px;
}

.policy-wrapper{
    max-width:900px;
    margin:auto;
}

.policy-wrapper h2{
    color:#fff;
    margin-top:50px;
    margin-bottom:15px;
}

.policy-wrapper p{
    color:#94a3b8;
    line-height:1.8;
}

.cookie-box{
    background:#111827;
    border:1px solid #1f2937;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    transition:.3s ease;
}

.cookie-box:hover{
    border-color:#2563eb;
    box-shadow:0 10px 30px rgba(37,99,235,.15);
}

/* ================= COOKIE BANNER ================= */

#cookieConsentBanner{
position:fixed;
bottom:25px;
left:50%;
transform:translateX(-50%);

width:90%;
max-width:850px;

background:#0b1220;
border:1px solid #1f2937;
border-radius:14px;

padding:18px 22px;

display:flex;
align-items:center;
justify-content:space-between;
gap:20px;

box-shadow:0 20px 60px rgba(0,0,0,.6);

z-index:9999;

animation:cookieFade .4s ease;
}

.cookie-consent-text{
font-size:14px;
color:#cbd5e1;
flex:1;
}

.cookie-consent-text a{
color:#2563eb;
text-decoration:none;
font-weight:500;
}

.cookie-consent-actions{
display:flex;
gap:10px;
}

.cookie-consent-btn{
padding:8px 16px;
border-radius:8px;
border:none;
font-size:14px;
cursor:pointer;
transition:.3s;
}

.cookie-consent-btn.accept{
background:#2563eb;
color:#fff;
}

.cookie-consent-btn.reject{
background:#374151;
color:#fff;
}

.cookie-consent-btn:hover{
transform:translateY(-2px);
}

@keyframes cookieFade{
from{opacity:0;transform:translate(-50%,20px);}
to{opacity:1;transform:translate(-50%,0);}
}

/* RESPONSIVO */

@media(max-width:768px){

#cookieConsentBanner{
flex-direction:column;
text-align:center;
}

.cookie-consent-actions{
justify-content:center;
}

}
