  body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Josefin Sans", sans-serif;
}


        #section1 {
            background-color: #000;
            position: relative;
            overflow: hidden;
        }
        
        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.4);
        }
        
 



.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 5px 5px;
  transition: background-color 0.3s;
}

/* -- Estilos Tipografia Nav -- */
.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px !important; /* aquí ajustas el tamaño */
}


/* -- Estilos del Menú Hamburguesa -- */
.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.nav-logo {
    z-index: 1001;
}

.nav-links {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* -- Estilos para el menú activo -- */
.nav-links.active {
    transform: translateX(0);
    opacity: 1;
}

/* -- Transición suave para el menú móvil -- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* -- Estilos para dispositivos móviles -- */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        opacity: 0;
        padding: 60px 20px 20px;
        box-sizing: border-box;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        animation: fadeIn 0.3s ease;
    }
    
    .nav-links button {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .login-register-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .login-register-buttons a {
        width: 100%;
    }
    
    .login-register-buttons button {
        width: 100%;
        margin: 5px 0;
    }
    
    /* Animación para el icono hamburguesa cuando está activo */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* -- Ajustes para pantallas medianas -- */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 10px;
    }
    
    .nav-links button {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* -- Ajustes para pantallas pequeñas -- */
@media (max-width: 480px) {
    .nav-links {
        width: 80%;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .section {
        padding-top: 50px;
    }
}

.satisfy-regular {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}

.login-register-buttons {
  display: flex;
  gap: 10px;
}

.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding-top: 60px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.section h2 {
  font-size: 2em;
}

.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.edu-au-vic-wa-nt-hand-box-description {
  font-family: "Edu AU VIC WA NT Hand", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.5s, opacity 0.9s;
  pointer-events: none;
  /* Añade filtro de brillo para oscurecer directamente el video */
  filter: brightness(0.4); /* Ajusta este valor (0.5 es 50% de brillo) */
}


.box {
  width: 80%;
  max-width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 10px;
  position: relative;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.box h1 {
  font-size: 2rem;
  margin: 0;
}

.box h2 {
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.box-description {
  max-width: 80%;
  margin-top: 0px;
  font-size: 1.2rem;
  text-align: center;
  color: white;
}

.social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: block;
  width: 40px;
  height: 40px;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-top: 450px;
  margin-bottom: 100px;
}

.modal-content h2 {
  margin-top: 0;
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.modal-content form {
  display: flex;
  flex-wrap: wrap;
  color: white;
}

.modal-content .form-group {
  width: 100%;
  padding: 5px;
}

.modal-content .form-group.half-width {
  width: calc(50% - 10px);
}

.modal-content input, .modal-content select, .modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: black;
}

.modal-content button {
  background: linear-gradient(135deg, #2D0088 0%, #FF007A 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.modal-content button:hover {
  background-color: transparent;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.switch-buttons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.switch-buttons button {
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.switch-buttons button:hover {
  background: transparent;
  border: 1px solid #F8F005;
}

.contact-section {
  position: relative;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section form {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-section .form-group {
  margin-bottom: 15px;
}

.contact-section .form-group input, 
.contact-section .form-group textarea {
  width: 90%;
  padding: 5px 5px 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
}

.form-group input::placeholder {
  color: rgb(197, 197, 197);
}

.form-group textarea::placeholder {
  color: rgb(197, 197, 197);
}

.subscribe-section {
  position: relative;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}

.subscribe-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 550;
  font-style: normal;
}

.subscribe-section form {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.subscribe-section .form-group {
  width: 100%;
  margin-bottom: 15px;
}

.subscribe-section .form-group input {
  width: 90%;
  padding: 5px 5px 10px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
}

.promo-section {
  position: relative;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
}

.promo-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.wittgenstein {
  font-family: "Wittgenstein", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.promo-section p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  max-width: 800px;
}

.promo-section .app-buttons a {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  margin: 10px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button-86 {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  border-radius: 50px;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-86::after,
.button-86::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.button-49,
.button-49:after {
  width: 150px;
  height: 76px;
  line-height: 78px;
  font-size: 15px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  border-radius: 10px;
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
box-shadow: 6px 0px 0px #FFE537;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-49:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);

  content: 'ALTERNATE TEXT';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #2D0088 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
}

.button-49:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes glitch {
  0% {
      clip-path: var(--slice-1);
      transform: translate(-20px, -10px);
  }
  10% {
      clip-path: var(--slice-3);
      transform: translate(10px, 10px);
  }
  20% {
      clip-path: var(--slice-1);
      transform: translate(-10px, 10px);
  }
  30% {
      clip-path: var(--slice-3);
      transform: translate(0px, 5px);
  }
  40% {
      clip-path: var(--slice-2);
      transform: translate(-5px, 0px);
  }
  50% {
      clip-path: var(--slice-3);
      transform: translate(5px, 0px);
  }
  60% {
      clip-path: var(--slice-4);
      transform: translate(5px, 10px);
  }
  70% {
      clip-path: var(--slice-2);
      transform: translate(-10px, 10px);
  }
  80% {
      clip-path: var(--slice-5);
      transform: translate(20px, -10px);
  }
  90% {
      clip-path: var(--slice-1);
      transform: translate(-10px, 0px);
  }
  100% {
      clip-path: var(--slice-1);
      transform: translate(0);
  }
}



.button-53 {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  border: 0 solid #E5E7EB;
  border-radius: 10px;
  box-sizing: border-box;
  color: white;
  display: flex;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.75rem;
  padding: .75rem 1.65rem;
  position: relative;
  text-align: center;
  text-decoration: none #F8F005 solid;
  text-decoration-thickness: auto;
  width: 30%;
  margin: auto;
  max-width: 460px;
  position: relative;
  margin-top: 30px;
  cursor: pointer;
  transform: rotate(-2deg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-53:focus {
  outline: 0;
}

.button-53:after {
  content: '';
  position: absolute;
  border: 1px solid #F8F005;
  border-radius: 10px;
  bottom: 4px;
  left: 4px;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}

.button-53:hover:after {
  bottom: 2px;
  left: 2px;
}



.button-55 {
  align-self: center;
  background-color: transparent;
  background-position: 0 90%;
  background-repeat: repeat no-repeat;
  background-size: 4px 3px;
  border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
  border: none;
  box-sizing: border-box;
  color: #41403e;
  cursor: pointer;
  display: inline-block;
  font-family: Neucha, sans-serif;
  font-size: 1rem;
  line-height: 23px;
  outline: none;
  padding: .30rem;
  text-decoration: none;
  transition: all 235ms ease-in-out;
  border-bottom-left-radius: 15px 255px;
  border-bottom-right-radius: 225px 15px;
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-55:hover {
  transform: translate3d(0, 2px, 0);
}

.button-55:focus {
  box-shadow: rgba(0, 0, 0, 9) 2px 8px 4px -6px;
}

/* (Existing CSS remains unchanged) */

.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #888;
}

.password-reset, .login-footer {
  text-align: center;
  margin-top: 15px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.password-reset a, .login-footer a {
  color: #FF007A;
  text-decoration: none;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.password-reset {
  margin-top: 40px;
}

.password-reset a:hover, .login-footer a:hover {
  text-decoration: underline;
}





/* -- Responsive Design -- */
@media (min-width: 768px) {
  .button-49,
  .button-49:after {
      width: 100px;
      height: 45px;
      line-height: 45px;
  }
}

@media (max-width: 768px) {
  .nav {
      flex-direction: column;
  }
  .nav a {
      padding: 10px;
      font-size: 1rem;
  }
  .box {
      width: 90%;
      height: auto;
      padding: 20px;
  }
  .box h1 {
      font-size: 1.5rem;
  }
  .box h2 {
      font-size: 1rem;
  }
  .box-description {
      max-width: 90%;
      font-size: 0.9rem;
  }
  .contact-section h2, .subscribe-section h2, .promo-section h2 {
      font-size: 2rem;
  }
  .contact-section form, .subscribe-section form, .promo-section p {
      max-width: 90%;
  }
}

@media (max-width: 480px) {
  .nav {
      padding: 5px 0;
  }
  .nav a {
      font-size: 0.9rem;
  }
  .login-register-buttons button {
      padding: 5px 10px;
      font-size: 0.8rem;
  }
  .box {
      width: 100%;
  }
  .box h1 {
      font-size: 1.2rem;
  }
  .box h2 {
      font-size: 0.9rem;
  }
  .box-description {
      max-width: 100%;
      font-size: 0.8rem;
  }
  .contact-section h2, .subscribe-section h2, .promo-section h2 {
      font-size: 1.5rem;
  }
  .contact-section form, .subscribe-section form, .promo-section p {
      max-width: 100%;
  }
  .box img {
      width: 300px !important;
  }
  .button-49 {
    width: 100px;
    height: 36px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 414px) {
  .nav a {
      font-size: 0.85rem;
  }
  .box h1 {
      font-size: 1.3rem;
  }
  .box h2 {
      font-size: 0.8rem;
  }
  .box-description {
      font-size: 0.75rem;
  }
  .button-49 {
    width: 100px;
    height: 36px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 390px) {
  .nav a {
      font-size: 0.8rem;
  }
  .box h1 {
      font-size: 1.1rem;
  }
  .box h2 {
      font-size: 0.75rem;
  }
  .box-description {
      font-size: 0.7rem;
  }
  .button-49 {
    width: 100px;
    height: 36px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 375px) {
  .nav a {
      font-size: 0.75rem;
  }
  .box h1 {
      font-size: 1rem;
  }
  .box h2 {
      font-size: 0.5rem;
  }
  .box-description {
      font-size: 0.95rem;
  }
  .button-49 {
    width: 100px;
    height: 36px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .box h1 {
      font-size: 1.7rem;
  }
  .box h2 {
      font-size: 1.1rem;
  }
  .box-description {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
    .box {
        width: 90%;
        height: auto;
        padding: 20px;
    }
    
    .box h1 {
        font-size: 1.5rem;
    }
    
    .box h2 {
        font-size: 1rem;
    }
    
    .box-description {
        max-width: 90%;
        font-size: 0.9rem;
    }
    
    .contact-section h2, 
    .subscribe-section h2, 
    .promo-section h2 {
        font-size: 2rem;
    }
    
    .contact-section form, 
    .subscribe-section form, 
    .promo-section p {
        max-width: 90%;
    }
    
    .button-53 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .box {
        width: 100%;
    }
    
    .box h1 {
        font-size: 1.2rem;
    }
    
    .box h2 {
        font-size: 0.9rem;
    }
    
    .box-description {
        max-width: 100%;
        font-size: 0.8rem;
    }
    
    .contact-section h2, 
    .subscribe-section h2, 
    .promo-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-section form, 
    .subscribe-section form, 
    .promo-section p {
        max-width: 100%;
    }
    
    .button-53 {
        width: 70%;
    }
    
    .social-icons {
        bottom: 10px;
        right: 10px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 18px;
        line-height: 35px;
    }
}