/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #0e3d31;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Banner Topo */
.banner img {
  width: 100vw;
  height: 200px;
  object-fit: cover;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

/* Container */
.container {
  width: 100%;
  max-width: 460px;
  padding: 30px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.logo img {
  width: 300px;
  margin-bottom: 24px;
}

/* Título */
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Subtítulo */
.subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #e2e2e2;
  margin-bottom: 30px;
}

/* Botões */
.btn {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 420px;
  margin: 16px auto;
  border-radius: 10px;
  text-decoration: none;
  background-color: #bcd74f;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.btn:hover {
  background-color: #4ea172;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-img {
  width: 150px;
  height: 90px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;
}

.btn-text {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3d2d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.btn.outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Rodapé */
footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #ccc;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animar {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

/* Atrasos em cascata */
.entrada-delay-1 {
  animation-delay: 0.1s;
}
.entrada-delay-2 {
  animation-delay: 0.25s;
}
.entrada-delay-3 {
  animation-delay: 0.4s;
}
.entrada-delay-4 {
  animation-delay: 0.55s;
}
.entrada-delay-5 {
  animation-delay: 0.7s;
}
.entrada-delay-6 {
  animation-delay: 0.85s;
}
