@import "./components/logo.css";

/* =====================
   Layout – Welcome
   ===================== */

.welcome {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-content {
  max-width: 960px;
  width: 100%;
  text-align: center;
  padding: 40px 24px;
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }
}

.hero-content {
  max-width: 720px;
  padding: 0 24px;
}


.containerLogoMiyo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1.2s ease-out forwards;
}

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

.logoMiyo-img {
  max-width: 780px;
  width: 100%;
  height: auto;
}

.headline {
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: 2.8rem; /* si estaba en 3.5–3.8rem */
  line-height: 1.1;
}

@media (max-width: 768px) {
  .headline {
    font-size: 2.4rem;
  }
}

.subheadline {
  margin-top: 12px;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.mascot-area {
  position: fixed;
  bottom: 10px;
  right: 24px;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.mascot {
  position: fixed;
  bottom: 24px;
  right: 32px;
  width: 220px;
  opacity: 0.95;
  pointer-events: none;
}

.mascot img {
  width: 100%;
  height: auto;
}


.waitlist {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waitlist-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.waitlist-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.waitlist-form {
  display: flex;
  gap: 12px;
}

.waitlist-form input {
  padding: 14px 16px;
  min-width: 260px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--surface-light);
  font-size: 0.95rem;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary-light);
}

.waitlist-form button {
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  border: none;
  background-color: var(--primary-dark);
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.waitlist-form button:hover {
  background-color: #007983; /* +5% */
}

.waitlist-microcopy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 10px; 
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.45;
  font-size: 1.2rem;
  animation: float 2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}


@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}


.footer {
  margin-top: 120px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}


