/* Estilos para cartões de métodos de pagamento */
.payment-methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.payment-method-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.payment-method-header {
    padding: 15px 20px;
    background-color: rgba(233, 240, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-method-logo img {
    max-width: 100%;
    max-height: 100%;
}

.payment-method-title {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.payment-method-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 3px;
}

.payment-method-body {
    padding: 15px 20px;
    flex-grow: 1;
}

.payment-method-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method-detail-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.payment-method-detail-label {
    color: #666;
    font-weight: 500;
}

.payment-method-detail-value {
    font-weight: 600;
    color: #333;
}

.payment-method-footer {
    padding: 15px 20px;
    background-color: rgba(233, 240, 255, 0.5);
    display: flex;
    justify-content: center;
}

/* Estilos para o rodapé */
footer {
    background-color: #202020;
    color: #f5f5f5;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #1565C0;
    transform: translateY(-3px);
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    color: #1565C0;
    padding-left: 5px;
}

.payment-methods-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.payment-methods-footer img {
    width: 40px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #1565C0;
}

.footer-disclaimer {
    color: #808080;
    font-size: 0.85rem;
}

/* Responsividade do rodapé */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-footer {
        grid-template-columns: repeat(4, 1fr);
    }
}
