
  * { box-sizing: border-box; }
  html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-image: url(imagens/fundo.jpeg);
    background-size: cover;
    background-attachment: fixed;
    background-position:left bottom;
  }

  .page {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, #43106D 10%, #0D0D0D 100%);
    padding: 24px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-title {
    font-family: space-grotesk, sans-serif;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    margin-top: 8px;
  }

  .headline {
    color: #fff;
    font-family: space-grotesk, sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin: 28px 0 14px;
    letter-spacing: 0.5px;
  }

  .subtext {
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    max-width: 380px;
    margin: 0 0 28px;
  }

  .links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
.link-insta{
  text-align: center;
}
  .pop-us {
    font-weight: bold;
    color: black;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
  }
  .pop-us:hover {
    transform: translateY(-2px);
  }

  .link-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .link-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .link-text {
    flex: 1;
    min-width: 0;
    text-align: center;
  }
 
  .link-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.2px;
  }
  .link-sub {
    font-size: 12.5px;
    color: #8a8a8a;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .dots {
    color: #b3b3b3;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    flex-shrink: 0;
  }

  .footer-btn {
    margin-top: 40px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }

  /* ---- icones genericos ---- */
  .ic-wa { background: #25D366; }
  .ic-maps { background-image: url('imagens/tiktok.png'); background-size: cover; }
  .ic-catalog { background: #d9a441; }

