
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI', Arial, sans-serif;
    background:#08111f;
    color:#ffffff;
    line-height:1.7;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(5,10,20,.95);
    backdrop-filter:blur(12px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:24px;
    font-weight:700;
}

.logo img{
    width:120px;
    height:auto;
    object-fit:contain;
}

.menu{
    display:flex;
    align-items:center;
}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:28px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.menu a:hover{
    color:#33b5ff;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:140px 8% 100px;
    background:
    radial-gradient(circle at center,
    #0d6efd 0%,
    #081229 60%,
    #050912 100%);
}

.hero-content{
    max-width:950px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:22px;
    color:#d7e7ff;
}

.hero-buttons{
    margin-top:50px;
}

.btn{
    display:inline-block;
    padding:16px 36px;
    margin:10px;
    border-radius:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#00aaff;
    color:white;
    box-shadow:0 0 25px rgba(0,170,255,.45);
}

.btn-primary:hover{
    transform:translateY(-4px);
    background:#0095d9;
}

.btn-secondary{
    border:2px solid #ffffff;
    color:#ffffff;
}

.btn-secondary:hover{
    background:#ffffff;
    color:#08111f;
}

/* STATS */

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

.stat-box{
    background:#101b30;
    border:1px solid #1f3558;
    border-radius:16px;
    padding:35px;
    text-align:center;
}

.stat-box h3{
    font-size:42px;
    color:#33b5ff;
    margin-bottom:10px;
}

.stat-box p{
    color:#d7e7ff;
    font-weight:600;
}

/* SECTIONS */

.section{
    padding:100px 8%;
}

.section h2{
    text-align:center;
    font-size:46px;
    margin-bottom:40px;
}

.section-text{
    max-width:1000px;
    margin:auto;
    text-align:center;
    font-size:22px;
    color:#d7e7ff;
}

/* CARDS */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:40px;
}

.service-card{
    background:#101b30;
    border:1px solid #1f3558;
    border-radius:16px;
    padding:35px;
    text-align:center;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:#33b5ff;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.service-card h3{
    color:#33b5ff;
    margin-bottom:15px;
}

.service-card p{
    color:#d7e7ff;
}

/* CONTACT */

.contact-box{
    max-width:650px;
    margin:45px auto 0;
}

.contact-box p{
    margin:15px 0;
}

/* FOOTER */

.footer{
    text-align:center;
    padding:35px;
    background:#04070f;
    border-top:1px solid rgba(255,255,255,.08);
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:32px;
    color:white;
    z-index:9999;
    box-shadow:0 0 25px rgba(37,211,102,.5);
}
/* BROCHURE */

.brochure-box{
    max-width:700px;
    margin:40px auto;
    padding:40px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.brochure-box h3{
    color:#33b5ff;
    margin-bottom:15px;
}

/* CONTACT FORM */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#cfd8e3;
}

.contact-box{
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.contact-box h3{
    color:#33b5ff;
    margin-bottom:20px;
}
/* TABLET */

@media(max-width:1024px){

    .hero-content h1{
        font-size:54px;
    }

    .section h2{
        font-size:40px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:12px;
        padding:16px;
    }

    .logo{
        font-size:20px;
    }

    .logo img{
        width:42px;
        height:42px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .menu a{
        margin:6px 10px;
        font-size:14px;
    }

    .hero{
        padding:190px 20px 80px;
    }

    .hero-content h1{
        font-size:34px;
    }

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

    .btn{
        width:100%;
        max-width:320px;
        display:block;
        margin:12px auto;
    }

    .section{
        padding:70px 20px;
    }

    .section h2{
        font-size:30px;
    }

    .section-text{
        font-size:18px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .stats-section{
        grid-template-columns:1fr 1fr;
    }
}
