/* INÍCIO RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
}

* p {
    font-family: inter, sans-serif;
}

* h1,
h2,
h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* FIM RESET GLOBAL */

/* INÍCIO BOTÃO PRINCIPAL */


.btn {
    background: #36baf7;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 16px 24px;
    border: none;
    transition: 0.6s all;
    text-decoration: none;
}

.btn:hover {
    background-color: #FFFFFF;
    color: rgb(36, 167, 255);
}

/* FIM BOTÃO PRINCIPAL */
/* INÍCIO MENU */
.cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    flex-wrap: wrap;
}

.logo {
    width: 200px;
}


/* FIM MENU */

/* INÍCIO RESPONSIVIDADE */
/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    .logo {
        width: 160px;
    }

    .menu {
        gap: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .menu a {
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Celulares (até 768px) */
@media (max-width: 413px) {
    .cabecalho {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 16px;
    }

    .cabecalho a {
        width: 100%;
    }

    .logo {
        width: 140px;
    }



    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* FIM RESPONSIVIDADE */












.apps {
    background-color: #000000;
    padding: 40px 0;
}

.apps-titulo {
    text-align: center;
    margin-bottom: 40px;
    background-color: transparent;
}

.apps-titulo h2 {
    color: white;
    font-size: 2.5rem;
    background-color: transparent;
    margin-bottom: 15px;
}

.apps-titulo span {
    color: #36baf7;
    background-color: transparent;
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.apps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}


.apps-grid1 h3 {
    color: white;
    font-size: 1.5rem;
    background-color: transparent;
    margin-top: 20px;
    text-align: center;
}
.apps-grid1 {
    padding-top: 30px;
}
.apps-grid2 h3 {
    color: white;
    font-size: 1.5rem;
    background-color: transparent;
    margin-top: 20px;
    text-align: center;
}

.apps-grid img {
    width: 500px;
    /* Largura fixa */
    height: 500px;
    /* Altura fixa */
    object-fit: contain;
    /* Mantém proporção sem distorcer */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(54, 186, 247, 0.637);
}

/* Responsividade */
@media (max-width: 1024px) {
    .apps-grid {
        flex-direction: column;
    }

    .apps-grid img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}









/* Container principal */
.lg {
    background-color: #000;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Título */
.lg-titulo {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    
}

.lg-titulo h2 {
    color: #36baf7;
    font-size: 2.5rem;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grid de aplicativos */
.lg-grid {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Itens individuais */
.lg-grid1 {

    border-radius: 12px;
    width: 200px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.lg-grid1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(54, 186, 247, 0.3);
}

/* Imagens */
.lg-grid1 img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Títulos */
.lg-grid1 h3 {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    .lg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lg-grid {
        grid-template-columns: 1fr;
    }
    
    .lg-grid1 {
        width: 100%;
        max-width: 250px;
    }
}