.container-pix {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support {
    padding: 5rem 0;
    background: white;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #e5e5e5 25%, #dea146 170%);
    padding: 2rem;
    border-radius: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: #000000;
}

.help-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.help-number {
    background: #000000;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.help-item h4 {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.help-item p {
    color: #000000;
    font-size: 0.875rem;
}

.bank-info {
    background: linear-gradient(135deg, #e5e5e5 25%, #dea146 120%);
    padding: 1.5rem;
    border-radius: 1rem;
}

.bank-info h4 {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-info h4 i {
    color: #000000;
}

.bank-details {
    font-size: 0.875rem;
    color: #000000;
}

.bank-details p {
    margin-bottom: 0.25rem;
}

.pix-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pix-card {
    background: linear-gradient(135deg, #e5e5e5 25%, #dea146 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pix-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pix-card h3 i {
    color: #000000;
}

.pix-field {
    margin-bottom: 1rem;
}

.pix-field label {
    display: block;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input,
.input-group textarea {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #f9fafb;
    color: #000000;
    font-size: 0.875rem;
}

.input-group textarea {
    resize: none;
    height: 80px;
    font-family: monospace;
}

.input-group button {
    background: #000000;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: 48px;
}

.input-group button:hover {
    background: #000000;
}

.input-group button.copied {
    background: #059669;
}

.qr-code {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.qr-placeholder {
    width: 160px;
    height: 160px;
    background: #f3f4f6;
    border-radius: 0.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder i {
    font-size: 4rem;
    color: #9ca3af;
}

.qr-code p {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.qr-code small {
    color: #6b7280;
    font-size: 0.75rem;
}

.disclaimer {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.disclaimer p {
    font-size: 0.875rem;
    color: #92400e;
}
@media (max-width: 768px){ 
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
}
@media (max-width: 480px) { 
   .container-pix {
        padding: 0 1rem;
    } 
}
