.contact-info__wrapper {
    overflow: hidden; 
    border-radius: .625rem .625rem 0 0;
}

@media (min-width: 1024px) {
    .contact-info__wrapper {
        border-radius: 0 .625rem .625rem 0;
        padding: 5rem !important;
    }
}

.contact__wrapper {
    background-color: #fff;
    border-radius: 0 0 .625rem .625rem;
}

@media (min-width: 1024px) {
    .contact__wrapper {
        border-radius: .625rem 0 .625rem .625rem;
    }
}

.contact-form__wrapper {
    padding: 4rem !important;
}

/* Título */
.form-group h2 {
    background: linear-gradient(90deg, #376be6 0%, #6470ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: left;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 2.3rem;
}

.form-check-input {
    margin: 0;
    position: relative;
    top: 0;
}

.form-check-label {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

/* BOTÓN animación */

.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-primary .btn-icon {
    display: inline-block;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-primary.sending {
    background-color: #4CAF50;
    pointer-events: none;
}

@keyframes flyRight {
    0% { transform: translateX(0) rotate(0deg); opacity: 1; }
    50% { transform: translateX(40px) rotate(20deg); opacity: 1; }
    100% { transform: translateX(80px) rotate(45deg); opacity: 0; }
}

.btn-primary.sending .btn-icon {
    animation: flyRight 1s forwards;
}