* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

.imagen-principal {
  position: relative;
  height: 350px;
  background-color: #007b8a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.imagen-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease-in-out;
}

.imagen-principal:hover img {
  opacity: 0.25;
}

.texto-superpuesto {
  color: #fdfd70;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
  
}
.navbarr {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.3);
  color: orange;
  font-size: 10px
}

.nav-links {
  list-style: none;         
  display: flex;           
  gap: 20px;                
  margin: 0;
  padding: 0;
  flex: 1;                  
  justify-content: flex-end;
  font-size: 15px; 
}

.nav-links li a {
  color: white;
  text-decoration: none;
  display: block;           
}

.contenedor-texto {
  display: flex;
  justify-content: space-between;
  padding: 50px 40px;
  background-color: white;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  gap: 30px;
}

.columna {
  width: 50%;
  padding: 10px;
  font-size: 18px;
}

.columna.izquierda {
  color: black;
  border-right: 2px solid #f0f0f0;
}

.columna.derecha {
  color: black;
}