@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.n-container {
    padding: 80px 0 !important;
}

body {
    padding: 0;
    color: #4C666D;
}

.body-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 64px !important;
    width: 100%;
}

.devices-header,
.aplicativos {
    width: 100%;
    display: flex;
    justify-content: center;
}

.n-container {
    width: 100%;
    max-width: 1128px;
    padding: 112px 0px;
}

.first-section,
.aplicativos {
    display: flex;
    width: 100%;
}

.header-container-left,
.header-container-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 524px;
    width: 100%;
}

.sub-container-left {
    justify-content: center;
}

.recipient-btn {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

#header-first-btn,
#header-second-btn {
    height: 48px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#header-first-btn {
    width: 135px;
    background-color: #11D3D3;
    color: #fff;
    border: none;
}

#header-first-btn:hover {
    background-color: #00b7c3;
}

#header-second-btn {
    background: none;
    border: 1px solid #11D3D3;
    color: #4C666D;
}

#header-second-btn:hover {
    background-color: #235f74;
    color: #fff;
}

.header-container-left h1 {
    font-size: 3.5em;
}

.header-container-right p {
    font-size: 1.125em;
    line-height: 150%;
}


/* aplicativos-main */
.aplicativos {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 112px;
}

.aplicativos-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.aplicativos-content.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.item-top,
.item-mid,
.item-bottom {
    display: flex;
    gap: 64px;
}

.left-box,
.right-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.imgs {
    width: 100%;
    height: 365px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}

.item-img {
    width: 100%;
    min-height: 365px;
    object-fit: cover;
    object-position: top left;
    border-radius: 10px;
}

.ver-todos-btn {
    width: 138px;
    height: 34px;
    padding: 5px 30px;
    border-radius: 10px;
    border: none;
    background-color: #11D3D3;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ver-todos-btn:hover {
    background-color: #00b3b3;
}

.download-btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 16px;
}

.download-btn {
    width: 100%;
    max-width: 150px;
}

.ver-todos-btn {
    margin-top: 32px;
}

.apps-grid-hidden {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px;
    width: 100%;
    max-width: 1128px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.apps-grid-hidden.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.app-card-hidden {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.app-card-hidden:hover {
    transform: translateY(-4px);
}

.app-card-hidden img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.app-card-hidden h3 {
    font-size: 16px;
    margin: 12px 0;
    color: #333;
}

.download-btns-hidden {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.download-btn-hidden {
    width: 80px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.download-btn-hidden:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .apps-grid-hidden {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .apps-grid-hidden {
        grid-template-columns: 1fr;
    }
}
