.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    align-items: center;
}

/* Formulario */
.contact-form {
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
}

.field {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(84, 8, 99, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #540863;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #540863;
    background: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    width: 100%;
    padding: 30px;
    background-color: #540863;
    color: white;
    border: none;
    border-radius: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-submit:hover {
    background-color: #7b1fa2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 8, 99, 0.2);
}

/* Redes Sociales */
.separator {
    width: 50%;
    border: 0;
    border-top: 1px solid rgba(84, 8, 99, 0.2);
    margin: 1.3rem 0;
}

.social-links h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.8rem;
}

.icons-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.icons-grid a {
    font-size: 1.8rem;
    color: #540863;
    transition: all 0.3s ease;
}

.icons-grid a:hover {
    transform: scale(1.2);
    color: #a81eed;
}

.icons-grid a.whatsapp:hover {
    color: #25D366;
}

/* Ajuste responsivo */
@media (max-width: 480px) {
    #contact {
        padding: 1.5rem 1rem;
    }
}