
/* CONDOPRO IA - CSS OTIMIZADO MOBILE FIRST */

:root{
--verde:#00E676;
--verde2:#00C853;
--preto:#050505;
--preto2:#0d0d0d;
--card:#141414;
--texto:#d8d8d8;
--branco:#fff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{scroll-behavior:smooth;}

body{
font-family:'Inter',sans-serif;
background:var(--preto);
color:#fff;
overflow-x:hidden;
line-height:1.6;
}

.container{
width:min(94%,1200px);
margin:auto;
}

section{
padding:70px 0;
}

.hero{
padding:90px 0 50px;
text-align:center;
background:radial-gradient(circle at center,rgba(0,230,118,.12),transparent 70%);
}

.hero .container{max-width:1000px;}

.hero-badge{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 20px;
border-radius:999px;
border:1px solid var(--verde);
background:#081a12;
font-weight:700;
margin-bottom:20px;
}

.hero h1{
font-size:clamp(2rem,4vw,4.2rem);
line-height:1.1;
font-weight:900;
max-width:900px;
margin:auto;
}

.hero-text{
max-width:700px;
margin:20px auto;
font-size:clamp(1rem,1.5vw,1.25rem);
color:var(--texto);
}

.hero-beneficios{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin-top:25px;
}

.hero-beneficios span,
.garantias span{
background:#111;
border:1px solid #222;
padding:10px 14px;
border-radius:10px;
}

.preco-box{margin-top:30px;}
.preco{font-size:clamp(3rem,6vw,5rem);font-weight:900;color:var(--verde);}
.parcelado{font-size:1.15rem;}

.btn-principal,
.btn-comprar-final{
display:flex;
justify-content:center;
align-items:center;
width:100%;
max-width:420px;
margin:30px auto 0;
padding:18px;
border-radius:14px;
text-decoration:none;
font-weight:900;
background:linear-gradient(135deg,#00E676,#00C853);
color:#000;
}

section h2{
font-size:clamp(1.8rem,3vw,3rem);
text-align:center;
margin-bottom:20px;
}

.cards,
.diferenciais-grid,
.dispositivos-grid,
.publico-grid,
.recebe-lista,
.cta-beneficios{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:30px;
}

.card,
.device-card,
.publico-card,
.recebe-lista div,
.diferenciais-grid div{
background:var(--card);
padding:24px;
border-radius:18px;
border:1px solid #222;
}

.video-wrapper{
aspect-ratio:16/9;
overflow:hidden;
border-radius:20px;
}

.video-wrapper iframe{
width:100%;
height:100%;
border:none;
}

.ia-box,
.cta-box,
.pwa-box,
.destaque-google{
background:#0d1f14;
border:1px solid var(--verde);
border-radius:20px;
padding:30px;
}

.comparacao-box{
max-width:800px;
margin:auto;
background:var(--card);
padding:30px;
border-radius:20px;
}

.linha-comparacao{
display:flex;
justify-content:space-between;
gap:15px;
padding:15px 0;
border-bottom:1px solid #222;
}

.faq-item{
background:#111;
border-radius:12px;
margin-bottom:12px;
overflow:hidden;
}

.faq-question{
width:100%;
padding:18px;
background:none;
border:none;
color:#fff;
text-align:left;
font-weight:700;
cursor:pointer;
}

.faq-answer{
max-height:0;
overflow:hidden;
padding:0 18px;
transition:.3s;
}

.faq-item.active .faq-answer{
max-height:300px;
padding-bottom:18px;
}

.cta-flutuante{
position:fixed;
bottom:12px;
left:50%;
transform:translateX(-50%);
width:min(95%,450px);
padding:18px;
text-align:center;
background:#00E676;
color:#000;
font-weight:900;
border-radius:14px;
text-decoration:none;
z-index:9999;
}

footer{
padding:50px 0 120px;
text-align:center;
}

/* MOBILE */

@media(max-width:768px){

.hero{
padding-top:80px;
padding-bottom:40px;
}

.hero h1{
font-size:2.2rem;
}

.hero-beneficios span{
font-size:.82rem;
padding:8px 10px;
}

.preco{
font-size:3rem;
}

section{
padding:55px 0;
}

.linha-comparacao{
flex-direction:column;
text-align:center;
}

.card,
.device-card,
.publico-card{
padding:20px;
}

}

/* FULL HD */

@media(min-width:1400px){

.container{
max-width:1400px;
}

.hero h1{
font-size:4.5rem;
}

}
