:root {
  color-scheme: light dark;
  --font-heading: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --page: #fafafc;
  --surface: #ffffff;
  --surface-soft: #f1f3f7;
  --ink: #111827;
  --muted: #596273;
  --line: #d9dee8;
  --navy: #172554;
  --navy-soft: #22366f;
  --green: #167345;
  --green-hover: #105c36;
  --white: #f8fafc;
  --radius: 18px;
  --shadow: 0 18px 50px rgb(23 37 84 / 0.12);
  --shadow-card: 0 10px 30px rgb(23 37 84 / 0.06);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #b45309;
  outline-offset: 4px;
}

.benefit-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
}

.benefit-bar__content {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.benefit-bar span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8rem;
  margin-right: 1.5rem;
  background: rgb(255 255 255 / 0.35);
  vertical-align: -0.08rem;
}

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgb(250 250 252 / 0.92);
  backdrop-filter: blur(12px);
}

.site-header__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand strong {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a,
.text-link {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button--small {
  min-height: 46px;
  padding-inline: 1rem;
}

.button--primary {
  background: var(--navy);
  color: var(--white);
}

.button--primary:hover {
  background: var(--navy-soft);
}

.button--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.button--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.button--whatsapp {
  background: var(--green);
  color: #ffffff;
}

.button--whatsapp:hover {
  background: var(--green-hover);
}

.button--outline-light {
  border-color: rgb(255 255 255 / 0.5);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.hero {
  display: grid;
  min-height: min(720px, calc(100dvh - 110px));
  align-items: center;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.instagram-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgb(23 37 84 / 0.05);
  transition: all 180ms ease;
}

.instagram-hero-badge:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.instagram-hero-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e1306c;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__text {
  max-width: 44ch;
  margin-bottom: 1.8rem;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -0.75rem 1rem 0.75rem -0.75rem;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--navy);
}

.hero__media img {
  width: 100%;
  max-height: 540px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.trust {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust__grid > div {
  display: grid;
  gap: 0.25rem;
  padding: 1.5rem 1.25rem;
}

.trust__grid > div + div {
  border-left: 1px solid var(--line);
}

.trust strong {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.trust span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 50ch;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Abas de Categorias - Altura consistente, sem quebra irregular de texto */
.category-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
  padding-bottom: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.category-tab {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 180ms ease;
}

.category-tab:hover {
  border-color: var(--navy);
  background: var(--surface-soft);
  color: var(--navy);
}

.category-tab.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

/* Vitrine de Calçados: Perfeitamente Simétrica (50% / 50%) */
.showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #cbd5e1;
}

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

.showcase-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface-soft);
}

.showcase-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.showcase-card:hover .showcase-card__media img {
  transform: scale(1.02);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgb(23 37 84 / 0.88);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.showcase-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 1.5rem;
  gap: 1.25rem;
}

.showcase-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.showcase-card__header h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.card-price-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.showcase-card__info p {
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Seletor de Numeração Interativo */
.size-selector {
  margin-top: 0.75rem;
}

.size-selector__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms ease;
  user-select: none;
}

.size-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.size-chip.selected {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.showcase-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.payment-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.button--full {
  width: 100%;
}

.whatsapp-icon {
  flex-shrink: 0;
}

/* Card CTA para Categorias Extras */
.showcase-card--cta {
  background: linear-gradient(145deg, #172554, #1e3a8a);
  color: #ffffff;
  border: none;
}

.showcase-card--cta .card-badge {
  background: rgb(255 255 255 / 0.2);
  color: #ffffff;
}

.showcase-card__cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.75rem;
  gap: 1.5rem;
}

.showcase-card__cta-inner h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.showcase-card__cta-inner p {
  color: rgb(255 255 255 / 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
}

.credit {
  background: var(--surface-soft);
}

.credit__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.credit__intro p {
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  padding-top: 0;
}

.steps span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.steps p {
  margin-bottom: 0;
}

/* ==========================================================================
   Seção Instagram Oficial @supermoda1lagarto
   ========================================================================== */
.instagram-section {
  background: var(--page);
  border-bottom: 1px solid var(--line);
}

.instagram-header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.instagram-header-box__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.instagram-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.instagram-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3b82f6;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  border: 2px solid var(--surface);
}

.instagram-user-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.instagram-user-row h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.badge-loja {
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  background: var(--surface-soft);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
}

.instagram-bio-text {
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.45;
}

.instagram-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.instagram-stats strong {
  color: var(--ink);
  font-weight: 700;
}

.button--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgb(225 48 108 / 0.25);
}

.button--instagram:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

.instagram-icon {
  flex-shrink: 0;
}

/* Feed Grid de 4 Posts Simétricos */
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.instagram-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.instagram-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.instagram-post-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.instagram-post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.instagram-post-author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.instagram-post-location {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.instagram-post-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.instagram-post-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 300ms ease;
}

.instagram-post-card:hover .instagram-post-media img {
  transform: scale(1.04);
}

.instagram-post-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 1rem;
  gap: 0.85rem;
}

.instagram-post-body p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink);
}

.instagram-post-body p strong {
  margin-right: 0.35rem;
}

.instagram-post-tags {
  font-size: 0.78rem;
  color: #3b82f6;
  font-weight: 600;
}

.store {
  background: var(--navy);
  color: var(--white);
}

.store__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.store h2,
.store h3,
.store p,
.store address,
.store dt,
.store dd {
  color: var(--white);
}

.store__label {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store address {
  margin-bottom: 1.75rem;
  font-size: 1.08rem;
  font-style: normal;
}

.hours {
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.08);
  padding: clamp(1.4rem, 4vw, 2.3rem);
}

.hours h3 {
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hours dl,
.hours dd {
  margin: 0;
}

.hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
}

.hours dl > div:last-child {
  border-bottom: 0;
}

.hours dt {
  color: rgb(255 255 255 / 0.72);
}

.hours dd {
  text-align: right;
  font-weight: 800;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 8vw, 7rem);
}

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list details:first-child {
  border-top: 1px solid var(--line);
}

.faq__list summary {
  min-height: 64px;
  padding: 1.2rem 2.5rem 1.2rem 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq__list details p {
  max-width: 58ch;
  padding: 0 2rem 1.35rem 0;
  margin-bottom: 0;
}

.final-cta {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.final-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
}

.final-cta p {
  margin-bottom: 0;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}

.site-footer__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.site-footer p {
  margin-bottom: 0;
  text-align: center;
  font-size: 0.88rem;
}

.site-footer > a {
  font-weight: 750;
}

.mobile-contact {
  display: none;
}

@media (max-width: 900px) {
  .site-header__content {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 2rem;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .showcase,
  .credit__grid,
  .store__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .showcase-card__media img {
    aspect-ratio: 4 / 3;
  }

  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-header-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .instagram-header-box__right {
    width: 100%;
  }

  .instagram-header-box__right .button {
    width: 100%;
  }

  .store__grid {
    align-items: start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(calc(100% - 1.75rem), var(--container));
  }

  .benefit-bar__content {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .benefit-bar span:not(:first-child) {
    display: none;
  }

  .site-header__content {
    min-height: 60px;
    gap: 0.75rem;
  }

  .site-nav {
    gap: 0.85rem;
    font-size: 0.82rem;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 1.75rem;
    padding-bottom: 2.25rem;
    gap: 1.75rem;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.15;
    max-width: 15ch;
  }

  .hero__text {
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    gap: 0.65rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media::before {
    inset: -0.4rem 0.6rem 0.4rem -0.4rem;
  }

  .hero__media img {
    max-height: 380px;
    object-position: center top;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid > div {
    padding: 1rem 0.85rem;
  }

  .trust__grid > div:nth-child(3),
  .trust__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust__grid > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .trust__grid > div:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding-block: 3rem;
  }

  .category-tabs {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .category-tab {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .showcase-card__body {
    padding: 1.15rem;
    gap: 1rem;
  }

  .showcase-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .size-chip {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.78rem;
  }

  .final-cta__content,
  .site-footer__content {
    display: grid;
  }

  .final-cta__content .button {
    width: 100%;
  }

  .site-footer__content {
    justify-items: start;
    gap: 0.75rem;
  }

  .site-footer p {
    text-align: left;
  }

  /* Polimento da Seção Instagram no Mobile */
  .instagram-feed-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .instagram-header-box {
    padding: 1.25rem;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .instagram-header-box__left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
  }

  .instagram-avatar-wrapper {
    flex-shrink: 0;
  }

  .instagram-avatar-lg {
    width: 58px;
    height: 58px;
  }

  .instagram-header-info {
    flex: 1;
    min-width: 170px;
  }

  .instagram-user-row {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .instagram-user-row h2 {
    font-size: 1.2rem;
  }

  .instagram-bio-text {
    width: 100%;
    font-size: 0.84rem;
    line-height: 1.4;
    margin-top: 0.35rem;
    margin-bottom: 0.65rem;
  }

  .instagram-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.65rem 0.5rem;
    border-radius: 8px;
    background: var(--surface-soft);
    text-align: center;
    font-size: 0.75rem;
  }

  .instagram-stats span {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.25;
  }

  .instagram-stats strong {
    font-size: 0.88rem;
    color: var(--navy);
  }

  .instagram-post-card {
    box-shadow: var(--shadow-card);
  }

  .instagram-post-header {
    padding: 0.7rem 0.85rem;
  }

  .instagram-post-media {
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
  }

  .instagram-post-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
  }

  .instagram-post-body {
    padding: 0.9rem;
    gap: 0.65rem;
  }

  .instagram-post-body p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .instagram-post-tags {
    font-size: 0.75rem;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: block;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: rgb(250 250 252 / 0.94);
    backdrop-filter: blur(12px);
  }

  .mobile-contact .button {
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0f1422;
    --surface: #151b2a;
    --surface-soft: #1a2233;
    --ink: #edf1f7;
    --muted: #b7c0ce;
    --line: #30394a;
    --navy: #9aadef;
    --navy-soft: #b4c2f2;
    --white: #f8fafc;
    --green: #167345;
    --green-hover: #105c36;
    --shadow: 0 18px 50px rgb(0 0 0 / 0.35);
  }

  .instagram-hero-badge {
    background: #151b2a;
    border-color: #30394a;
    color: #edf1f7;
  }

  .instagram-header-box,
  .instagram-post-card {
    background: #151b2a;
    border-color: #30394a;
  }

  .instagram-post-header {
    border-color: #30394a;
  }

  .instagram-post-body p,
  .instagram-bio-text,
  .instagram-stats strong {
    color: #edf1f7;
  }

  .badge-loja {
    background: #1a2233;
    color: #93c5fd;
  }

  .benefit-bar,
  .store {
    background: #182752;
  }

  .site-header,
  .mobile-contact {
    background: rgb(15 20 34 / 0.92);
  }

  .brand strong,
  .steps span,
  .button--primary,
  .hero__media::before {
    background: #294178;
  }

  .button--outline {
    border-color: #9aadef;
  }

  .button--outline:hover {
    background: #9aadef;
    color: #101522;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
