/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

/* Menú */
.main-menu {
    background-color: black;
    text-align: center;
    padding: 10px 0;
}

.main-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    display: inline;
    margin-right: 20px;
}

.main-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.main-menu ul li a:hover {
    text-decoration: underline;
}

/* Sección de video */
.video-section {
    background-color: black;
    text-align: center;
    padding: 20px 0;
}

.video-section video {
    width: 60%; /* Cambiado al 60% */
    max-width: 800px; /* Puedes ajustar el máximo tamaño */
}

/* Sección de contenido */
.content-section {
    text-align: center;
    margin: 40px auto;
    width: 80%;
}

.section-title {
    font-size: 2em;
    margin-bottom: 20px;
	color: #3C86F1;
}



.section-legend {
	font-family: Tahoma, sans-serif;
    line-height: 24px;
    color: #565555;
	text-align:justify;
	font-size:16px;
	
}

/* Sección de imágenes */
.image-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.image-container {
    text-align: center;
	width: 25%;
}

.image-container p {
font-family: Tahoma, sans-serif;
    line-height: 24px;
    color: #565555;
	text-align:justify;
}

.image-container img {
    width: 100%;
    max-width: 200px;
}

/* Pie de página */
.main-footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}


/* servicios */
/* Contenedor de imágenes lado a lado */
.side-by-side-images-container {
    width: 80%;
    margin: 0 auto;
}

.side-by-side-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.side-by-side-image img {
    width: 40%; /* Ajusta el tamaño de las imágenes */
    max-width: 300px;
    margin-right: 20px; /* Espacio entre imagen y texto */
}

.image-text {
    flex: 1; /* El texto toma el espacio restante */
	
	
}

.image-text p{
	font-family: Tahoma, sans-serif;
    line-height: 24px;
    color: #565555;
	text-align:justify;
}

.image-text h1 {
    color: #3C86F1;
	
}

color: #3C86F1;

.image-legend {
    text-align: justify;
    font-size: 1em;
    margin-top: 10px;
}


/* Formulario */
/* Sección del formulario de contacto */
.contact-form-section {
    width: 100%;
    max-width: 600px; /* Ancho máximo para pantallas grandes */
    margin: 0 auto; /* Centrar el contenedor */
    padding: 20px;
    text-align: center;
}

.contact-form h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

/* Formulario vertical */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre los elementos */
}

/* Agrupación de formularios */
.form-group {
    display: flex;
    flex-direction: column; /* Elementos en columna */
    align-items: flex-start; /* Alinear a la izquierda */
    width: 100%; /* Ancho total */
}

.form-group label {
    font-size: 1.2em;
    margin-bottom: 5px;
}

/* Estilos para campos de entrada */
.form-group input,
.form-group textarea {
    width: 100%; /* Ancho total */
    padding: 10px; /* Espaciado interno */
    border: 1px solid #ccc; /* Bordes */
    border-radius: 5px; /* Esquinas redondeadas */
    font-size: 1em; /* Tamaño de fuente */
}

/* Estilo del botón */
button {
    padding: 10px 20px;
    background-color: #000; /* Color de fondo */
    color: #fff; /* Color de texto */
    border: none; /* Sin bordes */
    border-radius: 5px; /* Esquinas redondeadas */
    cursor: pointer; /* Cambiar cursor al pasar */
    font-size: 1.2em; /* Tamaño de fuente */
}

/* Estilo del botón al pasar el mouse */
button:hover {
    background-color: #444; /* Color al pasar el mouse */
}

/* Hacer el formulario responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 15px; /* Relleno en móviles */
    }

    .contact-form h1 {
        font-size: 1.5em; /* Tamaño de fuente en móviles */
    }

    .form-group label {
        font-size: 1em; /* Tamaño de fuente en móviles */
    }

    button {
        font-size: 1em; /* Tamaño de fuente en móviles */
    }
	
	.side-by-side-images-container {
    width: 100%;
    margin: 0 auto;
}

}
