/* reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #23272a;
}

.luckiest {
  font-family: 'Luckiest Guy', cursive;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 40px;
}

.hero {
  background-color: #404eed;
  background-image: url('assets/images/header.png.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background-color: white;
  color: #23272a;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-dark {
  background-color: #23272a;
  color: white;
}

.section-invite {
  padding: 100px 20px;
}

.section-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.image-box img {
  max-width: 100%;
  height: auto;
}

.text-box {
  flex: 1;
  max-width: 500px;
}

.text-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 18px;
  line-height: 1.6;
}

.section-final {
  padding: 100px 20px;
  text-align: center;
}

.section-final h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section-final p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.final-image {
  max-width: 100%;
  height: auto;
}

.footer {
  background-color: #23272a;
  padding: 25px;
  text-align: center;
}

.footer img {
  height: 35px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .section-grid {
    flex-direction: column;
    text-align: center;
  }

  .text-box {
    max-width: 100%;
  }

  .text-box h2 {
    font-size: 24px;
  }

  .text-box p {
    font-size: 16px;
  }

  .section-final h2 {
    font-size: 24px;
  }

  .section-final p {
    font-size: 16px;
  }

  .footer img {
    height: 30px;
  }
}