* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 70px;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;

  color: white;
  overflow-x: hidden;
  overflow-y: auto;

  background: linear-gradient(-45deg, #59afa3, #4aa397, #7cc7bd, #f5c400);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.background-glow {
  position: fixed;
  inset: 0;
  width: 700px;
  height: 700px;
  margin: auto;
  background: radial-gradient(circle, #f5c40055, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.texto-container {
  width: 100%;
  padding: 30px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.titulo {
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  margin: 0;
  padding: 44px 24px 0;
}

.subtitulo {
  font-weight: 400;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  margin-top: 8px;
  padding: 0 24px;
}

#carousel {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 24px 0 0;
}

.container {
  position: relative;
  z-index: 1;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);

  padding: 45px;
  border-radius: 22px;

  max-width: 420px;
  width: 90%;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 150px;
  margin-bottom: 20px;

  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
}

.subtitle {
  opacity: 0.9;
  margin-top: 10px;
}

.construction {
  margin-top: 15px;
  font-weight: 400;
}

.links {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.button {
  text-decoration: none;
  color: white;

  padding: 10px 18px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.15);

  transition: all 0.25s;
}

.button:hover {
  background: #f5c400;
  color: #222;

  transform: translateY(-2px);
}
