/* CONTACTO */
.contacto-section{
    padding: 80px 0 90px;
    background: #fff;
}

.contacto-section .container-fluid{
    padding: 0 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-title{
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contacto-subtitle{
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contacto-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Columna Ubicaciones */
.contacto-ubicaciones{
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.ubicacion-item h3{
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ubicacion-mapa{
    background: #1a1a1a;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.ubicacion-mapa iframe{
    display: block;
}

.ubicacion-info strong{
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.ubicacion-info p{
    color: #1a1a1a;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Columna Formulario */
.contacto-formulario{
    padding-top: 40px;
}

.form-group{
    margin-bottom: 25px;
}

.form-group label{
    display: block;
    color: #1a1a1a;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input{
    width: 100%;
    padding: 25px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus{
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder{
    color: #999;
}

.btn-enviar{
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    float: right;
}

.btn-enviar:hover{
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media(max-width:992px){
    .contacto-section{
        padding: 70px 0;
    }
    
    .contacto-section .container-fluid{
        padding: 0 30px;
    }
    
    .contacto-title{
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .contacto-grid{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contacto-formulario{
        padding-top: 0;
    }
    
    .btn-enviar{
        float: none;
        width: 100%;
    }
}

@media(max-width:576px){
    .contacto-section{
        padding: 60px 0;
    }
    
    .contacto-section .container-fluid{
        padding: 0 20px;
    }
    
    .contacto-title{
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .contacto-ubicaciones{
        gap: 35px;
    }
    
    .ubicacion-item h3{
        font-size: 16px;
    }
    
    .ubicacion-mapa{
        height: 180px;
    }
    
    .ubicacion-info strong{
        font-size: 13px;
    }
    
    .ubicacion-info p{
        font-size: 12px;
    }
    
    .form-group{
        margin-bottom: 20px;
    }
    
    .form-group label{
        font-size: 14px;
    }
    
    .form-group input{
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .btn-enviar{
        padding: 13px 35px;
        font-size: 14px;
    }
}