/* seccion principal */
.contact-hero {
    background: url('../images/contacto/contacto_hero.jpg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

/* overlay oscuro */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* contenido encima */
.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* texto izquierdo */
.contact-hero h2 {
    font-size: 28px;
    line-height: 1.4;
}

/* card del formulario */
.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* inputs */
.form-card .form-control {
    border-radius: 8px;
    padding: 10px;
}

/* botón */
.form-card .btn {
    border-radius: 8px;
    padding: 12px;
    font-weight: bold;
}


.social-section {
    background: #c62828;
    padding: 60px 0;
}

/* texto */
.social-section p {
    font-weight: 500;
}

/* iconos */
.social-icons i {
    font-size: 30px;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* hover */
.social-icons i:hover {
    transform: scale(1.2);
}

.social-item img {

  width: 22px;

  height: 22px;

  display: block;

  object-fit: contain;

}