/**
 * Estilos para o bloco de Termos e Meios de Pagamento
 * 
 * @package Upgram
 * @since 1.0.0
 */

/* Container principal */
.service-card__terms-payment-container {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

/* Bloco de Termos */
.service-card__terms {
    margin-bottom: 16px;
}

.service-card__terms-text {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.service-card__terms-link {
    color: #7C51F3;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.service-card__terms-link:hover {
    color: #6b46c1;
    text-decoration: none;
}

.service-card__terms-link-text {
    color: #7C51F3;
    font-weight: 500;
}

/* Bloco de Meios de Pagamento */
.service-card__payment-methods {
    margin-top: 16px;
}

.service-card__payment-methods-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-card__payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__payment-icon {
    max-width: 60px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card__payment-icon:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.service-card__payment-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 4px;
    white-space: nowrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-card__payment-methods-grid {
        gap: 12px;
    }
    
    .service-card__payment-icon {
        max-width: 50px;
        max-height: 35px;
    }
    
    .service-card__terms-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .service-card__payment-methods-grid {
        gap: 8px;
    }
    
    .service-card__payment-icon {
        max-width: 45px;
        max-height: 30px;
    }
}
