/* =====================================================
   HOSTCOMP
   Site Oficial
===================================================== */

:root{

    --azul:#2563EB;
    --azul2:#3B82F6;

    --verde:#22C55E;

    --texto:#FFFFFF;

    --texto2:#CBD5E1;

    --fundo:#07111F;

    --fundo2:#0C1C34;

    --card:rgba(255,255,255,.06);

    --borda:rgba(255,255,255,.08);

    --sombra:0 25px 60px rgba(0,0,0,.35);

    --radius:20px;

    --container:1280px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--fundo);

    color:var(--texto);

    overflow-x:hidden;

}

/* =====================================================
   FUNDO
===================================================== */

body{

    background:

    radial-gradient(circle at top left,#2563EB22,transparent 30%),

    radial-gradient(circle at bottom right,#3B82F622,transparent 35%),

    linear-gradient(140deg,#07111F,#0B1830,#10284C);

}

/* =====================================================
   CONTAINER
===================================================== */

.container{

    width:92%;

    max-width:var(--container);

    margin:auto;

}

/* =====================================================
   HEADER
===================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:84px;

    display:flex;

    align-items:center;

    z-index:999;

    background:rgba(8,17,31,.55);

    backdrop-filter:blur(18px);

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

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* =====================================================
   LOGO
===================================================== */

.logo{

    font-size:34px;

    font-weight:900;

    color:#FFF;

    text-decoration:none;

    letter-spacing:1px;

}

.logo span{

    color:var(--azul2);

}

/* =====================================================
   MENU
===================================================== */

nav{

    display:flex;

    gap:40px;

}

nav a{

    color:#FFF;

    text-decoration:none;

    font-weight:600;

    transition:.30s;

    position:relative;

}

nav a:hover{

    color:#4F8CFF;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--azul2);

    transition:.30s;

}

nav a:hover::after{

    width:100%;

}

/* =====================================================
   BOTÕES
===================================================== */

.btn-menu,

.btn-primary,

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:14px;

    font-weight:700;

    transition:.30s;

}

.btn-menu{

    padding:14px 26px;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    color:#FFF;

}

.btn-menu:hover{

    transform:translateY(-3px);

}

.btn-primary{

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    color:#FFF;

    padding:18px 34px;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(37,99,235,.35);

}

.btn-secondary{

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

    color:#FFF;

    padding:18px 34px;

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

}

.btn-secondary:hover{

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

}

/* =====================================================
   HERO
===================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle,#3B82F610,transparent 50%);

}

.hero-content{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:5;

}

.hero-left h1{

    font-size:68px;

    line-height:1.05;

    font-weight:900;

    margin:22px 0;

}

.hero-left p{

    font-size:21px;

    line-height:1.8;

    color:var(--texto2);

    max-width:650px;

}

.badge{

    display:inline-flex;

    padding:10px 20px;

    border-radius:50px;

    background:#2563EB22;

    color:#8AB8FF;

    font-weight:700;

    border:1px solid #2563EB55;

}

/* =====================================================
   BOTÕES HERO
===================================================== */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}

/* =====================================================
   CARD GLASS
===================================================== */

.glass-card{

    padding:35px;

    border-radius:26px;

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

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

    backdrop-filter:blur(18px);

    box-shadow:var(--sombra);

}

/* =====================================================
   STATUS
===================================================== */

.status{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:30px;

    font-weight:700;

}

.status span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--verde);

    box-shadow:0 0 18px var(--verde);

}

/* =====================================================
   SERVERS
===================================================== */

.server-box{

    padding:22px;

    border-radius:16px;

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

    margin-bottom:18px;

    transition:.30s;

    border:1px solid transparent;

}

.server-box:hover{

    transform:translateX(8px);

    border-color:#2563EB55;

}

.server-box h3{

    margin-bottom:8px;

    font-size:20px;

}

.server-box small{

    color:var(--texto2);

}

/* =====================================================
   NÚMEROS
===================================================== */

.numbers{

    padding:90px 0;

}

.numbers .container{

    display:grid;

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

    gap:25px;

}

.number{

    text-align:center;

    padding:35px;

    border-radius:20px;

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

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

}

.number h2{

    font-size:42px;

    color:#4F8CFF;

    margin-bottom:12px;

}

.number p{

    color:var(--texto2);

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1100px){

    .hero-content{

        grid-template-columns:1fr;

    }

    .hero-left{

        text-align:center;

    }

    .hero-left p{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

}

@media(max-width:900px){

    nav{

        display:none;

    }

    .hero-left h1{

        font-size:48px;

    }

    .numbers .container{

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

    }

}

@media(max-width:600px){

    .hero-left h1{

        font-size:36px;

    }

    .hero-left p{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .numbers .container{

        grid-template-columns:1fr;

    }

}

/*======================================================
PLANOS
======================================================*/

.plans{

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#60A5FA;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:48px;

    margin:20px 0;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--texto2);

    line-height:1.8;

}

.plans-grid{

    display:grid;

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

    gap:35px;

}

.plan{

    position:relative;

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

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

    border-radius:24px;

    padding:45px;

    transition:.35s;

}

.plan:hover{

    transform:translateY(-12px);

    border-color:#3B82F6;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.plan h3{

    font-size:30px;

    margin-bottom:25px;

}

.price{

    font-size:52px;

    font-weight:900;

    color:#60A5FA;

    margin-bottom:30px;

}

.price small{

    font-size:18px;

    color:var(--texto2);

}

.plan ul{

    list-style:none;

    margin-bottom:40px;

}

.plan li{

    margin:16px 0;

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--texto2);

}

.plan li i{

    color:#22C55E;

}

.plan .btn-primary{

    width:100%;

}

.destaque{

    border:2px solid #3B82F6;

    transform:scale(1.05);

}

.best{

    position:absolute;

    top:-16px;

    left:50%;

    transform:translateX(-50%);

    background:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

@media(max-width:1000px){

    .plans-grid{

        grid-template-columns:1fr;

    }

    .destaque{

        transform:none;

    }

}

/*======================================================
RECURSOS
======================================================*/

.features{

    padding:120px 0;

}

.features-grid{

    display:grid;

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

    gap:30px;

}

.feature-card{

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

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

    border-radius:22px;

    padding:40px 30px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#2563EB,#60A5FA);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:26px;

    margin-bottom:15px;

}

.feature-card p{

    color:var(--texto2);

    line-height:1.8;

}

@media(max-width:1000px){

    .features-grid{

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

    }

}

@media(max-width:700px){

    .features-grid{

        grid-template-columns:1fr;

    }

}

/*======================================================
INFRAESTRUTURA
======================================================*/

.infra{

    padding:140px 0;

}

.infra-grid{

    display:grid;

    grid-template-columns:1fr 500px;

    gap:70px;

    align-items:center;

}

.section-mini{

    color:#60A5FA;

    font-weight:700;

    letter-spacing:2px;

}

.infra-left h2{

    font-size:52px;

    margin:20px 0;

    line-height:1.15;

}

.infra-left p{

    color:var(--texto2);

    font-size:19px;

    line-height:1.8;

    margin-bottom:40px;

}

.infra-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.infra-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.infra-list i{

    color:#22C55E;

}

.status-panel{

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

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

    border-radius:24px;

    padding:35px;

    backdrop-filter:blur(20px);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.status-panel h3{

    margin-bottom:35px;

    font-size:28px;

}

.status-item{

    display:flex;

    justify-content:space-between;

    margin-top:20px;

    margin-bottom:8px;

}

.progress{

    height:10px;

    border-radius:20px;

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

    overflow:hidden;

    margin-bottom:18px;

}

.progress div{

    height:100%;

    border-radius:20px;

    background:linear-gradient(90deg,#2563EB,#60A5FA);

}

@media(max-width:1000px){

    .infra-grid{

        grid-template-columns:1fr;

    }

    .infra-list{

        grid-template-columns:1fr;

    }

}
/*======================================================
WORLD MAP
======================================================*/

.world{

    padding:140px 0;

}

.world-box{

    position:relative;

    margin-top:70px;

}

.world-map{

    position:relative;

    height:600px;

    border-radius:30px;

    overflow:hidden;

    background:

    radial-gradient(circle at center,#1A4C9A22,transparent 60%),

    linear-gradient(180deg,#08111E,#0B1830);

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

}

/* MAPA */

.world-map::before{

    content:"";

    position:absolute;

    inset:0;

    background:url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');

    background-repeat:no-repeat;

    background-position:center;

    background-size:90%;

    opacity:.10;

}

/* PONTOS */

.point{

    position:absolute;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#22C55E;

    box-shadow:

    0 0 15px #22C55E,

    0 0 40px #22C55E;

    animation:pulse 2s infinite;

}

.p1{top:170px;left:180px;}
.p2{top:145px;left:420px;}
.p3{top:205px;left:640px;}
.p4{top:280px;left:760px;}
.p5{top:250px;left:930px;}
.p6{top:140px;left:1060px;}

/* LINHAS */

.line{

    position:absolute;

    height:2px;

    background:linear-gradient(90deg,#2563EB,#60A5FA);

    opacity:.7;

}

.l1{

    width:240px;

    top:180px;

    left:195px;

}

.l2{

    width:230px;

    top:160px;

    left:435px;

}

.l3{

    width:170px;

    top:215px;

    left:655px;

}

.l4{

    width:190px;

    top:255px;

    left:775px;

}

/* CARDS */

.world-info{

    display:grid;

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

    gap:25px;

    margin-top:40px;

}

.info-card{

    text-align:center;

    padding:35px;

    border-radius:20px;

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

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

}

.info-card h3{

    color:#60A5FA;

    font-size:38px;

    margin-bottom:12px;

}

.info-card p{

    color:#CBD5E1;

}

/* ANIMAÇÃO */

@keyframes pulse{

    0%{

        transform:scale(.9);

    }

    50%{

        transform:scale(1.4);

    }

    100%{

        transform:scale(.9);

    }

}

@media(max-width:1000px){

    .world-map{

        height:420px;

    }

    .world-info{

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

    }

}

@media(max-width:650px){

    .world-info{

        grid-template-columns:1fr;

    }

}

/*======================================================
FOOTER
======================================================*/

.footer{

    margin-top:120px;

    background:#050B15;

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

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    padding:80px 0;

}

.footer h4{

    margin-bottom:20px;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin:14px 0;

    color:#CBD5E1;

}

.footer a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#60A5FA;

}

.footer-text{

    margin-top:25px;

    color:#CBD5E1;

    line-height:1.9;

    max-width:400px;

}

.footer-bottom{

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

    text-align:center;

    padding:25px;

    color:#94A3B8;

}

/*======================================================
WHATSAPP
======================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:64px;

    height:64px;

    border-radius:50%;

    background:#25D366;

    color:#FFF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*======================================================
TOPO
======================================================*/

.topo{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#2563EB;

    color:#FFF;

    cursor:pointer;

    font-size:22px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:998;

}

.topo.show{

    opacity:1;

    visibility:visible;

}

.topo:hover{

    transform:translateY(-4px);

}

/*======================================================
ANIMAÇÕES
======================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.reveal.active{

    opacity:1;

    transform:none;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

}

.whatsapp{

right:18px;

bottom:18px;

}

.topo{

right:18px;

bottom:92px;

}

}
/*====================================
FUNDO ANIMADO
====================================*/

#bg-animation{

    position:fixed;

    inset:0;

    width:100%;

    height:100%;

    z-index:-2;

}

body{

    background:#07111F;

}

/* Nebulosas */

body::before{

    content:"";

    position:fixed;

    inset:-20%;

    z-index:-3;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(37,99,235,.20),
    transparent 35%),

    radial-gradient(circle at 80% 35%,
    rgba(59,130,246,.18),
    transparent 30%),

    radial-gradient(circle at 50% 80%,
    rgba(6,182,212,.15),
    transparent 40%);

    animation:nebula 18s ease-in-out infinite alternate;

}

@keyframes nebula{

    from{

        transform:scale(1)
                  rotate(0deg);

    }

    to{

        transform:scale(1.2)
                  rotate(8deg);

    }

}