/* Banner promocional para usuarios de Android */
.android-app-promo-banner {
    width: 100%;
    min-height: 100px; /* Permite que el banner crezca si el contenido es mayor sin colapsar */
    background-color: #242428;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #5d5d5d;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 22px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.android-app-promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.android-app-promo-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

/* Icono de la app */
.android-app-promo-banner .banner-icon {
    flex-shrink: 0;
}

.android-app-promo-banner .app-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

/* Texto promocional */
.android-app-promo-banner .banner-text {
    flex-grow: 1;
    text-align: left;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-weight: bold;
}

.android-app-promo-banner .banner-text h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
}

.android-app-promo-banner .banner-text p {
    margin: 0;
    font-size: 16px;
    color: #cccccc;
    font-family: 'Exo 2', sans-serif;
    font-weight: bold;
}



/* Google Play Badge */
.android-app-promo-banner .banner-button {
    flex-shrink: 0;
}

.android-app-promo-banner .google-play-badge {
    height: 60px;
    width: auto;
}

/* Responsive para pantallas medianas y pequeñas */
@media screen and (max-width: 860px) {
    .android-app-promo-banner {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Responsive para dispositivos móviles */
@media screen and (max-width: 635px) {
    /* Keep the banner flexible but with better spacing */
    .android-app-promo-banner {
        height: auto; /* let content define height */
        padding: 17px 14px; /* 5px extra en top y bottom */
    }

    /* Flex layout wraps so the button can sit below */
    .android-app-promo-banner .banner-content {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    /* Bigger icon on the left */
    .android-app-promo-banner .banner-icon {
        order: 1;
        flex: 0 0 56px;
    }
    .android-app-promo-banner .app-icon {
        width: 56px;
        height: 56px;
        position: relative;
        top: 1px;
    }

    /* Larger text to the right */
    .android-app-promo-banner .banner-text {
        order: 3;
        flex: 0 0 100%;
        text-align: center;
    }
    .android-app-promo-banner .banner-text h3 {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .android-app-promo-banner .banner-text p {
        font-size: 17px;
    }

    /* Google Play button bigger and placed beneath */
    .android-app-promo-banner .banner-button {
        order: 2;
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        margin-top: 0; /* reset top margin */
        margin-left: 8px;
    }
    .android-app-promo-banner .google-play-badge {
        height: 56px;
    }
}
