 *{ 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
  body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    position: relative;
    padding-bottom: 61px;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
 
  .bg-pattern {
    
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, #ffe7b7 0%, #ffffff     60%);
    z-index: 0;
  }
  .container {
    position: relative;
    top: -50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 20px 100px;
  }

  .header {
    width: 100%;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 90px;
  }
  .logo-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #fac20a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px rgba(201,162,39,0.12);
    overflow: hidden;
  }
  .logo-wrap img {
    width: 150px;
    height: 80px;
    object-fit: contain;
  }
  .brand-name {
    font-family: 'Anton', sans-serif; font-size: 36px;
    font-size: 36px;
   
    color: #f39b19;
    
  }
  .brand-name span { color: #f39b19;
   }
  .brand-tagline {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    color: #777;
    margin-top: 6px;
  }
    .shoe-background {
    position: absolute;
    top: 20%;
    left: 40%;
    z-index: 0;
    width:600px;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-20deg);
  }
  .shoe-background img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.22;
    filter: grayscale(1) contrast(1.15) brightness(0.72)
      drop-shadow(0 12px 14px rgba(0, 0, 0, 0.2));
  }
  .links-section > :not(.shoe-background) {
    position: relative;
    z-index: 1;
  }

  .links-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 36px;
  }
  .link-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #070707 0%, #17130a 100%);
    border: 1px solid rgba(201, 162, 39, 0.55);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(201, 162, 39, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease,
      border-color 0.3s ease;
  }
  .btn,
  .link-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .btn::before,
  .link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #ffd449 0%, #f39b19 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
  .btn:hover::before,
  .link-btn:hover::before {
    transform: scaleX(1);
  }
  .btn > *,
  .link-btn > * {
    position: relative;
    z-index: 1;
  }
  .link-btn:hover { 
    transform: translateY(-4px);
    border-color: #f39b19;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24),
      0 0 18px rgba(201, 162, 39, 0.22);
  }
  .link-btn:hover .link-label,
  .link-btn:hover .link-desc,
  .link-btn:hover .link-arrow {
    color: #0a0a0a;
  }
  .link-btn:focus-visible {
    outline: 2px solid #f39b19;
    outline-offset: 4px;
  }
  .link-btn.primary { background: #c9a227; border-color: #c9a227; color: #0a0a0a; }
  .link-btn.primary:hover { background: #e0b830; }
  .link-btn.primary .link-label { color: #0a0a0a; }
  .link-btn.primary .link-desc { color: rgba(0,0,0,0.55);
  
   }
  .link-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .link-btn.primary .link-icon { background: rgba(0,0,0,0.15);  }
  .link-icon svg { width: 18px; height: 18px; }
  .link-icon img { width: 50px; height: 40px; object-fit: contain; }
  .link-icon-site img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  .link-icon-google {
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
  }
  .link-icon-estrela {
    
    border-radius: 50%;
    overflow: hidden;
  }
  .link-text { display: flex; flex-direction: column; }
  .link-label { font-size: 21px; font-weight: 700; color: #fff; letter-spacing: 0.2px; }
  .link-desc { font-size: 13px; color: #666; margin-top: 1px;
  font-weight: 500;  }
  .link-arrow { margin-left: auto; color: #555; font-size: 16px; }
  .link-btn.primary .link-arrow { color: rgba(0,0,0,0.4); }
  .support-link {
    width: 100%;
    margin-top: -16px;
    margin-bottom: 20px;
    text-align: center;
  }
  .support-link a {
    color: #777;
    font-size: 15px;
    text-decoration: none;
  }
  .support-link a:hover { color: #999; }

  .model-showcase {
    width: 100%;
    height: 260px;
    margin: 4px 0 28px;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
  }
  .model-showcase model-viewer {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    --poster-color: transparent;
  }

  .about-card {
    width: 100%;
    background: #111;
    border: 0.5px solid #222;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
  }
  .section-tag {
    font-size: 9px;
    letter-spacing: 3px;
    color: #c9a227;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .about-text { font-size: 13px; color: #888; line-height: 1.7; }

  .store-card {
    width: 100%;
    background: #111;
    border: 0.5px solid #222;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .store-photo {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1a1a12 0%, #1a140a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 0.5px solid #222;
  }
  .store-photo svg { width: 48px; height: 48px; opacity: 0.3; }
  .store-photo-label { font-size: 11px; color: #555; letter-spacing: 2px; text-transform: uppercase; }
  .store-info { padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
  .store-dot { width: 8px; height: 8px; border-radius: 50%; background: #c9a227; flex-shrink: 0; }
  .store-addr { font-size: 12px; color: #666; }

  .mascot-card {
    width: 100%;
    background: #111;
    border: 0.5px solid #222;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
  }
  .mascot-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(201,162,39,0.2));
  }
  .mascot-text { flex: 1; }
  .mascot-text p { font-size: 12px; color: #777; line-height: 1.6; margin-top: 6px; }

  footer,
  .footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 20px;
    text-align: center;
    background: #111;
    border-top: 0.5px solid #222;
  }
  footer p,
  .footer p {
    font-size: 10px;
    color: #666;
    letter-spacing: 1.5px;
  }

