:root {
  --bg-base: #f7f7fb;
  --bg-contrast: #ffffff;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
  --container-width: min(1120px, 90vw);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 18px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none !important;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 247, 251, 0.85);
  border-bottom: 1px solid var(--border-soft);
}

.topbar--solid {
  position: static;
  backdrop-filter: none;
  background: var(--bg-contrast);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-main);
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu__link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu__link:hover,
.menu__link--active {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  color: var(--text-main);
  font-family: inherit;
  font-weight: 500;
}

.menu-toggle__box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-toggle__line {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 15;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.hero__subtitle {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image img {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--primary-dark);
  background: transparent;
  border: 2px solid rgba(245, 158, 11, 0.35);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--primary-dark);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.highlight {
  padding: 3.5rem 0;
}

.highlight__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.highlight__media img {
  box-shadow: var(--shadow-soft);
}

.highlight h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.highlight h3 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
}

.store-grid {
  padding: 3.5rem 0 4rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-heading__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
}

.section-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.store-card {
  background: var(--bg-contrast);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store-card__image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.store-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.store-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.store-card__meta a {
  color: var(--primary-dark);
  text-decoration: none;
}

.store-card__meta a:hover {
  text-decoration: underline;
}

.store-card__cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
}

.cta {
  padding: 3.5rem 0;
}

.cta__content {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(249, 115, 22, 0.28));
  border-radius: 32px;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.cta__text {
  max-width: 32rem;
}

.footer {
  padding: 2.5rem 0;
  background: var(--bg-contrast);
  border-top: 1px solid var(--border-soft);
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
}

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

.footer__nav a:hover {
  color: var(--primary-dark);
}

/* --- Página da loja --- */
.store-page main {
  padding-bottom: 4rem;
}

.store-hero {
  padding: 3.5rem 0;
}

.store-hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.store-hero__gallery {
  display: grid;
  gap: 1.2rem;
}

.store-hero__gallery figure {
  margin: 0;
}

.store-hero__text h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 1rem 0 1.25rem;
}

.store-info {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.store-info dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
}

.store-info dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.store-section {
  padding: 3.5rem 0;
}

.grid--features {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  background: var(--bg-contrast);
  padding: 1.75rem;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  align-items: start;
}

.feature-card__icon {
  font-size: 2.25rem;
}

.store-experiences {
  display: grid;
  gap: 2.5rem;
}

.experience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-contrast);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.experience__image img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.experience__text {
  padding: 2rem;
}

.experience h3 {
  margin: 0 0 1rem;
}

.experience--highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(249, 115, 22, 0.18));
}

/* --- Página de listagem --- */
.stores-page main {
  padding-bottom: 4rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.page-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.page-hero__subtitle {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
}

.store-filters {
  padding-bottom: 1.5rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  background: var(--bg-contrast);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.filter-bar__control {
  flex: 1 1 220px;
}

.filter-bar__control--search {
  flex: 2 1 320px;
}

input[type="search"],
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text-main);
}

input[type="search"]::placeholder {
  color: rgba(31, 41, 55, 0.5);
}

.store-listing {
  padding: 2rem 0 3rem;
}

.store-listing__header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.store-count {
  margin: 0;
  font-weight: 500;
}

.store-contact {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.store-contact:hover {
  text-decoration: underline;
}

.listing-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.listing-footer .btn {
  min-width: 220px;
}

/* --- Responsividade --- */
@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    inset: 80px 10px auto 10px;
    background: var(--bg-contrast);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 30;
  }

  .menu.menu--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu__link {
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  .hero,
  .highlight,
  .store-grid,
  .cta,
  .store-hero,
  .store-section,
  .page-hero,
  .store-listing {
    padding: 2.5rem 0;
  }

  .cta__content {
    padding: 2.5rem;
  }

  .store-card__image img {
    height: 200px;
  }

  .filter-bar {
    padding: 1rem;
  }

  .store-listing__header {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .topbar__content {
    flex-direction: row;
    gap: 0.75rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }

  .filter-bar__control {
    flex: 1 1 100%;
  }

  .listing-footer .btn {
    width: 100%;
  }
}


.store-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

