:root {
  --crema: #fdfaf7;
  --negro: #333;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
  user-select: none;         
}

html, body {
  overflow-x: hidden;
}



body {
  font-family: 'Georgia', serif;
  color: #333;
  background-color: var(--crema);
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-anclaje {
  text-decoration: none;
  color: inherit;
  display: block;
  font-size: 2rem;
}

.logo-header {
  width: 5rem;
  height: auto;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
  font-size: 1rem;
  padding-right: 3rem;
}

.nav-links li a {
  text-decoration: none;
  color: var(--negro);
  font-weight: 500;
}

.menu-toggle{
  display: none;
  background: none;
  position: sticky;
  border: none;
  font-size: 1.7rem;
  z-index: 10000;
  cursor: pointer;
}

.menu-toggle.open {
  transform: rotate(90deg);
}



/* fullscreen */

.fullscreen-menu {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--crema);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.fullscreen-menu.active {
  display: flex;
}

.fullscreen-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
 
}

.fullscreen-links li {
padding-bottom: 5rem;}

.fullscreen-links a {
  font-size: 2rem;
  text-decoration: none;
  color: var(--negro);
}

.derechos{
  text-align: center; 
  padding: 20px; 
  font-size: 14px; 
  color: #666;
}


@media (max-width: 480px) { 
  .menu-toggle {
    display: block !important;
  }
    .nav-links{

    display: none !important;
  }

   .logo-anclaje{
    display: none;
  }

}

@media (max-width: 768px) { 
  .menu-toggle {
    display: block !important;
  }
  
    .nav-links{
    display: none !important;
  }

  

}

@media (min-width: 769px) and (max-width: 1024px) { 

  .logo-anclaje{
    display: none;
  }

}

@media (min-width: 1440px) { 


}
