/* Estilos generales */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Estilos del encabezado */
header {
  background-color: #222;
  padding: 20px;
  text-align: center;
  color: #fff;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

/* Estilos de secciones */
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text-left,
.logo-text-right {
  font-size: 3em;
  font-weight: bold;
  color: #0077B5;
  margin: 0 10px;
}


/* Estilos presonalizados */

    .destacado {
        animation: destello 1s ease-in-out infinite;
    }
    @keyframes destello {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }


.logo {
  /* Estilos existentes para el logotipo */
}

section {
  padding: 40px 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

section p, section li {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

section blockquote {
  font-style: italic;
  margin: 20px;
  padding: 10px;
  border-left: 5px solid #4CAF50;
}

h3 {
  font-size: 1.5em; /* Aumenta el tamaño del texto */
  font-weight: bold; /* Establece el texto en negrita */
  color: #0077B5; /* Cambia el color del texto */
  margin-bottom: 8px; /* Añade un margen inferior para separar más el título del contenido */
  text-transform: uppercase; /* Convierte el texto a mayúsculas */
}

/* Estilos de las listas */
ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

a {
  color: #4CAF50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.logo {
  max-width: 200px;
  height: auto;
}

.fondo-difuminado {
  position: relative;
  background-image: url('fondo.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fondo-difuminado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  filter: blur(3000px); /* Ajusta el valor para controlar el nivel de difuminado */
  opacity: 0.9; /* Ajusta el valor para controlar la opacidad */
  z-index: -1;
}
.fondo-difuminado,
.fondo-difuminado h1,
.fondo-difuminado h2,
.fondo-difuminado h3,
.fondo-difuminado p,
.fondo-difuminado a {
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.fondo-difuminado .titulo-seccion {
  color: #0077B5;
}
.contenedor {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; /* Establece un ancho máximo para el contenedor si lo deseas */
  width: 90%;
}
.menu {
  background-color: #0077B5;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center; /* Añade esta línea para centrar los elementos del menú */
}

.menu li {
  display: inline-block; /* Modifica esta línea para permitir que los elementos <li> se muestren en línea */
}

.menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.menu li a:hover {
  background-color: #005d99;
}




