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

.hero {
  width: 100%;
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 18, 32, 0.65), rgba(8, 18, 32, 0.7)),
    url("assets/img/orla02.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8f5f0;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.overlay-card {
  width: 100%;
  max-width: 520px;

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

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 28px;

  padding: 40px 28px;

  text-align: center;

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

.logo {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 10px;

  color: #f6d28b;
}

.subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;

  color: #f5f5f5;

  margin-bottom: 35px;
}

.main-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;

  margin-bottom: 20px;
}

.description {
  font-size: 15px;
  line-height: 1.8;

  color: #f0f0f0;

  margin-bottom: 35px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  width: 100%;

  text-decoration: none;

  padding: 16px 20px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45);

  color: #ffffff;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-catalogo {
  background: #ffffff;
  color: #0d1b2a;
}

.btn-catalogo:hover {
  transform: translateY(-2px);
}

.btn-desconto {
  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #ffffff;
}

.btn-desconto:hover {
  background: rgba(255, 255, 255, 0.18);

  transform: translateY(-2px);
}

.footer-text {
  margin-top: 35px;

  font-size: 12px;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.6;
}

@media (min-width: 768px) {
  .overlay-card {
    padding: 55px 45px;
  }

  .main-title {
    font-size: 34px;
  }

  .description {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
  }
}
