/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Segoe UI',sans-serif;
background:#ffffff;
color:#1e293b;
line-height:1.6;
}

/* NAVBAR */
/* TOP CONTACT BAR */

.top-bar{
    background:#0f172a;
    color:white;
    display:flex;
    justify-content:center;
    gap:40px;
    padding:10px;
    font-size:14px;
    font-weight:500;

    position:sticky;
    top:0;
    z-index:9999;
}

.top-bar span{
    display:flex;
    align-items:center;
}

@media(max-width:768px){

    .top-bar{
        flex-direction:column;
        gap:5px;
        text-align:center;
    }

}
header{
position:sticky;
top:40px;
z-index:999;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:70px;
width:auto;
display:block;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul li a{
text-decoration:none;
color:#1f2937;
font-weight:600;
transition:0.3s;
}

nav ul li a:hover

/* HERO */

#hero{
background:#f8fafc;
padding:100px 10%;
}

.hero-container{
    max-width:1300px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:40px 0;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:520px;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.hero-tag{
display:inline-block;
background:#ede9fe;
color:#6d28d9;
padding:8px 18px;
border-radius:30px;
margin-bottom:20px;
font-weight:600;
}

.hero-left h1{
font-size:60px;
line-height:1.2;
margin-bottom:25px;
}

.hero-left p{
font-size:22px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.btn-primary{
background:#6d28d9;
color:white;
padding:15px 32px;
border:none;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.btn-primary:hover{
opacity:0.9;
}

.btn-secondary{
border:2px solid #6d28d9;
color:#6d28d9;
background:white;
padding:15px 32px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.hero-stats{
display:flex;
gap:50px;
}

.hero-stats div{
text-align:center;
}

.hero-stats h3{
color:#6d28d9;
font-size:36px;
}

/* SECTIONS */

section{
padding:60px 8%;
}

section h2{
text-align:center;
font-size:38px;
margin-bottom:50px;
}

/* CARDS */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
color:#6d28d9;
margin-bottom:15px;
}

/* FAQ */

.faq-item{
background:white;
padding:25px;
border-radius:15px;
margin-bottom:15px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4{
margin-bottom:10px;
color:#1e293b;
}

/* CONTACT */

.contact-section{
background:#f8fafc;
}

form{
max-width:700px;
margin:auto;
}

input,
select,
textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border:1px solid #cbd5e1;
border-radius:10px;
}

textarea{
min-height:120px;
}

.submit-btn{
width:100%;
background:#6d28d9;
color:white;
border:none;
padding:16px;
border-radius:10px;
cursor:pointer;
font-size:16px;
}

.submit-btn:hover{
opacity:0.9;
}

/* WHATSAPP */

.whatsapp-btn{
position:fixed;
bottom:30px;
right:30px;
z-index:9999;

background:#25D366;
color:white;

padding:18px 24px;
border-radius:50px;

font-weight:600;
text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* FOOTER */

footer{
background:#0f172a;
color:white;
text-align:center;
padding:40px;
}

footer h3{
margin-bottom:15px;
}

footer p{
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:768px){

```
nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-left h1{
    font-size:38px;
}

.hero-left p{
    font-size:18px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-stats{
    flex-wrap:wrap;
    justify-content:center;
}
```

}
