/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#040b16;
    color:#fff;
    overflow-x:hidden;
}

/* VARIABLES */

:root{
    --primary:#00b7ff;
    --primary-dark:#007bff;

    --green:#00d68f;
    --green-soft:#00c27a;

    --dark:#07111f;
    --card:#0d1728;

    --text:#c5d3e0;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;

    background:rgba(2,8,18,.85);
    backdrop-filter:blur(16px);

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.navbar{

    max-width:1450px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

    padding:0 40px;
}

/* LOGO */

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

.logo img{

    height:220px;

    width:auto;

    object-fit:contain;

    filter:
    drop-shadow(0 0 12px rgba(0,183,255,.25))
    drop-shadow(0 0 20px rgba(0,214,143,.20));
}

/* MENU */

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

.menu a{

    color:#dbe7f5;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.3s;
}

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

/* HERO */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    padding:140px 20px 80px;

    background:
    linear-gradient(
    rgba(2,8,18,.84),
    rgba(2,8,18,.95)),
    url('../images/hero.jpg')
    center/cover no-repeat;
}

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

.hero h1{

    font-size:42px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:24px;
}

.hero h1 span{

    background:
    linear-gradient(
    90deg,
    #00b7ff,
    #00d68f);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{

    max-width:760px;

    margin:auto;

    color:#c7d3e2;

    font-size:17px;

    line-height:1.8;
}

/* BUTTONS */

.btn{

    display:inline-block;

    padding:15px 32px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-primary{

    background:
    linear-gradient(
    135deg,
    #00b7ff,
    #00d68f);

    color:#fff;
}

.btn-outline{

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;
}

/* SECTIONS */

.section{

    max-width:1450px;

    margin:auto;

    padding:90px 40px;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    font-size:42px;

    margin-bottom:15px;
}

.section-title p{

    color:#9ab0c7;
}

.section-title::after{

    content:'';

    display:block;

    width:90px;

    height:4px;

    margin:20px auto;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #00b7ff,
    #00d68f);
}

/* SERVICES */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;
}

.service-card{

    background:#0d1728;

    border-radius:20px;

    overflow:hidden;

    transition:.3s;

    border:
    1px solid rgba(255,255,255,.05);
}

.service-card:hover{

    transform:translateY(-6px);

    border-color:
    rgba(0,214,143,.2);
}

.service-image{

    height:190px;

    overflow:hidden;
}

.service-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.service-content{
    padding:20px;
}

.service-content h3{
    margin-bottom:10px;
}

.service-content p{

    color:#b8c8da;

    line-height:1.7;
}

/* ABOUT */

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about img{

    width:100%;

    border-radius:24px;
}

/* CONTACT */

.contact-box{

    background:#0d1728;

    padding:60px;

    border-radius:24px;
}

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.contact-item{

    background:
    rgba(255,255,255,.03);

    border-radius:14px;

    padding:25px;
}

/* FOOTER */

footer{

    text-align:center;

    padding:30px;

    color:#8ca0b9;
}

/* WHATSAPP */

.whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    text-decoration:none;

    z-index:9999;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:
        repeat(3,1fr);
    }
}

@media(max-width:992px){

    .services-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

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

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

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

@media(max-width:768px){

    .menu{
        display:none;
    }

    .logo img{
        height:95px;
    }

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

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

    .section{
        padding:70px 20px;
    }
}
