* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.container {
  text-align: center;
  padding: 20px;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.notify-form input {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

.notify-form button {
  padding: 12px;
  background-color: #1abc9c;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.notify-form button:hover {
  background-color: #16a085;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 30px;
}

.lang-switch button {
  font-size: 20px;
  background: transparent;
  border: none;
  color: white;
  margin-left: 10px;
  cursor: pointer;
}

 
    /* Fondo responsivo */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh; /* asegura cobertura vertical */
      background: url('https://tequilalosarcos.com/images/losarcostequila.png') 
                  center center / cover no-repeat fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    /* Overlay para efecto visual */
    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
      backdrop-filter: blur(5px);
    }

    /* Contenido encima del overlay */
    .hero .content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.5s ease-out;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 0.5em;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }

    p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    }

    /* Keyframes */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Interactividad: zoom al pasar */
    .hero:hover {
      background-size: 110%;
      transition: background-size 0.8s ease-out;
    }
