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

/* Variáveis */
:root {
  --max-w: 380px;
  --btn-bg: rgba(0, 0, 0, 0.7);
  --btn-bg-hover: rgba(0, 0, 0, 0.85);
  --pad-v: 12px;
  --pad-r: 40px;
  --pad-l: 60px;
}

/* Body full-screen com gradient */
body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: linear-gradient(to bottom, #365f33, #20462a);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  padding: 20px;
  text-align: center;
}

/* Logo topo */
.logo {
  max-width: 240px;
  margin: 0 auto 24px;
  transition: max-width 0.2s;
}

/* Tagline */
.tagline {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.tagline .highlight {
  font-weight: 700;
}

/* Localização */
.location {
  font-size: 1rem;
  margin-bottom: 32px;
}

/* Bloco Wi-Fi */
.wifi-block {
  margin-bottom: 24px;
}
.wifi-info {
  color: #eee;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.wifi-info small {
  display: block;
  opacity: 0.8;
}

/* Links de avaliação */
.links {
  margin-bottom: 40px;
}

/* Botões gerais */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--pad-v) var(--pad-r) var(--pad-v) var(--pad-l);
  margin: 8px 0;
  background: var(--btn-bg);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn:hover {
  background: var(--btn-bg-hover);
}

/* Ícone absoluto à esquerda */
.btn img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

/* Negrito com espaçamento */
.btn strong {
  margin-left: 0.2em;
  font-weight: 700;
}

/* Logo rodapé */
.footer-logo {
  max-width: 50px;
  margin: 0 auto;
  opacity: 0.8;
  transition: max-width 0.2s;
}

/* Responsivo */
@media (max-width: 600px) {
  :root {
    --max-w: 95%;
  }
  .logo {
    max-width: 300px;
  }
  .footer-logo {
    margin-top: 40px;
  }
  .btn {
    padding: 16px 20px 16px 60px;
    font-size: 1.1rem;
  }
}
