/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body full‑screen com background repetido apenas no eixo X */
  body {
    height: 100vh;
    font-family: "Poppins", sans-serif;
    color: #fff;
    background-color: #8f8989;                   /* fundo cinza */
    background-image: url("img/bg.png");          /* sua tira */
    background-position: center bottom;
    background-repeat: repeat-x;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Container centralizado vertical/horizontal */
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  /* Logo topo */
  .logo {
    max-width: 240px;
    margin-bottom: 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;
  }
  
  /* Área dos botões */
  .links {
    width: 100%;
    max-width: 380px;   /* aumentamos para evitar quebra no desktop */
    margin: 0 auto;
  }
  
  /* Estilo dos botões */
  .btn {
    position: relative;       /* para posicionar o ícone */
    display: flex;
    align-items: center;
    justify-content: center;  /* texto sempre centralizado */
    padding: 12px 40px;       /* diminuímos de 60px para 40px no desktop */
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: background 0.2s, padding 0.2s;
    white-space: nowrap;      /* impede quebra de linha */
  }
  .btn:hover {
    background: rgba(0, 0, 0, 0.85);
  }
  
  /* Ícones posicionados fixo à esquerda */
  .btn img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
  
  /* Espaço antes do texto em negrito */
  .btn strong {
    margin-left: 0.2em;
    font-weight: 700;
  }
  
  /* Logo do rodapé */
  .footer-logo {
    max-width: 50px;
    margin-top: 40px;
    opacity: 0.8;
    transition: max-width 0.2s, margin-top 0.2s;
  }
  
  /* ========================================== */
  /* Ajustes para MOBILE (até 600px de largura) */
  @media screen and (max-width: 600px) {
    /* Links ocupam quase toda a viewport */
    .links {
      width: 100%;
      max-width: none;
    }
  
    /* Botões maiores para toque */
    .btn {
      width: 100%;
      padding: 16px 20px 16px 60px; /* mais padding vertical e esquerdo */
      font-size: 1.1rem;
      white-space: nowrap;
    }
  
    /* Logo Wistag menor e mais para baixo */
    .footer-logo {
      max-width: 50px;
      margin-top: 80px;
    }
  
    /* Logo Xangai um pouco maior para equilíbrio */
    .logo {
      max-width: 300px;
    }
  }
  