/* 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-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;
    }
}