:root {
  --azul-principal: #1e3a8a;
  --azul-hover: #172554;
  --texto: #0f172a;
  --texto-suave: #334155;
  --cinza: #64748b;
  --linha: rgba(15, 23, 42, 0.075);
  --bg: #f5f7fb;
  --branco: #ffffff;
  --preco: #111827;
  --dourado-suave: #b08a3c;
  --sombra: 0 10px 28px rgba(15, 23, 42, 0.045);
  --sombra-premium: 0 18px 42px rgba(15, 23, 42, 0.085);
}

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

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.92), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
  color: var(--texto);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 18px 86px;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 251, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
  backdrop-filter: blur(22px);
}

.topo {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marca {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 0;
}

.logo {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: contain !important;
  flex: 0 0 52px;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.08));
}

.nome {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.85px;
  line-height: 1;
  color: var(--texto);
}

.slogan {
  margin-top: 4px;
  color: var(--cinza);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 600;
}

section + section {
  margin-top: 22px;
}

.section-head {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-head h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.08;
  color: var(--texto);
}

.section-head p {
  margin-top: 3px;
  color: var(--cinza);
  font-size: 12.8px;
  line-height: 1.35;
  font-weight: 500;
}

.loading,
.empty,
.debug-box {
  width: 100%;
  padding: 28px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--linha);
  color: var(--cinza);
  font-size: 13px;
  line-height: 1.45;
  box-shadow: var(--sombra);
}

.loading {
  text-align: center;
}

.debug-box h3 {
  color: var(--texto);
  margin-bottom: 12px;
}

.debug-box pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 14px;
  margin-top: 12px;
}

.footer {
  width: 100%;
  margin: 32px auto 0;
  padding-bottom: 72px;
}

.footer-baloes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.footer-card {
  min-height: 136px;
  padding: 19px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  text-align: left;
  overflow: hidden;
}

.footer-card h3,
.footer-card h4 {
  margin: 0 0 8px;
  color: var(--texto);
  font-size: 15.5px;
  font-weight: 900;
  letter-spacing: -0.32px;
  line-height: 1.15;
}

.footer-card p,
.footer-card a {
  display: block;
  margin: 0 0 6px;
  color: var(--cinza);
  font-size: 12.2px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-card a {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-card a:hover {
  color: var(--azul-principal);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 14px;
  padding: 0 4px;
  color: #94a3b8;
  font-size: 11.5px;
  line-height: 1.35;
  text-align: center;
}

.instagram-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.floating-lojas {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  min-width: 172px;
  max-width: calc(100vw - 28px);
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.86));
  color: var(--texto);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.floating-lojas:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.floating-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #111827, #020617);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
  box-shadow: 0 6px 12px rgba(15,23,42,.13);
}

.floating-lojas span {
  color: var(--texto);
  font-size: 11.8px;
  font-weight: 850;
  letter-spacing: -0.12px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-baloes {
    grid-template-columns: 1fr;
  }

  .footer-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  main {
    padding: 8px 14px 74px;
  }

  .topo {
    padding: 9px 14px;
  }

  .logo {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    flex-basis: 44px;
  }

  .nome {
    font-size: 21px;
    letter-spacing: -0.7px;
  }

  .slogan {
    font-size: 11.5px;
  }

  section + section {
    margin-top: 17px;
  }

  .section-head {
    margin-bottom: 9px;
  }

  .section-head h2 {
    font-size: 20px;
    letter-spacing: -0.65px;
  }

  .section-head p {
    font-size: 12px;
  }

  .footer {
    margin-top: 26px;
    padding-bottom: 62px;
  }

  .footer-card {
    padding: 15px;
    border-radius: 18px;
  }

  .floating-lojas {
    bottom: 10px;
    min-height: 40px;
    min-width: 166px;
    padding: 6px 13px 6px 7px;
    gap: 7px;
  }

  .floating-icon {
    width: 25px;
    height: 25px;
    font-size: 10.8px;
  }

  .floating-lojas span {
    font-size: 11.3px;
  }
}
