.contacto-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4vw;
    padding: 40px 0 10px 0;    /* <-- Menos espacio abajo */
    background: #f6f8fa;
}
.contacto-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 600px;
    max-width: 800px;
}
.contacto-img img {
    padding-top: 18.5%;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 6px 36px #e2e2ef77;
    background: #fff;
}

.contacto-form-card {
    background: #fff;
    padding: 32px 24px 20px 24px;  /* <-- Menos padding abajo */
    border-radius: 14px;
    box-shadow: 0 5px 24px #e2e2f7;
    min-width: 320px;
    max-width: 480px;
    width: 100%;
    margin-bottom: 0;   /* <-- Sin margen innecesario */
}
.contacto-form-card h2 {
    font-size: 1.55em;
    color: #36416b;
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
}
.contacto-row {
    display: flex;
    gap: 18px;
    margin-bottom: 17px;
    flex-wrap: wrap;
}
.contacto-field {
    flex: 1 1 74px;
    display: flex;
    flex-direction: column;
}
.contacto-field label {
    font-size: 1em;
    color: #1d2240;
    margin-bottom: 5px;
    font-weight: 500;
}
.contacto-field input,
.contacto-field textarea {
    border: 1.5px solid #e7eaf6;
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 1em;
    background: #f8fafc;
    margin-bottom: 0;
    transition: border-color .2s;
}
.contacto-field input:focus,
.contacto-field textarea:focus {
    outline: none;
    border-color: #43be51;
    background: #fff;
}
.contacto-actions {
    text-align: right;
    margin-top: 12px;   /* <-- Menos espacio arriba del botón */
    margin-bottom: 0;
}
.btn-contacto {
    background: #43be51;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    padding: 10px 30px;
    font-size: 1.07em;
    cursor: pointer;
    transition: background .14s;
    box-shadow: 0 1px 8px #c6efcf2a;
}
.btn-contacto:hover {
    background: #249139;
}
@media (max-width: 1000px) {
    .contacto-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 16px 0 6px 0;   /* <-- Menos padding abajo */
    }
    .contacto-img, .contacto-form-card {
        max-width: 98vw;
    }
}
@media (max-width: 700px) {
    .contacto-form-card {
        padding: 18px 5px 10px 5px; /* <-- Menos padding en móviles */
        min-width: 0;
    }
    .contacto-img img {
        max-width: 300px;
    }
    .contacto-row {
        flex-direction: column;
        gap: 8px;
    }
}
