.contact-section {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    padding: 0 50px;
}
/* ---- Responsive para la sección completa de contacto ---- */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }
}
/* ---- Información de contacto ---- */
.contact-info {
    justify-content: center;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 50px;
}
.contact-info h2 {
    font-weight: 600;
    font-style: italic;
    font-size: 2.5em;
}
.contact-info p {
    font-weight: 400;

}
.contact-info h3 {
    font-weight: 700;
    font-style: italic;
    font-size: 1.5em;
}
.icon-container {
    margin-bottom: 20px;
}
.icon-container a {
    color: #333;
    font-size: 2.5em;
    margin-right: 20px;
    transition: color 0.3s ease;
}
.icon-container a:hover {
    color: #848484;
}
.contact-info .map-container {
    border-radius: 10px;
    overflow: hidden;
}
/* ---- Responsive para info de contacto ---- */
@media (max-width: 900px) {
    .contact-info {
        padding: 0 10px;
    }
    .contact-info h2 {
        font-size: 2em;
    }
    .contact-info h3 {
        font-size: 1em;
    }
    .icon-container a {
        font-size: 2em;
        margin-right: 15px;
    }
}
/* ---- Formulario de contacto ---- */
.contact-form {
    font-family: 'Montserrat', sans-serif;
    width: 80%;
    margin-top: 60px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form label {
    margin-bottom: 10px;
}
.contact-form input, .contact-form textarea {
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 25px;
}
.contact-form button {
    width: 30%;
    background-color: #000;
    color: #fff;
    padding: 15px 5px;
    border: 1px solid #000;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    margin: 0 auto;
    font-size: 1em;
}
.contact-form button:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}
/* ---- Responsive para el formulario de contacto ---- */
@media (max-width: 900px) {
    .contact-form {
        width: 100%;
    }
    .contact-form button {
        width: 50%;
    }
}
/* ---- Foto de la fabrica INMAN ---- */
.foto-fabrica {
    background-image: url('../media/img/background.webp');
    background-size: cover;
    background-position: center;
    margin-top: 2.5em;
    width: 100%;
    height: 400px;
}
/* ---- Responsive para la foto de la fabrica ---- */
@media (max-width: 900px) {
    .foto-fabrica {
        height: 200px;
    }
}