* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.containerLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.logo {
    width: 300px;
    height: 70px;
    background-image: url('/img/logoImprotecsaWhite.png'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center; 
}

/* Encabezado */
header {
    background: linear-gradient(to right, #4d82bc, #6fa3d1); 
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Menú de navegación */
nav {
    background: #5c8ec6;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: #4d82bc;
}

/* Secciones */
section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
}

section:nth-child(even) {
    background: #f9f9f9;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #4d82bc;
}

section p {
    margin-bottom: 20px;
}


.contenedorSercivios{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;

}

#servicios ul {
    list-style: none;
    padding: 0;
}

#servicios li {
    width: 700px;
    background: #4d82bc;
    color: #fff;
    margin: 5px 0;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    max-width: 50%;
}

.descripcion {
    margin-top: 15px;
    color: black;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    font-weight: 400;
    text-align: left;
}


#contacto {
    background-color: #f9f9f9;
}

#contacto h3 {
    color: #4d82bc;
    font-size: 1.5em;
    margin-bottom: 15px;
}

#contacto .form-group {
    margin-bottom: 20px;
}

#contacto label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.foto {
    background: linear-gradient(to right, #4d82bc, #6fa3d1); 
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

#contacto input[type="text"],
#contacto input[type="email"],
#contacto textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#contacto textarea {
    resize: vertical;
}

#contacto button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4d82bc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contacto button:hover {
    background-color: #6fa3d1;
}

/* Estilos para el mensaje de contacto */
.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.contacto > div {
    margin-bottom: 0px;
}

.contacto > div:last-child {
    margin-bottom: 0;
}

.nombre {
    font-weight: bold;
    font-size: 20px;

}

.correo {
    background-color: transparent;
}

.telefono {
    background-color: transparent;
}


/* Pie de página */
footer {
    background: linear-gradient(to right, #4d82bc, #6fa3d1); 
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #ddd;
}
