/* Estilos para la imagen cuando el ancho de la pantalla es menor o igual a 768px */
body{
    font-family: 'Nunito';  
    background-color: #4da97a;
}

h1{ font-size: 3.5em; font-weight: bold;}
h2{ font-size: 2.7em;}
h3{ font-size: 2em;}
h4{ font-size: 1.7em;}
h5{ font-size: 1.5em;}
h6{ font-size: 1.3em;}
p{ font-size: 1.25em;}
a{ font-size: 1.3em;}
ul{ list-style: none;}
li{ font-size: 1.25em;}

  /* Estilo para quitar el subrayado de los enlaces */
  a {
    text-decoration: none;
  }

#presentacion
{
    margin: 0px;
    background-color: #ffffff;
}

#quienes-somos
{
   margin-top: 200px;
   margin-bottom: 200px;
   
}

#que-hacemos
{
    margin-top: 200px;
    margin-bottom: 200px;
}

#contactos
{
    margin-top: 200px;
    margin-bottom: 20px;
}








#logo-image
{
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    #logo-image {
        max-width: 250px;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    #logo-image {
        max-width: 500px;
        max-height: 450px;
    }
}

/* Estilos para la imagen cuando el ancho de la pantalla es mayor a 768px */
@media (min-width: 769px) {
    #logo-image {
        max-width: 650px;
        max-height: 600px;
    }
}

.navbar {
    height: 80px; /* Cambia este valor según el tamaño deseado */
    font-size: 18px; /* Tamaño de fuente de los enlaces */
    padding-top: 40px; /* Ajuste del espacio superior del enlace */
    padding-bottom: 40px; /* Ajuste del espacio inferior del enlace */
    transition: top 0.5s ease-in-out; /* Ajusta la duración y la función de transición según tu preferencia */

}

.navbar-brand {
    font-size: 24px; /* Tamaño de fuente del logo */
}

.nav-link{
    transition: all 0.2s;
    position: relative;
}

.nav-link:hover::after{
    content:'';
    height: 2px;
    width: 100%;
    background-color: #e7c65f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar-nav .nav-link.active {

    background-color: #e7c65f;
    color: black;
}

.navbar-hidden {
    display: none;
    top: -80px; /* Altura de la barra de navegación */
}

