 body {
 margin: 0;
 font-family: Arial, sans-serif;
 scroll-behavior: smooth;
 text-align: justify;              /* Texto justificado */
    margin-top: 12px;                 /* Espacio entre párrafos */
    line-height: 1.4;                /* Interlineado cómodo para lectura */
 }
 header, footer {
 background-color: green;
 color: white;
 padding: 1em;
 text-align: center;
 }
 /* Menú de navegación horizontal con estilo de botones */
nav {
  background-color: #016d19;
  padding: 10px 0;
}

nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* centra los botones */
  flex-wrap: wrap; /* permite adaptarse en móviles */
  gap: 10px;
}

nav .menu li {
  margin: 0;
}

nav .menu a {
  display: inline-block;
  background-color: #0b8a22; /* verde principal */
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

nav .menu a:hover {
  background-color: #0fae2a;
  transform: translateY(-2px);
  box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
}

 main {
 display: flex;
 flex-direction: column;
 gap: 20px;
 padding: 20px;
 min-height: 60vh;
 }
 
 /* Contenedor interno para las columnas, fila horizontal */
 .columnas {
 display: flex;
 flex-wrap: wrap;
 gap: 15px;
 }
 
 .col1 {
 flex: 1 1 180px; /* adaptable con base mínima de 180px */
 background-color: white;
 padding: 15px;
 border-radius: 8px;
 box-shadow: 0 0 5px rgba(0,0,0,0.1);
 text-align: center;
 }
 .logo {
 width: 200px;
 height: auto;
 vertical-align: middle;
 margin-right: 15px;
 }
 /* Estilos generales para párrafos */
/* Estilos generales para párrafos */
p {
  text-align: justify;
  text-align-last: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  line-height: 1.6;
}


@media screen and (max-width: 768px) {
  p {
    text-align: justify;
    text-align-last: center;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  p {
    text-align: justify;
    text-align-last: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }
}
h2 {
  text-align: center;
  color: #016d19; /* verde institucional */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}
