/* Estilos generales */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

#nombresitio { 
    font-size: 2em;
    line-height: 0em;
    color: white;
    font-family: poppins;
	text-shadow: -1px 1px #ff4400;
}
.logo_colors {color: #fb6630;    text-shadow: -1px 1px #ffffff;}
#slogan {

    line-height: 1;
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
    
    }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #16202A;
  color: white;
  padding: 0px 5px 5px 30px;
}

.navbar .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0px;
  
  padding: 0;
      margin: 1em 0 0 0;
}

.nav-links li a {
 color: #16202A;
 transition: color 0.3s;
 border-radius: 0px;
 text-align: left;
 margin: 0 0 0 0.25em;
 text-decoration: none;
    color: #fff;
    font-family: poppins black, Arial, Tahoma;
    font-size: 1.3em;
    text-shadow: -1px 1px #ff4400;
}

.nav-links li a:hover {
      color: #FA6630;
    text-shadow: 1px 1px white;
}


.nav-links li a:focus {
	
	
	  outline: 0px solid #FA6630;
    outline-offset: 0px;}
/* Estilos para el menú hamburguesa */
.hamburger {
  display: none;
  font-size: 1.5em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsividad */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #16202A;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 0px;
    text-align: left;
    margin: 0 0 0 0.25em;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
  .nav-links li a {
 
 color: #16202A;
 transition: color 0.3s;
 border-radius: 0px;
 text-align: left;
 margin: 0 0 0 0.25em;
 text-decoration: none;
    color: #fff;
    font-family: poppins black, Arial, Tahoma;
    font-size: 1.3em;
    text-shadow: -1px 1px #ff4400;
}


nav ul li, .menu-item {
    margin: 0px 0 !important;
    width: 100%;
    text-align: left !important;
}


.navbar {
    padding: 5px 10px 0px 15px;

}