/* LAYOUT E ESTILOS DA SEÇÃO DE DOWNLOAD DO APP */

.appdownload {
    background: #e8eef6;
    padding: 64px 32px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.appdownload__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.appdownload__title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    color: #e0197d;
    margin-bottom: 24px;
    line-height: 1.2;
}

.appdownload__title strong {
    font-weight: 900;
    color: #e0197d;
}

.appdownload__divider {
    border: none;
    border-top: 1.5px solid #c8d4e0;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.appdownload__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.appdownload__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    gap: 24px;
    padding-bottom: 24px;
}

.appdownload__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.appdownload__available {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e0197d;
}

.appdownload__store-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.appdownload__store-logos img {
    width: clamp(130px, 15vw, 180px);
    height: auto;
    object-fit: contain;
    display: block;
}

.appdownload__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.appdownload__subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: #e0197d;
    line-height: 1.6;
}

.appdownload__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #1a5fa8;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(26, 95, 168, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.appdownload__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.appdownload__btn:hover,
.appdownload__btn:focus-visible {
    background: #154e8c;
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(26, 95, 168, 0.38);
    outline: none;
}

.appdownload__btn:active {
    transform: translateY(0);
}

.appdownload__right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.appdownload__right img {
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.12));
    display: block;
}

@media (max-width: 860px) {
    .appdownload {
        padding: 48px 24px 48px;
    }

    .appdownload__wrapper {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 40px;
    }

    .appdownload__left {
        padding-bottom: 0;
    }

    .appdownload__right {
        order: -1;
    }
}

@media (max-width: 480px) {
    .appdownload {
        padding: 40px 16px 48px;
    }

    .appdownload__header {
        margin-bottom: 24px;
    }

    .appdownload__store-logos {
        gap: 16px;
    }

    .appdownload__btn {
        width: 100%;
        padding: 16px 24px;
    }
}