
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* ENCABEZADO */
.encabezado {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 15px;
}

.encabezado img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.encabezado .Titulo {
  font-size: 36px;
  font-weight: 700;
  color: #113814;
  margin: 0;
}

/* BARRA DE NAVEGACIÓN */
.barra-navegacion {
  background-color: #c0ddba;
  padding: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 2px solid #a5d6a7;
  border-bottom: 2px solid #a5d6a7;
}

.barra-navegacion a {
  color: #0a1b0b;
  text-decoration: none;
  margin: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.barra-navegacion a:hover {
  background-color: #345a37;
  color: #ffffff;
}

/* SECCIONES PRINCIPALES */
.Presentacion, .Objetivos {
  background-color: #ffffff;
  border: 2px solid #c8e6c9;
  border-radius: 12px;
  margin: 40px auto;
  padding: 30px;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contenido, .contenido-objetivos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.texto-presentacion, .texto-objetivos {
  flex: 1;
  text-align: justify;
  font-size: 18px;
  color: #132e18;
}

.texto-presentacion h2, .texto-objetivos h2 {
  color: #2e7d32;
  font-size: 26px;
  border-bottom: 2px solid #a5d6a7;
  padding-bottom: 8px;
}

.imagen-presentacion, .imagen-objetivos {
  flex: 1;
  text-align: center;
}

.imagen-presentacion img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.imagen-objetivos img{
   max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* BOTONES DE NAVEGACIÓN */
.botones-navegacion {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.botones-navegacion button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: transform 0.3s;
}

.botones-navegacion button:hover {
  transform: scale(1.1);
}

.botones-navegacion img {
  width: 40px;
}

/* GALERÍA */
.imagenes-container {
  background-color: #ffffff;
  padding: 20px 0 20px 0;
  margin: 20px 0;
}

.imagenes-container h2 {
  text-align: center;
  font-size: 28px;
  color: #1c3f1d;
  margin-bottom: 10px;
  margin-top: 0;
}

.swiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}

.swiper-slide {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* FOOTER */
.contenido-inferior {
  background-color: #d7f0d8;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col.izquierda h4, .footer-col.izquierda p {
  text-align: left;
  color: #1b5e20;
}

.footer-col.izquierda img {
  width: 100px;
  margin-top: 15px;
}

.footer-col.derecha {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-col.derecha h4 {
  color: #1b5e20;
  font-size: 18px;
}

.redes-footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.redes-footer a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.redes-footer a img:hover {
  transform: scale(1.2);
}

