.footer {
    margin-top: 0;
}

.contacto {
    padding-bottom: 8rem;
    background-color: #ffffff; /* Color de fondo base (blanco) */
    
    /* EL DEGRADADO LIGERO AMARILLO */
    background-image: radial-gradient(
        circle at 10% 88%, /* 1. Posición: Esquina inferior izquierda (10% horizontal, 90% vertical) */
        rgba(254, 217, 68, 0.15) 0%,       /* 2. Color inicial: Un amarillo crema muy suave y sutil */
        transparent 40%    /* 3. Transición: Se vuelve transparente rápidamente para que el efecto sea muy ligero */
    );
    
    /* Asegura que el degradado no se repita si la sección es muy alta */
    background-repeat: no-repeat;
    background-size: cover;
}

.contacto_container {
    display: flex;
    gap: 8rem;
    align-items: center;
}
    
.contacto_info {
    flex: 1;
}
    
.contacto_titulo {
    font-size: 7.2rem;
    font-weight: 600;
    line-height: 7.2rem;
    letter-spacing: -3px;
    color: var(--P3);
    margin-bottom:25px;
}
    
.contacto_titulo span {
    letter-spacing: -1px;
    line-height: 7.4rem;
    font-weight: 700;
    color: var(--P1);
}
    
.contacto_texto {
    font-size: 2rem;
    line-height: 32px;
    font-weight: 500;
    color: rgba(10, 25, 47, 0.8);
    margin-bottom: 4.2rem;
    max-width: 520px;
}

.contacto_card {
    background:white;
    padding:35px;
    border: solid 1px #E7ECF3;
    border-radius:18px;
    box-shadow:0 0 10px rgba(0,0,0,0.05);
}
    
.contacto_card_titulo {
    position: relative;
    font-size: 1.45rem;
    line-height: 1.8rem;
    font-weight: 900;
    letter-spacing: 2.4px;
    color:#3ea0c9;
    margin-bottom: 3.5rem;
}
.contacto_card_titulo::after {
    position: absolute;
    content: "";
    width: 10%;
    height: 4.5px;
    background-color: var(--S3);
    bottom: -1rem;
    left: 0;
}

.contacto_item {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 2.2rem;
}

.contacto_item strong {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: bold;
    color: var(--P3);
    letter-spacing: -0.3px;
}
    
.contacto_item p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 2rem;
    font-weight: 500;
    color: rgba(10, 25, 47, 0.90);
}
    
.contacto_form_card {
    flex:1;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}
    
.contacto_form {
    display:flex;
    flex-direction:column;
    gap: 1.8rem;
}

.alerta {
    padding: .85rem;
    font-size: .98rem;
    color: #efefef;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.alerta.error {
    background-color: rgb(166, 7, 7);
}

.alerta.exito {
    background-color: #65a900;
}
    
.contacto_row {
    display:flex;
    gap: 2rem;
}
    
.contacto_field {
    display:flex;
    flex-direction:column;
    flex:1;
}
    
.contacto_field label {
    font-size: 1.4rem;
    font-weight: 760;
    letter-spacing: 1.2px;
    line-height: 2.4rem;
    margin-bottom:6px;
    color: var(--P3);
}
    
.contacto_field input,
.contacto_field select,
.contacto_field textarea {
    padding:14px;
    border-radius:10px;
    border: 2px solid #E7ECF3;
    font-size: 1.6rem;
    font-weight: 420;
}
    
.contacto_field textarea {
    min-height: 134px;
    resize:none;
}
    
.contacto_aviso {
    text-align:center;
    font-size: 1.4rem;
    line-height: 1.5rem;
    font-weight: 300;
    color:#959ba6;
    margin-top: 2.5rem;
}
    
.contacto_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;

    padding: 2rem 1.6rem;
    border-radius: 12px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    color:white;
    background:linear-gradient(90deg,#ff1e5a,#e91e63);
    transition:.3s;
}
    
.contacto_btn:hover {
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}


/* RESPONSIVE GRID - FLEX */
@media (max-width: 1224px) {
    .contacto_container {
        flex-direction: column;

        align-items: start;

        gap: 6rem;
    }

    .contacto_form_card {
        width: 100%;
    }

    .contacto_info {
        max-width: 80rem;
        width: 100%;
    }

    .contacto_texto {
        max-width: 80rem;
    }
}

/* Responsive fonts*/

@media (max-width: 1090px) {
    .contacto_titulo {
        font-size: 5.8rem;
        line-height: 4.8rem;
        letter-spacing: -2.4px;
    }
    .contacto_titulo span {
        font-size: 6rem;
        letter-spacing: -0.4px;
    }

    .contacto_btn {
        font-size: 1.4rem;
        line-height: 2rem;
        letter-spacing: 2.8px;
    }
}

@media (max-width: 768px) {
    .contacto_titulo {
        font-size: 5.8rem;
        line-height: 4.8rem;
        letter-spacing: -2.4px;
    }
    .contacto_titulo span {
        font-size: 6rem;
        letter-spacing: -0.4px;
    }

    .contacto_btn {
        font-size: 1.4rem;
        line-height: 2rem;
        letter-spacing: 2.8px;
    }
}

@media (max-width: 680px) {
    .contacto_row {
        flex-direction: column;
    }

    .contacto_container {
        gap: 4rem;
    }
}

@media (max-width: 550px) {
    .contacto_titulo {
        font-size: 3.9rem;
        line-height: 3.96rem;
        letter-spacing: -1.8px;
        margin-bottom: 15px;
    }
    .contacto_titulo span {
        font-size: 4.1rem;
        line-height: 4.2rem;
    }

    .contacto_texto {
        font-size: 1.5rem;
        line-height: 2.8rem;

        margin-bottom: 3.8rem;
    }

    .contacto_card_titulo {
        font-size: 1.25rem;
        line-height: 1.6rem;
        letter-spacing: 2.4px;
    }

    .contacto_item svg:nth-child(1) {
        width: 13.33px;
        height: 16.67px;
    }
    .contacto_item svg:nth-child(2) {
        width: 15px;
        height: 15px;
    }
    .contacto_item svg:nth-child(3) {
        width: 16.67px;
        height: 13.33px;
    }

    .contacto_item strong {
        font-size: 1.2rem;
        line-height: 1.5rem;
        letter-spacing: -0.25px;
    }

    .contacto_item p {
        font-size: 1.2rem;
        line-height: 1.65rem;
    }
    

    .contacto_field label {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .contacto_field input, 
    .contacto_field select, 
    .contacto_field textarea {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .contacto_aviso {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .contacto_btn {
        font-size: 1.2rem;
        line-height: 1.6rem;
        letter-spacing: 2.4px;

        padding: 1.8rem 1.5rem;
    }
}