/* Contêiner para centralizar o cartão */
.app-card-sc-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

/* Cartão do aplicativo */
.app-card-sc {
    background-color: #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Container para layout flexível */
.app-card-sc-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Informações do aplicativo */
.app-card-sc-info {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 60%;
}

.app-card-sc-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.app-card-sc-icon img {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    object-fit: cover;
}

.app-card-sc-details {
    flex-grow: 1;
}

.app-card-sc-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.app-card-sc-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.app-card-sc-rating,
.app-card-sc-downloads {
    display: flex;
    flex-direction: column;
}

.app-card-sc-rating-value,
.app-card-sc-downloads-count {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.app-card-sc-rating-value i {
    color: #ffc107;
    margin-left: 4px;
    font-size: 16px;
}

.app-card-sc-rating-count,
.app-card-sc-downloads-label {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

/* Botões */
.app-card-sc-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
}

.app-card-sc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.3s ease;
    width: 100%;
    white-space: nowrap;
}

.app-card-sc-btn:hover {
    color: white !important;
    text-decoration: none !important;
}

.app-card-sc-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.app-card-sc-btn-google {
    background-color: #01875f;
}

.app-card-sc-btn-google:hover {
    background-color: #095943;
}

.app-card-sc-btn-apple {
    background-color: #0b57cf;
}

.app-card-sc-btn-apple:hover {
    background-color: #ecf1f4;
    color: #0b57cf !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .app-card-sc-container {
        flex-direction: column;
        align-items: stretch;
    }

    .app-card-sc {
        padding: 15px;
    }

    .app-card-sc-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .app-card-sc-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }

    .app-card-sc-details {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-card-sc-stats {
        justify-content: center;
    }

    .app-card-sc-buttons {
        width: 100%;
        flex-direction: column;
    }

    .app-card-sc-btn {
        padding: 18px 25px;
        font-size: 20px;
    }

    .app-card-sc-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .app-card-sc-name {
        font-size: 24px;
    }

    .app-card-sc-rating-value,
    .app-card-sc-downloads-count {
        font-size: 16px;
    }

    .app-card-sc-rating-count,
    .app-card-sc-downloads-label {
        font-size: 12px;
    }

    .app-card-sc-btn {
        font-size: 18px;
        padding: 16px 20px;
    }
}

@keyframes app-card-sc-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.app-card-sc-pulse {
    animation: app-card-sc-pulse 2s infinite;
}

@keyframes app-card-sc-pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 135, 95, 1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(1, 135, 95, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 135, 95, 0);
    }
}

.app-card-sc-pulse2 {
    animation: app-card-sc-pulse 2s infinite;
}