:root {
  --ink: #111111;
  --ink-soft: #2b2f36;
  --paper: #ffffff;
  --yellow: #f5b400;
  --yellow-dark: #d79b00;
  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --green: #22c55e;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  padding-bottom: 84px;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: var(--header-height);
  padding: 10px 16px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-button path,
.icon-button circle,
.benefit-item path,
.benefit-item rect,
.benefit-item circle,
.button svg path,
.map-pin path,
.map-pin circle,
.rail-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo-mark {
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.92rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button svg {
  width: 26px;
  height: 26px;
}

.icon-button:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 40;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(-120%);
  transition: transform 220ms ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  padding: 14px 10px;
  border-radius: var(--radius);
  font-weight: 800;
}

.mobile-nav a:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 70px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.income h2,
.trust h2,
.local h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 2.4rem;
  font-weight: 900;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-actions,
.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-primary:hover {
  background: #ffc21a;
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-outline {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--yellow);
}

.button-outline:hover {
  background: #fff8df;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.benefits {
  background: var(--paper);
  border-bottom: 1px solid var(--gray-200);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-item {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 24px 10px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.benefit-item:nth-child(2n) {
  border-right: 0;
}

.benefit-item svg {
  width: 36px;
  height: 36px;
  color: var(--ink);
}

.benefit-item:first-child svg {
  color: var(--yellow-dark);
}

.benefit-item h2 {
  margin: 4px 0 0;
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefit-item p {
  max-width: 180px;
  margin: 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.section {
  padding-block: 58px;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.section-heading h2,
.income h2,
.trust h2,
.local h2,
.final-cta h2 {
  font-size: 2rem;
  font-weight: 900;
}

.products-heading {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.text-link {
  align-self: center;
  color: var(--yellow-dark);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.chips {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar,
.product-rail::-webkit-scrollbar,
.review-rail::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.chip:hover,
.chip.active {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.rail-wrap {
  position: relative;
}

.product-rail,
.review-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.product-card {
  display: flex;
  flex: 0 0 min(84vw, 320px);
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 180, 0, 0.55);
  box-shadow: var(--shadow);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  padding: 14px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body p {
  margin: 0;
  color: var(--gray-500);
  font-weight: 700;
}

.product-body h3 {
  margin: 4px 0 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.product-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.product-body li {
  position: relative;
  padding-left: 22px;
}

.product-body li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  content: "✓";
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.product-body strong {
  display: block;
  margin: auto 0 14px;
  padding-top: 20px;
  font-size: 1.1rem;
}

.rail-arrow {
  display: none;
}

.income {
  background: linear-gradient(180deg, #fff8e4 0%, #ffffff 52%);
  border-top: 1px solid #f7e5ad;
  border-bottom: 1px solid var(--gray-200);
  padding-block: 38px;
}

.income-layout {
  display: grid;
  gap: 18px;
  align-items: center;
}

.income-copy p:not(.eyebrow),
.trust-copy p,
.local-card p,
.final-cta p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.income-copy .button {
  margin-top: 10px;
}

.income-image {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.idea-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.idea-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 180, 0, 0.5);
  box-shadow: var(--shadow);
}

.idea-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: var(--gray-100);
}

.idea-card h3 {
  margin: 10px 12px 4px;
  font-size: 0.98rem;
  line-height: 1.2;
}

.idea-card p {
  margin: 0 12px 12px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.trust {
  color: var(--paper);
  background: var(--ink);
}

.trust-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.trust-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-logo {
  width: min(220px, 68vw);
  height: auto;
  margin-bottom: 18px;
  border-radius: var(--radius);
  opacity: 0.94;
}

.trust-copy .button {
  margin-top: 12px;
}

.review-rail {
  padding-top: 4px;
}

.review-card {
  flex: 0 0 min(84vw, 340px);
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.avatar {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  background-image: url("assets/resenas-clientas.png");
  background-repeat: no-repeat;
  background-size: 300% 100%;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gray-200);
}

.avatar-one {
  background-position: 0% center;
}

.avatar-two {
  background-position: 50% center;
}

.avatar-three {
  background-position: 100% center;
}

.stars {
  color: var(--yellow-dark);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin: 8px 0 0;
  font-size: 1.05rem;
}

.review-card .city {
  margin: 0 0 10px;
  color: var(--gray-500);
  font-weight: 700;
}

.review-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.local {
  background: var(--gray-50);
}

.local-layout {
  display: grid;
  gap: 18px;
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.84)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    #eceff3;
  background-size: auto, 44px 44px, 44px 44px, auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.map-panel::before,
.map-panel::after {
  position: absolute;
  inset: auto -10% 34% -10%;
  height: 22px;
  background: rgba(245, 180, 0, 0.5);
  content: "";
  transform: rotate(-7deg);
}

.map-panel::after {
  inset: 42% -10% auto -10%;
  background: rgba(17, 17, 17, 0.12);
  transform: rotate(14deg);
}

.map-panel strong,
.map-panel small,
.map-pin {
  position: relative;
  z-index: 1;
}

.map-panel strong {
  margin-top: 10px;
  font-size: 1.2rem;
}

.map-panel small {
  color: var(--gray-500);
  font-weight: 800;
}

.map-pin {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.map-pin svg {
  width: 36px;
  height: 36px;
}

.local-card {
  padding: 28px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.local-card p {
  color: rgba(255, 255, 255, 0.78);
}

.hours {
  color: rgba(255, 255, 255, 0.62) !important;
}

.final-cta {
  padding-block: 42px;
  background: var(--yellow);
}

.final-cta .eyebrow {
  color: rgba(17, 17, 17, 0.72);
}

.final-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}

.final-layout p {
  max-width: 680px;
}

.site-footer {
  padding-block: 36px 110px;
  color: var(--paper);
  background: var(--ink);
}

.footer-layout {
  display: grid;
  gap: 24px;
}

.footer-brand {
  align-items: flex-start;
}

.footer-logo {
  width: min(260px, 76vw);
  height: auto;
  border-radius: var(--radius);
}

.footer-brand > span {
  display: none;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--yellow);
}

.mobile-whatsapp-bar {
  position: fixed;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 60;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.22);
  font-weight: 900;
}

.mobile-whatsapp-bar svg {
  width: 24px;
  height: 24px;
}

.mobile-whatsapp-bar path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    grid-template-columns: 56px 1fr auto;
    padding-inline: 28px;
  }

  .brand-logo-mark {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 660px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-item,
  .benefit-item:nth-child(2n) {
    border-right: 1px solid var(--gray-200);
    border-bottom: 0;
  }

  .benefit-item:last-child {
    border-right: 0;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .section-heading h2,
  .income h2,
  .trust h2,
  .local h2,
  .final-cta h2 {
    font-size: 2.7rem;
  }

  .product-card {
    flex-basis: 330px;
  }

  .rail-arrow {
    position: absolute;
    top: 45%;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    box-shadow: var(--shadow);
  }

  .rail-arrow svg {
    width: 22px;
    height: 22px;
  }

  .rail-prev {
    left: -18px;
  }

  .rail-next {
    right: -18px;
  }

  .income-layout {
    grid-template-columns: 1fr 0.9fr;
  }

  .ideas-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .trust-copy {
    max-width: 560px;
  }

  .review-card {
    flex-basis: 360px;
  }

  .local-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .final-layout {
    grid-template-columns: 1fr auto;
  }

  .site-footer {
    padding-block: 44px;
  }

  .footer-layout {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }

  .mobile-whatsapp-bar {
    display: none;
  }
}

@media (min-width: 1020px) {
  .mobile-nav {
    display: none;
  }

  .menu-toggle {
    cursor: default;
    opacity: 0.75;
  }

  .menu-toggle:hover {
    color: var(--paper);
    background: transparent;
    transform: none;
  }

  .hero-image {
    object-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
