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

:root{
    --bg:#050816;
    --bg-secondary:#0b1120;
    --card:#0f172a;
    --primary:#00c7c7;
    --primary-dark:#0891b2;
    --text:#ffffff;
    --muted:#cbd5e1;
    --muted-dark:#94a3b8;
    --border:rgba(255,255,255,.08);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
}

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

/* HEADER */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(5,8,22,.82);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:95px;
}

.logo{
    height:100px;
    width:auto;
}

.menu{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.menu a{
    text-decoration:none;
    color:var(--muted);
    font-weight:500;
    transition:.3s;
}

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

.btn-menu,
.btn-primary{
    background:var(--primary);
    color:#041014;
    padding:14px 24px;
    border-radius:12px;
    font-weight:800;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 0 20px rgba(0,199,199,.35);
    transition:.3s;
}

.btn-menu:hover,
.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 0 32px rgba(0,199,199,.55);
}

.btn-secondary{
    border:1px solid var(--border);
    color:var(--text);
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.btn-secondary:hover{
    border-color:var(--primary);
    color:var(--primary);
}

/* MENU MOBILE */

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.04);
    border-radius:10px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:var(--text);
    display:block;
    transition:.3s;
}

/* HERO */

.hero{
    min-height:100vh;
    padding-top:130px;
    display:flex;
    align-items:center;
    background:
    radial-gradient(circle at top right, rgba(0,199,199,.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(14,165,233,.12), transparent 35%),
    var(--bg);
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
    pointer-events:none;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}

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

.tag{
    color:var(--primary);
    font-weight:700;
    letter-spacing:.5px;
    display:inline-block;
    margin-bottom:18px;
}

.hero h1{
    font-size:4rem;
    line-height:1.08;
    margin-bottom:24px;
    letter-spacing:-1.5px;
}

.hero p{
    color:var(--muted);
    font-size:1.13rem;
    line-height:1.9;
    max-width:740px;
}

.hero p strong{
    color:var(--primary);
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.trust-line{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
}

.trust-line span{
    background:rgba(255,255,255,.045);
    border:1px solid var(--border);
    padding:10px 14px;
    border-radius:999px;
    color:var(--muted);
    font-size:.95rem;
}

/* HERO PANEL */

.hero-panel{
    position:relative;
}

.panel-card{
    background:linear-gradient(180deg, rgba(15,23,42,.92), rgba(11,17,32,.92));
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
    backdrop-filter:blur(18px);
}

.panel-header{
    display:flex;
    gap:8px;
    margin-bottom:28px;
}

.dot{
    width:11px;
    height:11px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
}

.dot.active{
    background:var(--primary);
    box-shadow:0 0 18px rgba(0,199,199,.7);
}

.panel-card h3{
    font-size:1.6rem;
    margin-bottom:28px;
}

.status-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.status-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    padding:16px;
    border-radius:16px;
}

.status-icon{
    width:14px;
    height:14px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 15px rgba(0,199,199,.8);
    flex:none;
}

.status-item strong{
    display:block;
    margin-bottom:4px;
}

.status-item small{
    color:var(--muted-dark);
}

.panel-badges{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:18px;
}

.floating-card{
    background:rgba(15,23,42,.92);
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    backdrop-filter:blur(16px);
}

.floating-card strong{
    display:block;
    color:var(--primary);
    margin-bottom:6px;
}

.floating-card span{
    color:var(--muted);
    font-size:.9rem;
}

/* STATS */

.stats{
    padding:32px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:linear-gradient(90deg, rgba(0,199,199,.05), rgba(255,255,255,.015));
}

.stats-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
}

.stat-item{
    flex:1;
    min-width:220px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:22px 24px;
}

.stat-item strong{
    display:block;
    color:var(--primary);
    font-size:1.4rem;
    margin-bottom:7px;
}

.stat-item span{
    color:var(--muted);
}

/* SECTIONS */

.section-padding{
    padding:110px 0;
}

.section-header{
    text-align:center;
    max-width:780px;
    margin:0 auto 55px;
}

.section-header span{
    color:var(--primary);
    font-weight:700;
}

.section-header h2{
    font-size:2.7rem;
    line-height:1.15;
    margin:14px 0;
    letter-spacing:-1px;
}

.section-header p{
    color:var(--muted);
    line-height:1.8;
}

/* SERVICES */

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

.card{
    background:linear-gradient(180deg, rgba(15,23,42,.9), rgba(11,17,32,.9));
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,199,199,.65);
    box-shadow:0 25px 70px rgba(0,199,199,.08);
}

.card-icon{
    font-size:2rem;
    margin-bottom:22px;
}

.card h3{
    margin-bottom:18px;
    font-size:1.35rem;
}

.card p{
    color:var(--muted);
    line-height:1.8;
}

/* FEATURES */

.features{
    background:var(--bg-secondary);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.feature-item{
    background:rgba(255,255,255,.035);
    border:1px solid var(--border);
    padding:28px;
    border-radius:20px;
}

.feature-item h3{
    color:var(--text);
    margin-bottom:14px;
    font-size:1.1rem;
}

.feature-item p{
    color:var(--muted);
    line-height:1.7;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}

.about-content h2{
    font-size:2.6rem;
    line-height:1.15;
    margin-bottom:25px;
    letter-spacing:-1px;
}

.about-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:18px;
}

.about-box{
    background:linear-gradient(180deg, rgba(15,23,42,.95), rgba(11,17,32,.95));
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
}

.about-box h3{
    margin-bottom:20px;
    color:var(--primary);
}

.about-box ul{
    list-style:none;
}

.about-box li{
    padding:13px 0;
    border-bottom:1px solid var(--border);
    color:var(--muted);
}

.about-box li:last-child{
    border-bottom:none;
}

/* CONTACT */

.contact{
    background:
    radial-gradient(circle at center, rgba(0,199,199,.12), transparent 35%),
    var(--bg-secondary);
}

.contato-box{
    text-align:center;
    max-width:1100px;
}

.contato-box h2{
    font-size:2.8rem;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.contato-box > p{
    color:var(--muted);
    margin-bottom:30px;
    font-size:1.1rem;
}

.contact-info{
    margin-top:45px;
    display:grid;
    grid-template-columns:1.7fr 1.2fr 1.2fr 1fr;
    gap:18px;
}

.contact-card{
    background:rgba(255,255,255,.04);
    border:1px solid var(--border);
    border-radius:18px;
    padding:24px 26px;
    min-width:0;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
    border-color:rgba(0,199,199,.55);
    box-shadow:0 20px 50px rgba(0,199,199,.08);
}

.contact-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(0,199,199,.12);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
    margin-bottom:12px;
    border:1px solid rgba(0,199,199,.25);
}

.contact-card strong{
    display:block;
    color:var(--primary);
    margin-bottom:8px;
}

.contact-card small{
    color:var(--muted);
    font-size:.95rem;
    white-space:nowrap;
}

.contact-card:first-child small{
    font-size:.9rem;
}

/* FOOTER */

.footer{
    background:#030712;
    border-top:1px solid var(--border);
    padding-top:55px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
}

.footer-logo{
    height:80px;
    margin-bottom:18px;
}

.footer p{
    color:var(--muted-dark);
    line-height:1.7;
    margin-bottom:8px;
}

.footer h3{
    margin-bottom:18px;
    color:var(--text);
}

.footer-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--muted-dark);
    text-decoration:none;
    line-height:1.7;
    margin-bottom:10px;
    transition:.3s;
}

.footer-link span{
    color:var(--primary);
    width:18px;
    display:inline-flex;
    justify-content:center;
}

.footer-link:hover{
    color:var(--primary);
}

.footer-bottom{
    border-top:1px solid var(--border);
    padding:22px;
    text-align:center;
    color:var(--muted-dark);
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    background:var(--primary);
    color:#041014;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:1.6rem;
    font-weight:900;
    box-shadow:0 0 30px rgba(0,199,199,.45);
    z-index:998;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1050px){

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

    .hero-panel{
        max-width:620px;
    }

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

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

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

    .contact-card small{
        white-space:normal;
    }

}

.contact-icon svg{
    width:22px;
    height:22px;
    stroke:var(--primary);
    fill:none;
    stroke-width:2;
}

.footer-link svg{
    width:18px;
    height:18px;
    stroke:var(--primary);
    fill:none;
    stroke-width:2;
}

@media(max-width:850px){

    .navbar{
        min-height:80px;
    }

    .logo{
        height:75px;
    }

    .menu-toggle{
        display:flex;
    }

    .menu{
        position:absolute;
        top:80px;
        left:5%;
        width:90%;
        background:rgba(11,17,32,.98);
        border:1px solid var(--border);
        border-radius:18px;
        padding:22px;
        flex-direction:column;
        align-items:flex-start;
        display:none;
    }

    .menu.active{
        display:flex;
    }

    .btn-menu{
        display:none;
    }

    .hero{
        padding-top:120px;
        min-height:auto;
        padding-bottom:70px;
    }

    .hero h1{
        font-size:2.65rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .trust-line{
        flex-direction:column;
    }

    .panel-badges{
        grid-template-columns:1fr;
    }

    .section-header h2,
    .about-content h2,
    .contato-box h2{
        font-size:2rem;
    }

    .features-grid,
    .contact-info,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .contact-card small{
        white-space:normal;
    }

}

@media(max-width:480px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:2.25rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .section-padding{
        padding:80px 0;
    }

}