header {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Sora', sans-serif;
  background: linear-gradient(to bottom, #1a1a1a, #202020);
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
}

/* ✅ Corregido para que el body siempre permita scroll */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ✅ HOME PAGE */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 0 1rem;
  margin-top: 2rem;
  flex-grow: 1; /* Permite que crezca dentro del body flexible */
}

.logo {
  width: 100%;
  max-width: 330px;
  margin-top: 1rem;
  margin-bottom: 0rem;
}

.slogan {
  font-family: 'Sora', sans-serif !important;
  font-style: normal;
  font-size: 30px;
  font-weight: 500 !important;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: white; 
  margin: 0;
  padding: 0;
  max-width: 90vw;
}

.direccion {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ccc;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin-top: -0.6rem;
}

.botones-home {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top:0rem;
  margin-bottom: 3.5rem; /* Aumentado para que los botones no se corten */
  flex-wrap: wrap;
}

.btn {
  background-color: #A32C55;
  color: white;
  font-size: 22px;
  font-weight: 500;
  padding: 1.7rem 0;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  width: 180px;
  text-align: center;
  letter-spacing: 1.2px;
}

.btn:hover {
  background-color: #721131;
  transform: scale(1.03);
  transition: all 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo,
.slogan,
.direccion,
.botones-home {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.logo {
  animation-delay: 0.2s;
}
.slogan {
  animation-delay: 0.4s;
}
.direccion {
  animation-delay: 0.6s;
}
.botones-home {
  animation-delay: 0.8s;
}


.footer {
  background-color: #111;
  padding: 1.2rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: white;
  letter-spacing: 1px;
  font-weight: 400;
}
