@import url('colores.css');


body {
  margin: 0;
  font-family: Arial, sans-serif;
  
}
  
.body {
  padding: 20px;
}

.body-gradient {
  background: linear-gradient(135deg, #0288d1, #ffffff, #b3e5fc, #0288d1);

}

.logo img {
  height: 130px; /* o el tamaño que necesites */
}

  /* General Header Styles */
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  color: var(--text-color);
}
  
  header .logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: var(--color-only-fans);
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
  }

  .overlay {
    display: none; /* Oculto inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    z-index: 997; /* Debe estar detrás del menú desplegable */
  }
  
  nav.show ~ .overlay {
    display: block; /* Muestra el overlay */
  }
  
/* NAVEGADOR DESPLEGABLE */
@media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0px;
      background-color: var(--color-only-fans);
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 100%;
  
    }
  
    nav.show {
      display: flex;
      z-index: 998;
    }
  
    .menu-toggle {
      display: block;
    }
  
    nav a {
      padding: 10px;
      text-align: center;
      border-bottom: 1px solid var(--text-color);
      color: white;;
    }
  
    nav a:last-child {
      border-bottom: none;
    }
  
    nav a:hover {
      color: var(--text-color);
    }

    .logo img {
      height: 100px; /* o el tamaño que necesites */
    }
  
  }


.legal-header {
    text-align: center;
    padding: 5px;
    color: #211d1d;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: #332a2a;
}
