
@charset "UTF-8";

:root{
--primary:#00d4ff;
--secondary:#0066ff;
--dark:#07111f;
--dark2:#0e1728;
--light:#ffffff;
--gray:#9ca3af;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:var(--dark);
color:white;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

header{
position:fixed;
top:0;
width:100%;
z-index:1000;
backdrop-filter:blur(12px);
background:rgba(0,0,0,.3);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:30px;
font-weight:800;
background:linear-gradient(90deg,#00d4ff,#00ffb7);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.menu{
display:flex;
gap:30px;
}

.menu a{
color:white;
text-decoration:none;
transition:.3s;
}

.menu a:hover{
color:var(--primary);
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
url('img/banner-x1.png');
background-size:cover;
background-position:center;
}

.hero-content{
width:100%;
}

.hero h1{
font-size:70px;
font-weight:800;
margin-bottom:20px;
}

.hero h1 span{
color:var(--primary);
}

.hero p{
max-width:800px;
margin:auto;
font-size:22px;
color:#d1d5db;
line-height:1.7;
}

.buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:18px 38px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.4s;
}

.btn-primary{
background:linear-gradient(90deg,#00d4ff,#0066ff);
color:white;
}

.btn-primary:hover{
transform:translateY(-5px);
}

.btn-outline{
border:2px solid white;
color:white;
}

.section{
padding:110px 0;
}

.title{
text-align:center;
font-size:48px;
margin-bottom:60px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:25px;
transition:.4s;
}

.card p,
.card p a,
a[href^="tel"] {
    color: #fff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #fff;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin-bottom:15px;
color:var(--primary);
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.stat{
padding:35px;
text-align:center;
background:rgba(255,255,255,.05);
border-radius:20px;
}

.stat h2{
font-size:42px;
color:var(--primary);
}

.calculator{
background:var(--dark2);
padding:40px;
border-radius:25px;
max-width:700px;
margin:auto;
}

.calculator input,
.calculator select{
width:100%;
padding:15px;
margin-top:10px;
margin-bottom:20px;
border:none;
border-radius:10px;
}

.calc-btn{
width:100%;
padding:15px;
border:none;
background:linear-gradient(90deg,#00d4ff,#0066ff);
color:white;
font-size:18px;
border-radius:12px;
cursor:pointer;
}

.result{
margin-top:20px;
font-size:24px;
font-weight:700;
text-align:center;
}

.faq{
max-width:900px;
margin:auto;
}

details{
background:rgba(255,255,255,.05);
padding:20px;
border-radius:15px;
margin-bottom:15px;
}

summary{
cursor:pointer;
font-size: 18px;
font-weight:600;
}

footer{
background:#040912;
padding:40px 20px;
text-align:center;
color:#9ca3af;
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:70px;
height:70px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
text-decoration:none;
color:white;
box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.fade{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.show{
opacity:1;
transform:translateY(0);
}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.menu{
display:none;
}

.title{
font-size:34px;
}

}
