```css
/* ========================================
   RESET
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

/* ========================================
   CONTAINER
======================================== */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ========================================
   HEADER
======================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;

    min-height:95px;
}

.logo img{
    height:85px;
    width:auto;
    display:block;
}

/* ========================================
   MENU
======================================== */

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#00AEEF;
}

nav i{
    margin-right:6px;
}

/* ========================================
   HERO
======================================== */

.hero{
    position:relative;

    height:850px;

    background:
    linear-gradient(
        rgba(0,0,0,.20),
        rgba(0,0,0,.20)
    ),
    url("../imagens/banner-v2.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.overlay{
    display:none;
}

/* ========================================
   SEÇÕES
======================================== */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:50px;
}

/* ========================================
   SERVIÇOS
======================================== */

.servicos{
    background:#0a0a0a;
}

.cards{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#00AEEF;
}

.card i{
    font-size:3rem;
    color:#00AEEF;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#ccc;
    line-height:1.7;
}

/* ========================================
   GALERIA
======================================== */

.galeria{
    background:#050505;
}

.galeria-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:20px;

    align-items:center;
}

.galeria-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

.galeria-grid img{

    width:100%;
    height:200px;

    object-fit:contain;

    background:#111;

    border-radius:15px;

    border:2px solid rgba(255,255,255,.08);

    transition:.3s;
}

.galeria-grid img:hover{

    transform:scale(1.05);

    border-color:#00AEEF;

    box-shadow:
    0 0 20px rgba(0,174,239,.35);

}

.galeria-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,174,239,.25);
}

/* ========================================
   RIOGAMES
======================================== */

.riogames{
    background:#0a0a0a;
    text-align:center;
}

.logo-riogames{
    max-width:280px;
    margin-bottom:25px;
}

.riogames p{
    max-width:900px;
    margin:auto;

    color:#d0d0d0;

    line-height:1.8;

    font-size:1.1rem;
}

/* ========================================
   CLIENTES
======================================== */

.clientes{
    text-align:center;
}

.clientes p{
    max-width:800px;
    margin:auto;

    margin-bottom:30px;

    color:#ccc;

    line-height:1.8;
}

.lista-clientes{
    list-style:none;

    margin-bottom:35px;
}

.lista-clientes li{
    margin:10px 0;
    font-size:18px;
}

.btn-cliente{
    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    background:#00AEEF;

    color:#fff;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.btn-cliente:hover{
    transform:translateY(-3px);
}

/* ========================================
   CONTATO
======================================== */

.contato{
    background:#0a0a0a;
    text-align:center;
}

.contato p{
    margin:15px 0;
    font-size:18px;
}

.contato a{
    color:#00AEEF;
    text-decoration:none;
}

/* ========================================
   FOOTER
======================================== */

footer{
    background:#000;
    text-align:center;

    padding:40px 20px;

    border-top:1px solid rgba(255,255,255,.08);
}

footer img{
    height:80px;
    margin-bottom:15px;
}

footer p{
    color:#999;
}

/* ========================================
   BOTÕES FLUTUANTES
======================================== */

.hero-buttons{

    position:fixed;

    right:20px;
    bottom:20px;

    z-index:9999;

    display:flex;
    flex-direction:column;

    gap:12px;
}

.btn-whatsapp,
.btn-catalogo{

    display:flex;
    align-items:center;
    justify-content:center;

    width:180px;
    height:50px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    box-shadow:0 8px 25px rgba(0,0,0,.35);

    transition:.3s;
}

.btn-whatsapp{
    background:#25D366;
}

.btn-catalogo{
    background:#00AEEF;
}

.btn-whatsapp:hover,
.btn-catalogo:hover{
    transform:translateY(-3px);
}

.hero-buttons i{
    margin-right:8px;
}

/* ========================================
   RESPONSIVO
======================================== */

@media(max-width:768px){

    .galeria-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

    .logo img{
        height:65px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        height:500px;
    }

    section h2{
        font-size:2rem;
    }

    .hero-buttons{
        right:10px;
        bottom:10px;
    }

    .btn-whatsapp,
    .btn-catalogo{
        width:150px;
        height:45px;
        font-size:13px;
    }

    .galeria-grid img{
        height:250px;
    }
}

/* ========================================
   LIGHTBOX
======================================== */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;
    align-items:center;

    z-index:99999;

    cursor:pointer;
}

.lightbox img{

    max-width:90%;
    max-height:90%;

    border-radius:15px;

    box-shadow:
    0 0 40px rgba(0,174,239,.40);
}

.close-lightbox{

    position:absolute;

    top:20px;
    right:30px;

    font-size:50px;

    color:white;

    cursor:pointer;
}
.botoes-clientes{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:25px;
}

.btn-login{
    background:#28a745;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s;
}

.btn-login:hover{
    background:#218838;
    transform:translateY(-2px);
}

