
:root{

--atlas-black:#050505;
--atlas-black2:#0D0D0D;
--atlas-card:#111111;

--atlas-gold:#C9982E;
--atlas-gold-light:#E0B44A;
--atlas-gold-dark:#8E6822;

--atlas-text:#FFFFFF;
--atlas-gray:#CFCFCF;

}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
     font-family:'Inter', sans-serif;
    background:#050505;
    color:#fff;
    line-height:1.6;
}

/* ==========================
HEADER ATLAS
========================== */

.header{

position:fixed;

top:0;

left:0;

width:100%;

background:rgba(5,5,5,.96);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(201,152,46,.20);

z-index:999;

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:90px;

}

.logo{

display:flex;

align-items:center;

text-decoration:none;

}

.logo img{

height:65px;

width:auto;

display:block;

transition:.3s;

}

.logo img:hover{

transform:scale(1.03);

}

nav{

display:flex;

gap:35px;

}

nav a{

color:white;

text-decoration:none;

font-weight:500;

transition:.3s;

position:relative;

}

nav a:hover{

color:#C9982E;

}

nav a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:#C9982E;

transition:.3s;

}

nav a:hover::after{

width:100%;

}

.btn-nav{

padding:14px 28px;

border-radius:12px;

text-decoration:none;

font-weight:700;

background:linear-gradient(

135deg,

#C9982E,

#E0B44A

);

color:black;

box-shadow:

0 0 25px rgba(201,152,46,.25);

transition:.3s;

}

.btn-nav:hover{

transform:translateY(-3px);

box-shadow:

0 0 35px rgba(201,152,46,.45);

}

@media(max-width:768px){

.header .container{

flex-direction:column;

height:auto;

padding:20px 0;

gap:20px;

}

.logo img{

height:55px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.btn-nav{

width:100%;

text-align:center;

}

}
/* ==========================
   BOTÕES
========================== */

.btn-primary,
.btn-secondary,
.btn-nav{
    display:inline-block;
    padding:15px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary,
.btn-nav{
    background:#C9982E;
    color:#050505;
}

.btn-secondary{
    border:2px solid #C9982E;
    color:#fff;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-nav:hover{
    transform:translateY(-3px);
}

/* HERO ATLAS */

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

background:

linear-gradient(
90deg,
rgba(0,0,0,.92) 0%,
rgba(0,0,0,.82) 35%,
rgba(0,0,0,.35) 65%,
rgba(0,0,0,.10) 100%
),

url("assets/capa.png");

background-size:cover;

background-position:center right;

background-repeat:no-repeat;

padding-top:120px;

padding-bottom:120px;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:

radial-gradient(

circle at left center,

rgba(201,152,46,.12),

transparent 40%

);

pointer-events:none;

}

.hero .container{

position:relative;

z-index:2;

}

.hero-grid{

display:grid;

grid-template-columns:650px 1fr;

align-items:center;

min-height:700px;

}

.hero-content{

max-width:620px;

}

.hero-content span{

display:inline-block;

font-size:14px;

letter-spacing:4px;

text-transform:uppercase;

color:#C9982E;

margin-bottom:20px;

}

.hero-content h1{

font-size:72px;

line-height:1.05;

font-weight:800;

margin-bottom:25px;

color:white;

}

.hero-content h1 strong{

color:#C9982E;

}

.hero-content p{

font-size:22px;

line-height:1.7;

color:#cfcfcf;

max-width:560px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.hero-buttons a{

padding:18px 34px;

border-radius:12px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.btn-primary{

background:

linear-gradient(

135deg,

#C9982E,

#E0B44A

);

color:black;

box-shadow:

0 0 30px rgba(201,152,46,.35);

}

.btn-secondary{

border:1px solid rgba(201,152,46,.4);

color:#E0B44A;

background:rgba(255,255,255,.03);

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-secondary:hover{

border-color:#C9982E;

transform:translateY(-3px);

}

@media(max-width:992px){

.hero{

background-position:75% center;

}

.hero-grid{

grid-template-columns:1fr;

text-align:center;

min-height:auto;

}

.hero-content{

margin:auto;

}

.hero-content h1{

font-size:48px;

}

.hero-buttons{

justify-content:center;

}

}

@media(max-width:768px){

.hero{

background-position:80% center;

padding-top:140px;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

}

/* ==========================
   ESTATÍSTICAS
========================== */

.stats{
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat{
    background:#0D0D0D;
    border-radius:18px;
    text-align:center;
    padding:35px;
}

.stat h2{
    color:#C9982E;
    font-size:42px;
}

.stat p{
    color:#bfc8d4;
}

/* =====================================================
   B.2 - SEÇÕES PRINCIPAIS
=====================================================*/

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title span{
    color:#C9982E;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
    margin-bottom:20px;
}

.section-title p{
    color:#b8c5d3;
    font-size:18px;
    line-height:1.8;
}

/* ==========================
   MÉTODO
========================== */

.method{
    background:#080808;
}

.method-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.method-card{
    background:#0D0D0D;
    border-radius:20px;
    padding:35px;
    transition:.3s;
}

.method-card:hover{
    transform:translateY(-8px);
}

.method-card span{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#C9982E;
    color:#050505;
    border-radius:50%;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.method-card h3{
    margin-bottom:15px;
}

.method-card p{
    color:#b8c5d3;
}

/* ==========================
   BENEFÍCIOS
========================== */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-card{
    background:#0D0D0D;
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card h3{
    margin-bottom:15px;
    color:#C9982E;
}

.benefit-card p{
    color:#b8c5d3;
}

/* ==========================
   CASES
========================== */

.cases{
    background:#080808;
}

.cases-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.case-card{
    background:#0D0D0D;
    text-align:center;
    padding:45px;
    border-radius:20px;
}

.case-card h3{
    font-size:48px;
    color:#C9982E;
    margin-bottom:15px;
}

.case-card p{
    color:#b8c5d3;
}

/* ==========================
   CALCULADORA
========================== */

.calc-box{
    max-width:700px;
    margin:auto;
    background:#0D0D0D;
    padding:40px;
    border-radius:25px;
}

.calc-box input{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:none;
    border-radius:12px;
    background:#111111;
    color:#fff;
    font-size:17px;
}

.calc-box input::placeholder{
    color:#9fb1c2;
}

.calc-box button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#C9982E;
    color:#050505;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.calc-box button:hover{
    transform:translateY(-3px);
}

#resultadoTexto{
    margin-top:25px;
    text-align:center;
    color:#C9982E;
    font-size:32px;
}

/* ==========================
   DEPOIMENTOS
========================== */

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial{
    background:#0D0D0D;
    border-radius:20px;
    padding:30px;
}

.testimonial p{
    margin:20px 0;
    color:#c4d1dd;
    line-height:1.8;
}

.testimonial strong{
    color:#C9982E;
}

/* ==========================
   CTA FINAL
========================== */

.cta-final{
    background:linear-gradient(135deg,#C9982E,#8E6822);
    color:#050505;
    text-align:center;
}

.cta-final h2{
    font-size:44px;
    margin-bottom:20px;
}

.cta-final p{
    font-size:20px;
    margin-bottom:35px;
}

.cta-final .btn-primary{
    background:#050505;
    color:#fff;
}

/* =====================================================
   B.3 - FUNIL PREMIUM ATLAS GROWTH
=====================================================*/

.lead-section{
    background:#050505;
    padding:120px 0;
}

.funil{
    max-width:850px;
    margin:0 auto;
    background:#0D0D0D;
    padding:50px;
    border-radius:24px;
    border:1px solid rgba(201,152,46,.20);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.progress-container{
    width:100%;
    height:10px;
    background:#1a1a1a;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
}

#progress-bar{
    width:6.6%;
    height:100%;
    background:linear-gradient(90deg,#C9982E,#E0B44A);
    transition:width .4s ease;
}

.step{
    display:none;
    animation:fade .4s ease;
}

.step.active{
    display:block;
}

.step-counter{
    display:inline-block;
    color:#C9982E;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.step h2{
    font-size:38px;
    margin-bottom:15px;
}

.step p{
    color:#b8c5d3;
    margin-bottom:30px;
    line-height:1.7;
}

.step input,
.step select,
.step textarea{

    width:100%;
    padding:18px;
    background:#111111;
    border:2px solid transparent;
    border-radius:12px;
    color:#fff;
    font-size:17px;
    margin-bottom:30px;
    transition:.3s;

}

.step input:focus,
.step select:focus,
.step textarea:focus{

    outline:none;
    border-color:#C9982E;

}

.step textarea{

    resize:vertical;
    min-height:150px;

}

.acoes{

    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:10px;

}

.acoes button{

    flex:1;
    padding:18px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:.3s;

}

.back{

    background:#2b4258;
    color:#fff;

}

.next{

    background:#C9982E;
    color:#050505;

}

.back:hover{

    background:#3a546d;

}

.next:hover{

    transform:translateY(-3px);

}

#enviarLead{

    background:#C9982E;
    color:#050505;
    font-size:18px;
    font-weight:700;

}

#enviarLead:hover{

    transform:translateY(-3px);

}

.resumo{

    background:#111111;
    border-radius:16px;
    padding:30px;
    margin:35px 0;

}

.resumo p{

    margin:12px 0;
    color:#fff;

}

/* Animação */

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* =====================================================
   B.4 - RESPONSIVIDADE E EFEITOS
=====================================================*/

/* ---------- EFEITOS GERAIS ---------- */

.hero,
.method-card,
.benefit-card,
.case-card,
.testimonial,
.funil,
.stat{
    transition:all .35s ease;
}

.method-card:hover,
.benefit-card:hover,
.case-card:hover,
.testimonial:hover,
.stat:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(201,152,46,.15);

}

.hero-card{

    transition:.35s;

}

.hero-card:hover{

    transform:scale(1.02);

}

/* ---------- SCROLL ---------- */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#050505;

}

::-webkit-scrollbar-thumb{

    background:#C9982E;

    border-radius:30px;

}

/* ---------- SELEÇÃO ---------- */

::selection{

    background:#C9982E;

    color:#050505;

}

/* ---------- TABLETS ---------- */

@media(max-width:1024px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.method-grid{

grid-template-columns:repeat(2,1fr);

}

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

.cases-grid{

grid-template-columns:1fr;

}

.testimonials-grid{

grid-template-columns:1fr;

}

}

/* ---------- CELULARES ---------- */

@media(max-width:768px){

.header{

padding:15px 0;

}

.header .container{

flex-direction:column;

height:auto;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.hero{

padding-top:160px;

}

.hero h1{

    font-size:10px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:-0.3px;

    max-width:600px;

}

}

.hero p{

    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.75);
    max-width:520px;

}

.badge{

    display:inline-block;
    padding:10px 18px;
    border-radius:30px;

    background:rgba(201,152,46,.12);
    border:1px solid rgba(201,152,46,.35);

    color:#C9982E;
    font-weight:600;
    letter-spacing:2px;
    font-size:12px;

    margin-bottom:18px;

}

.hero{

    position:relative;

    background:
    linear-gradient(
        90deg,
        rgba(5,5,5,.95) 0%,
        rgba(5,5,5,.70) 40%,
        rgba(5,5,5,.20) 70%,
        rgba(5,5,5,.10) 100%
    ),
    url("./assets/capa.png");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;

    padding:140px 0;

}

.section-title h2{

font-size:30px;

}

.stats-grid{

grid-template-columns:1fr;

}

.method-grid{

grid-template-columns:1fr;

}

.benefits-grid{

grid-template-columns:1fr;

}

.hero-card{

margin-top:40px;

}

.funil{

padding:30px;

}

.step h2{

font-size:28px;

}

.acoes{

flex-direction:column;

}

.acoes button{

width:100%;

}

.calc-box{

padding:25px;

}

.cta-final h2{

font-size:32px;

}

/* ---------- TELAS MUITO PEQUENAS ---------- */

@media(max-width:480px){

.hero h1{

font-size:30px;

}

.logo{

font-size:24px;

}

.btn-primary,
.btn-secondary,
.btn-nav{

padding:14px 20px;

font-size:15px;

}

.step input,
.step select,
.step textarea{

font-size:16px;

padding:16px;

}

.step-counter{

font-size:13px;

}

}

/* ---------- ANIMAÇÕES ---------- */

.fade-up{

opacity:0;

transform:translateY(40px);

transition:.6s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

.zoom{

transition:.4s;

}

.zoom:hover{

transform:scale(1.03);

}

.glow{

box-shadow:0 0 30px rgba(201,152,46,.18);

}

.obrigado{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:#050505;

}

.box{

max-width:600px;

padding:50px;

background:#0d1b2d;

border-radius:20px;

text-align:center;

}

.box h1{

font-size:36px;

color:white;

margin-bottom:15px;

}

.box p{

color:#c7d0db;

line-height:1.6;

margin-bottom:30px;

}

.btn-whatsapp{

background:#C9982E;

padding:16px 34px;

border-radius:10px;

color:white;

font-weight:700;

text-decoration:none;

display:inline-block;

transition:.3s;

}

.btn-whatsapp:hover{

transform:translateY(-3px);

}

.logo img{

height:58px;

width:auto;

display:block;

}

.hero{

background:

linear-gradient(

90deg,

rgba(5,5,5,.92),

rgba(5,5,5,.78),

rgba(5,5,5,.35)

),

url("./assets/capa.png");

background-size:cover;

background-position:right center;

background-repeat:no-repeat;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 420px;

gap:60px;

align-items:center;

min-height:700px;

}

.hero-text{

max-width:700px;

}

.hero-card{

background:rgba(13,13,13,.75);

border:1px solid rgba(201,152,46,.25);

backdrop-filter:blur(12px);

padding:40px;

border-radius:20px;

}

.hero-card ul{

list-style:none;

padding:0;

margin-top:20px;

}

.hero-card li{

margin-bottom:16px;

color:#cfcfcf;

}

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

}

.hero-card{

display:none;

}

}

.hero{

    position:relative;

    background:
    linear-gradient(
        90deg,
        rgba(5,5,5,.92) 0%,
        rgba(5,5,5,.70) 40%,
        rgba(5,5,5,.30) 70%,
        rgba(5,5,5,.10) 100%
    ),

    url("./assets/capa.png");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;

}

.hero-card{
    display:none;
}

.badge{

    font-size:11px;
    letter-spacing:2.5px;
    padding:8px 14px;

    background:rgba(201,152,46,.10);
    border:1px solid rgba(201,152,46,.25);

    color:#C9982E;

}

.hero h1{
    font-size: 34px !important;
    line-height: 1.3;
    max-width: 900px;
}

.hero{
    padding: 140px 0 90px;
}

.hero-grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-start;
    gap: 40px;
}

.hero{
    padding: 110px 0 60px;
}

.hero h1{
    font-size: 30px !important;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.hero-text h1{
    max-width: 650px;
}

.hero-card img,
.hero img{
    max-height: 520px;
    object-fit: cover;
}

.hero-card img,
.hero img{
    max-height: 520px;
    object-fit: cover;
}

/* =========================
   HERO STATS PREMIUM (AJUSTADO)
========================= */

.hero-stats{
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 25px;
    max-width: 650px;
    flex-wrap: wrap;
}

.stat-card{
    flex: 1;
    min-width: 160px;
    background: linear-gradient(135deg, #0d0d0d, #111111);
    border: 1px solid rgba(201, 152, 46, 0.35);
    border-radius: 14px;
    padding: 16px 14px; /* 🔥 diminui espaço interno */
    text-align: center;
    backdrop-filter: blur(8px);
    transition: .25s;
}

.stat-card:hover{
    transform: translateY(-4px);
    border-color: #E0B44A;
    box-shadow: 0 12px 25px rgba(201,152,46,0.18);
}

.stat-card h2{
    font-size: 22px;
    color: #E0B44A; /* dourado premium */
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-card p{
    font-size: 12px;
    color: #CFCFCF;
    letter-spacing: .3px;
    margin: 0;
    line-height: 1.2;
}

/* MOBILE */
@media(max-width:768px){
    .hero-stats{
        flex-direction: column;
        max-width: 100%;
    }
}

.hero-image-bottom{
    margin-top: 40px;
    text-align: center;
}

.hero-image-bottom img{
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.capa2-section{
    width: 100%;
    margin: 0;
    padding: 0;
}

.capa2-section img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.atlas-estrutura{
    padding:100px 0;
    background:#050505 !important; /* preto puro Atlas */
    color:#ffffff; /* fundo preto Atlas */
}

/* GRID */
.grid-estrutura,
.grid-diferenciais{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

/* =========================
   CARDS ESTRUTURA (GOLD)
========================= */

.card-estrutura{
    background:#050505 !important; /* preto puro Atlas */
    color:#ffffff; /* cinza escuro neutro (SEM AZUL) */
    border:1px solid rgba(201,162,74,.25);
    padding:25px;
    border-radius:16px;
    transition:.3s;
}

.card-estrutura:hover{
    transform:translateY(-6px);
    border-color:#C9A24A;
    box-shadow:0 10px 25px rgba(201,162,74,.15);
}

.card-estrutura h3{
    color:#C9A24A;
    margin-bottom:10px;
    font-size:18px;
}

/* =========================
   CARDS DIFERENCIAIS
========================= */

.card-diferencial{
    background:#050505 !important; /* preto puro Atlas */
    color:#ffffff; /* removido azul, tom neutro escuro */
    border:1px solid rgba(201,162,74,.12);
    padding:25px;
    border-radius:16px;
    transition:.3s;
}

.card-diferencial:hover{
    transform:translateY(-6px);
    border-color:#C9A24A;
    box-shadow:0 10px 25px rgba(201,162,74,.12);
}

.card-diferencial h3{
    color:#C9A24A;
    margin-bottom:10px;
    font-size:16px;
}

.card-diferencial p{
    color:#ffffff;
    font-size:14px;
}

/* RESPONSIVO */
@media(max-width:900px){
    .grid-estrutura,
    .grid-diferenciais{
        grid-template-columns:1fr;
    }
}

section{
    background: transparent;
}

.capa3-section{
    width:100%;
    background:#050505;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 0;
}

.capa3-img{
    width:100%;
    max-width:1400px; /* largura máxima estilo site premium */
    height:auto;      /* mantém proporção (não corta imagem) */
    object-fit:contain;
    border-radius:16px;
}

/* ===== CHAT ATLAS ===== */

#atlas-chat-button{
    position:fixed;
    bottom:25px;
    right:25px;
    background:linear-gradient(135deg,#C9982E,#FFD36A);
    color:#08131f;
    padding:14px 18px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(201,152,46,0.4);
    z-index:9999;
}

#atlas-chat{
    position:fixed;
    bottom:90px;
    right:25px;
    width:320px;
    height:420px;
    background:#0b1622;
    border:1px solid rgba(201,152,46,0.3);
    border-radius:16px;
    display:none;
    flex-direction:column;
    overflow:hidden;
    z-index:9999;
}

.chat-header{
    background:#111f2e;
    color:#C9982E;
    padding:12px;
    display:flex;
    justify-content:space-between;
    font-weight:600;
}

#chat-messages{
    flex:1;
    padding:10px;
    overflow-y:auto;
    color:#fff;
    font-size:14px;
}

.chat-input{
    display:flex;
    border-top:1px solid rgba(255,255,255,0.1);
}

.chat-input input{
    flex:1;
    padding:10px;
    border:none;
    background:#122131;
    color:#fff;
}

.chat-input button{
    background:#C9982E;
    border:none;
    padding:10px;
    cursor:pointer;
    font-weight:700;
}

#atlas-floating-button{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#C9982E;
    color:#000;
    padding:14px 18px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    z-index:9999;
}

#atlas-chat{
    position:fixed;
    bottom:90px;
    right:25px;
    width:320px;
    height:420px;
    background:#0b1724;
    border:1px solid #C9982E;
    border-radius:12px;
    z-index:9999;
    display:flex;
    justify-content:center;
}

.atlas-chat-box{
    width:100%;
    display:flex;
    flex-direction:column;
}

.atlas-chat-header{
    background:#0f2233;
    color:#C9982E;
    padding:10px;
    display:flex;
    justify-content:space-between;
    font-weight:600;
}

.atlas-chat-messages{
    flex:1;
    padding:10px;
    overflow:auto;
    color:#fff;
    font-size:14px;
}

.atlas-chat-input{
    display:flex;
}

.atlas-chat-input input{
    flex:1;
    padding:10px;
    border:none;
}

.atlas-chat-input button{
    background:#C9982E;
    border:none;
    padding:10px;
    cursor:pointer;
}

#atlas-button{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#C9982E;
    padding:12px 16px;
    border-radius:30px;
    cursor:pointer;
    z-index:9999;
}

#atlas-box{
    position:fixed;
    bottom:80px;
    right:20px;
    width:300px;
    height:400px;
    background:#0b1724;
    border:1px solid #C9982E;
    display:flex;
    flex-direction:column;
    z-index:9999;
}

#atlas-header{
    padding:10px;
    background:#0f2233;
    color:#C9982E;
    display:flex;
    justify-content:space-between;
}

#atlas-messages{
    flex:1;
    padding:10px;
    overflow:auto;
    color:#fff;
}

#atlas-box input{
    padding:10px;
}

#atlas-box button{
    background:#C9982E;
    border:none;
    padding:10px;
    cursor:pointer;
}

#atlas-chat{

display:none;
position:fixed;
bottom:90px;
right:20px;
width:340px;
height:450px;

background:#070707;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.2);

flex-direction:column;

overflow:hidden;

z-index:9999;

}

#atlas-floating-button{

position:fixed;

right:20px;

bottom:20px;

background:#C9982E;

color:#000000;

padding:15px 22px;

border-radius:50px;

cursor:pointer;

font-weight:600;

z-index:9999;

}

.chat-header{

background:#C9982E;

color:#000000;

padding:15px;

display:flex;

justify-content:space-between;

font-weight:bold;

}

#chat-messages{

flex:1;

padding:15px;

overflow-y:auto;

}

.chat-input{

display:flex;

padding:10px;

gap:10px;

border-top:1px solid #eee;

}

.chat-input input{

flex:1;

padding:10px;

border:1px solid #ddd;

border-radius:8px;

}

.chat-input button{

padding:10px 18px;

background:#C9982E;

border:none;

color:white;

border-radius:8px;

cursor:pointer;

}

.step{

display:none;

}

.step.active{

display:block;

}

.progress-container{

width:100%;

height:8px;

background:#eee;

border-radius:10px;

overflow:hidden;

margin-bottom:30px;

}

#progress-bar{

width:6%;

height:100%;

background:#0d6efd;

transition:.4s;

}

.erro-campo{

color:#e53935;

font-size:14px;

margin-top:8px;

display:none;

}

.erro-campo.show{

display:block;

}

input.erro,
select.erro,
textarea.erro{

border:2px solid #e53935;

}

.erro-campo{

display:none;

color:#ff4d4d;

font-size:14px;

margin-top:8px;

}

.erro-campo.show{

display:block;

}

input.erro,
select.erro,
textarea.erro{

border:2px solid #ff4d4d;

}

.faq{

padding:90px 0;
background:#111111;

}

.faq-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:20px;

margin-top:60px;

}

.faq-card{

background:#080a0e;

border:1px solid rgba(12, 12, 12, 0.06);

border-radius:18px;

padding:28px;

transition:.35s;

backdrop-filter:blur(10px);

}

.faq-card:hover{

transform:translateY(-5px);

border-color:#C99A2E;

box-shadow:

0 10px 30px rgba(201,154,46,.15);

}

.faq-top{

display:flex;

align-items:center;

gap:16px;

margin-bottom:18px;

}

.faq-icon{

width:46px;

height:46px;

border-radius:12px;

background:rgba(201,154,46,.10);

display:flex;

align-items:center;

justify-content:center;

border:1px solid rgba(201,154,46,.20);

}

.faq-icon svg{

width:22px;

height:22px;

stroke:#C99A2E;

}

.faq-card h3{

font-size:17px;

font-weight:600;

color:#FFF;

line-height:1.4;

margin:0;

}

.faq-card p{

margin-top:8px;

font-size:14px;

line-height:1.7;

color:#C99A2E;

}

.faq-card:hover .faq-icon{

background:

rgba(201,154,46,.18);

}

.capa5-section{

    max-width:1400px;
    margin:auto;
    padding:40px 0;

}

.capa5-img{

    width:100%;
    height:500px;

    object-fit:cover;

    border-radius:24px;

}

html{
    scroll-behavior:smooth;
}

.calculator{

padding:120px 0;

background:#0d0d0d;

}

.calc-box{

max-width:900px;

margin:auto;

padding:50px;

border-radius:24px;

background:#111111;

border:1px solid rgba(245, 244, 241, 0.15);

display:flex;

flex-direction:column;

gap:18px;

}

.calc-box input{

padding:18px;

background:#171717;

border:1px solid rgba(212,175,55,.2);

border-radius:12px;

color:#fff;

font-size:16px;

outline:none;

}

.calc-box input:focus{

border-color:#D4AF37;

}

.calc-box button{

height:58px;

border:none;

border-radius:12px;

background:linear-gradient(
135deg,
#D4AF37,
#b68b2a
);

color:#111;

font-weight:700;

font-size:16px;

cursor:pointer;

transition:.3s;

}

.calc-box button:hover{

transform:translateY(-2px);

}

.resultado-atlas{

margin-top:25px;

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:20px;

}

.resultado-atlas div{

padding:24px;

border-radius:16px;

background:#000000;

text-align:center;

}

.resultado-atlas span{

display:block;

color:#999;

font-size:14px;

margin-bottom:10px;

}

.resultado-atlas h3{

color:#D4AF37;

font-size:32px;

margin:0;

}

@media(max-width:768px){

.resultado-atlas{

grid-template-columns:1fr;

}

}

.calculator{

background:#000;

padding:120px 0;

}