.contato {
    padding: 96px 0 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 32px;
    align-items: start;
}

.contato-copy,
.contact-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contato-copy {
    padding: 34px;
}

.contato-copy h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.contato-copy p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.contato-copy img {
    width: min(100%, 320px);
    margin-bottom: 24px;
}

.contato-info {
    display: grid;
    gap: 16px;
}

.contato-info div {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contato-info strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.contato-info span {
    color: var(--text-soft);
}

.contact-card {
    padding: 34px;
}

.campo {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
}

input,
textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #f8fafc;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
    background: #fff;
}

input.error,
textarea.error {
    border-color: rgba(239, 68, 68, 0.72);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.btn-enviar {
    width: 100%;
}

.btn-enviar.loading {
    position: relative;
    pointer-events: none;
    color: transparent;
}

.btn-enviar.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}