.contacto-wrapper {
    background: linear-gradient(135deg, #fbf5ff 35%, #effcf8 100%);
    min-height: 100vh;
    padding-bottom: 80px;
    padding-top: 48px;
}

.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.contacto h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-align: center;
}

.contacto p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #808080;
    margin-bottom: 28px;
    text-align: center;
}

.contacto-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 30px;
    width: calc(100% - 48px);
    max-width: 520px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.contacto form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacto input,
.contacto textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
}

.contacto input:focus,
.contacto textarea:focus {
    outline: none;
    border: 1px solid #6f2e98;
}

.contacto textarea {
    height: 120px;
    resize: vertical;
}

.contacto button {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    background: #6f2e98;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
    transition: all 0.2s;
}

.contacto button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mensaje-exito {
    text-align: center;
    color: #059669;
    font-weight: 600;
}