:root {
  --blue: #0767a8;
  --cyan: #00a6c8;
  --green: #1d8f5b;
  --yellow: #f4c542;
  --coral: #f26a4f;
  --ink: #10202b;
  --muted: #5d6b73;
  --paper: #f7fbfc;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(16, 32, 43, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 0;
  overflow-wrap: break-word;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--white);
  isolation: auto;
  background: #10202b;
}

.hero-video,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  background:
    linear-gradient(120deg, rgba(7, 103, 168, 0.72), rgba(0, 166, 200, 0.28)),
    url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.dynamic-hero::before {
  background:
    linear-gradient(120deg, rgba(7, 103, 168, 0.72), rgba(0, 166, 200, 0.28)),
    var(--hero-photo) center / cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 24, 38, 0.76), rgba(5, 24, 38, 0.25) 56%, rgba(5, 24, 38, 0.52)),
    linear-gradient(0deg, rgba(5, 24, 38, 0.78), rgba(5, 24, 38, 0.06) 45%);
}

.topbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.category-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483647;
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(16, 32, 43, 0.12);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  transform: none;
}

.category-menu::-webkit-scrollbar {
  display: none;
}

.category-menu a {
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 132px;
  padding: 0 16px;
  border-radius: 0;
  color: #5d6b73;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-menu a:hover {
  color: #10202b;
  background: #f1f7fa;
  transform: translateY(-1px);
}

.category-menu a.is-active {
  color: #10202b;
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(244, 197, 66, 0.28);
  opacity: 1;
}

.category-menu svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-menu a:not([href]),
.guide-button:not([href]),
.article-card:not([href]),
.mini-button:not([href]) {
  cursor: default;
}

.category-menu a:not([href]) {
  opacity: 0.72;
}

.category-menu a.is-disabled {
  flex-wrap: wrap;
  row-gap: 4px;
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 9px;
  border-radius: 0;
  background: #df2020;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-menu .soon-pill {
  margin-left: 2px;
  font-size: 0.55rem;
  padding: 3px 7px;
}

.is-disabled-link {
  cursor: default;
}

.guide-button.is-coming-soon {
  cursor: default;
}

.guide-button.is-coming-soon:hover {
  transform: none;
}

.card-soon {
  width: fit-content;
  margin-top: 12px;
}

.brand {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.brand:has(.brand-logo) {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: clamp(112px, 10vw, 154px);
  max-width: 32vw;
  height: auto;
}

.profile-logo-header {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px var(--landing-gutter, clamp(36px, 7vw, 118px)) 0;
}

.nav-link,
.primary-action {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 12px 18px;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-link:hover,
.primary-action:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  align-self: center;
  padding: 48px 0 120px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

h1,
h2 {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 600px;
  margin: 24px 0 34px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.primary-action {
  display: inline-flex;
  background: var(--yellow);
  color: #1f2a2e;
  border-color: var(--yellow);
}

.primary-action:hover {
  background: #ffd85b;
  border-color: #ffd85b;
}

.categories,
.expansion-section,
.blog-section,
.social-section,
.offers-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.categories {
  padding: 70px 0 86px;
}

.expansion-section {
  padding: 0 0 76px;
}

.expansion-lead {
  max-width: 780px;
  margin: -18px 0 26px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
}

.city-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(7, 103, 168, 0.16);
  border-radius: 0;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(16, 32, 43, 0.08);
}

.section-heading {
  display: block;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2 {
  max-width: 620px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.section-heading .eyebrow {
  width: fit-content;
  margin-bottom: 14px;
}

.section-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  color: var(--white);
  background: var(--blue);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  margin-top: 18px;
}

.button-grid,
.article-grid,
.offers-grid {
  display: grid;
  gap: 18px;
}

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

.guide-button {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.guide-button::before,
.guide-button::after {
  content: "";
  position: absolute;
}

.guide-button::before {
  inset: 0;
  background-image: var(--photo);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 260ms ease;
}

.guide-button::after {
  inset: auto -25% -40% 18%;
  height: 110px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(5, 24, 38, 0.1), rgba(5, 24, 38, 0.78)),
    rgba(255, 255, 255, 0.18);
  transform: rotate(-10deg);
}

.guide-button:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(16, 32, 43, 0.25);
}

.guide-button:hover::before {
  transform: scale(1.08);
}

.guide-button > span {
  position: relative;
  z-index: 1;
}

.guide-button strong,
.guide-button small {
  display: block;
  position: relative;
  z-index: 1;
}

.guide-button strong {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.52rem;
  margin-bottom: 8px;
}

.guide-button small {
  font-size: 0.98rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.restaurantes {
  --photo: linear-gradient(rgba(200, 77, 61, 0.22), rgba(5, 24, 38, 0.8)), url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=900&q=80");
}

.shoppings {
  --photo: linear-gradient(rgba(16, 128, 185, 0.2), rgba(5, 24, 38, 0.78)), url("https://images.unsplash.com/photo-1519567241046-7f570eee3ce6?auto=format&fit=crop&w=900&q=80");
}

.praias {
  --photo: linear-gradient(rgba(0, 166, 200, 0.18), rgba(5, 24, 38, 0.72)), url("https://images.unsplash.com/photo-1516306580123-e6e52b1b7b5f?auto=format&fit=crop&w=900&q=80");
}

.passeios {
  --photo: linear-gradient(rgba(23, 61, 107, 0.2), rgba(5, 24, 38, 0.78)), url("https://images.unsplash.com/photo-1544989164-31dc3c645987?auto=format&fit=crop&w=900&q=80");
}

.bares {
  --photo: linear-gradient(rgba(107, 45, 92, 0.22), rgba(5, 24, 38, 0.82)), url("https://images.unsplash.com/photo-1572116469696-31de0f17cc34?auto=format&fit=crop&w=900&q=80");
}

.cafes {
  --photo: linear-gradient(rgba(114, 81, 58, 0.2), rgba(5, 24, 38, 0.78)), url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=900&q=80");
}

.quiosques {
  --photo: linear-gradient(rgba(0, 140, 146, 0.18), rgba(5, 24, 38, 0.76)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.moda {
  --photo: linear-gradient(rgba(44, 62, 115, 0.22), rgba(5, 24, 38, 0.78)), url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=900&q=80");
}

.cinemas {
  --photo: linear-gradient(rgba(35, 35, 35, 0.2), rgba(5, 24, 38, 0.82)), url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=900&q=80");
}

.blog-section,
.social-section,
.offers-section {
  padding: 0 0 76px;
}

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

.article-card,
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 0 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 16px 42px rgba(16, 32, 43, 0.08);
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.article-card:hover,
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 200, 0.35);
  box-shadow: 0 24px 60px rgba(16, 32, 43, 0.14);
}

.card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(7, 103, 168, 0.16), rgba(244, 197, 66, 0.16)),
    var(--photo, url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=900&q=80"));
  background-position: center;
  background-size: cover;
}

.article-tag,
.offer-kicker {
  width: fit-content;
  margin: 4px 22px 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 166, 200, 0.1);
  border-radius: 0;
  padding: 7px 10px;
}

.article-card h3,
.offer-card h3 {
  margin: 0 22px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}

.article-card p,
.offer-card p {
  margin: 0 22px;
  color: var(--muted);
  line-height: 1.4;
}

.offer-card .offer-price {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.article-copacabana {
  --photo: url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=900&q=80");
}

.article-pao-de-acucar {
  --photo: url("https://images.unsplash.com/photo-1516306580123-e6e52b1b7b5f?auto=format&fit=crop&w=900&q=80");
}

.article-hamburguer {
  --photo: url("https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=900&q=80");
}

.article-ruas {
  --photo: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.article-mosteiro {
  --photo: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80");
}

.advertise-banner,
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 76px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 32, 43, 0.92), rgba(7, 103, 168, 0.84)),
    url("https://images.unsplash.com/photo-1518639192441-8fce0a366e2e?auto=format&fit=crop&w=1400&q=80") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.advertise-banner h2,
.final-cta h2 {
  max-width: 680px;
  font-size: clamp(1.85rem, 4vw, 3.6rem);
  line-height: 1;
}

.advertise-banner p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.45;
}

.final-cta {
  display: block;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(35, 35, 35, 0.88), rgba(242, 106, 79, 0.84)),
    url("https://images.unsplash.com/photo-1516306580123-e6e52b1b7b5f?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .whatsapp-button {
  margin-top: 24px;
}

.whatsapp-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 0;
  color: #0f3523;
  background: #49e37f;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  background: #6af09a;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  align-items: center;
}

.social-link {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--blue);
}

.social-icon,
.social-mini {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
}

.social-icon {
  width: 28px;
  height: 28px;
}

.social-mini {
  width: 24px;
  height: 24px;
}

.social-icon svg,
.social-mini svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon svg rect,
.social-icon svg circle,
.social-icon svg path,
.social-mini svg rect,
.social-mini svg circle,
.social-mini svg path {
  vector-effect: non-scaling-stroke;
}

.instagram .social-icon,
.instagram-mini {
  background: linear-gradient(135deg, #d62976, #fa7e1e);
}

.facebook .social-icon,
.facebook-mini {
  background: #1877f2;
}

.youtube .social-icon,
.youtube-mini {
  background: #e62117;
}

.tiktok .social-icon,
.tiktok-mini {
  background: #111111;
}

.whatsapp-channel .social-icon,
.whatsapp-mini {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.site-mini {
  background: var(--blue);
}

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

.offer-card {
  min-height: 0;
}

.offer-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: auto 22px 0;
}

.offer-cafe-torrado {
  --photo: url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=900&q=80");
}

.offer-kit-praia {
  --photo: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.offer-canecas {
  --photo: url("https://images.unsplash.com/photo-1514228742587-6b1558fcca3d?auto=format&fit=crop&w=900&q=80");
}

.offer-cafe-hotel {
  --photo: url("https://images.unsplash.com/photo-1533089860892-a7c6f0a88666?auto=format&fit=crop&w=900&q=80");
}

footer {
  padding: 26px 16px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.footer-logo-link img {
  display: block;
  width: clamp(92px, 11vw, 136px);
  height: auto;
}

footer p {
  margin: 0;
}

.footer-love {
  margin-top: 8px;
}

.footer-links {
  margin-top: 10px;
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--blue);
  font-weight: 700;
}

.footer-links span {
  margin: 0 8px;
  color: rgba(16, 32, 43, 0.28);
}

.heart {
  color: var(--coral);
  font-size: 1.08em;
}

.page-main {
  padding: 68px 0 0;
}

.listing-section,
.article-page,
.deal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.category-map-section {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 72px;
}

.category-map-shell {
  overflow: hidden;
  border-radius: 14px;
  background: #0f1b2c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 52px rgba(16, 32, 43, 0.16);
}

.category-map-top {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  color: #ffffff;
}

.category-map-top strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.category-map-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.category-map {
  width: 100%;
  height: 430px;
  background: #d9eef1;
}

.profile-location-map-section {
  margin-top: 18px;
}

.profile-location-map {
  height: 360px;
}

.category-map .leaflet-popup-content {
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.35;
}

.category-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Montserrat", Arial, sans-serif;
}

.restaurant-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 18px 44px rgba(16, 32, 43, 0.1);
}

.restaurant-photo {
  position: relative;
  overflow: hidden;
}

.restaurant-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 24, 38, 0.56), rgba(5, 24, 38, 0) 48%);
  pointer-events: none;
}

.restaurant-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.restaurant-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 24px);
}

.neighborhood-badge,
.cuisine-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  box-shadow: 0 10px 26px rgba(5, 24, 38, 0.3);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.neighborhood-badge {
  color: #1f2a2e;
  background: #f4c542;
}

.cuisine-badge {
  color: #10202b;
  background: rgba(255, 255, 255, 0.96);
}

.restaurant-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.restaurant-body h3 {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.1;
}

.restaurant-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.restaurant-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.empty-state {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 43, 0.08);
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.empty-state p {
  color: var(--muted);
}

.mini-button {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 0;
  color: var(--white);
  background: var(--blue);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.mini-button.secondary {
  color: var(--ink);
  background: rgba(0, 166, 200, 0.12);
}

.article-layout,
.deal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-copy,
.deal-copy,
.side-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 43, 0.08);
}

.article-copy h2,
.deal-copy h2 {
  margin: 0 0 14px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.article-copy p,
.deal-copy p,
.side-panel p {
  color: var(--muted);
  line-height: 1.58;
}

.article-section-title {
  margin: 34px 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.12;
  color: var(--ink);
}

.article-pullquote {
  margin: 30px 0;
  padding: 24px;
  border-radius: 8px;
  background: #f7f7f7;
  border-left: 5px solid var(--accent);
}

.article-pullquote p {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.side-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.detail-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.byline {
  margin: 0 0 24px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  color: var(--blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 32, 43, 0.08);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}

.team-card div {
  padding: 16px;
}

.team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.team-card p {
  margin: 6px 0 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.profile-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.neighborhood-label,
.profile-cuisine-label {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 0;
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.neighborhood-label {
  background: var(--yellow);
}

.profile-cuisine-label {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 32, 43, 0.08);
}

.profile-page > h2 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.share-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0 0 24px;
  padding: 0 18px;
  border-radius: 0;
  color: #0f3523;
  background: #49e37f;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(16, 32, 43, 0.12);
}

.article-copy .share-button,
.deal-copy .share-button {
  margin: 0 0 18px;
}

.share-row {
  margin-top: 28px;
}

.article-copy .share-row,
.deal-copy .share-row {
  margin-top: 22px;
}

.article-feature-image {
  margin: 24px 0 26px;
}

.article-feature-image img,
.article-gallery img,
.article-ad-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.article-feature-image img {
  aspect-ratio: 16 / 10;
}

.article-feature-image figcaption,
.article-gallery figcaption {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 9px;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.3;
}

.article-gallery {
  margin-top: 34px;
}

.article-gallery h3 {
  margin: 0 0 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery img {
  aspect-ratio: 4 / 3;
}

.article-ad-panel {
  position: sticky;
  top: 112px;
}

.article-ad-card {
  display: grid;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.article-ad-card img {
  aspect-ratio: 1 / 1;
}

.article-ad-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
}

.article-ad-card span {
  color: var(--muted);
  line-height: 1.45;
}

.ad-placeholder {
  min-height: 320px;
  place-content: center;
  padding: 22px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fb 100%);
  border: 1px dashed rgba(16, 32, 43, 0.22);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.profile-box {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 43, 0.08);
}

.profile-description {
  grid-column: span 3;
}

.profile-box h3 {
  margin: 0 0 8px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.1;
}

.profile-box p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.profile-box p + p {
  margin-top: 14px;
}

.profile-map-action {
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
}

.profile-map-note {
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.45;
}
.profile-actions {
  display: grid;
  gap: 10px;
}

.landing-profile .elegant-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(7, 103, 168, 0.14);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(16, 32, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 103, 168, 0.3);
  background: #ffffff;
}

.contact-chip span {
  font-size: 0.78rem;
  line-height: 1;
}

.gallery-section {
  padding-top: 58px;
}

.insta-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.insta-gallery figure {
  margin: 0;
}

.insta-gallery img {
  width: 100%;
  aspect-ratio: 1080 / 1360;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16, 32, 43, 0.1);
}

.insta-gallery figcaption {
  display: -webkit-box;
  min-height: 2.7em;
  margin-top: 10px;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-profile {
  --landing-gutter: clamp(36px, 7vw, 118px);
  padding: 74px 0 0;
}

.landing-profile-hero {
  min-height: 82svh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 24, 38, 0.84), rgba(5, 24, 38, 0.26)),
    linear-gradient(0deg, rgba(5, 24, 38, 0.85), rgba(5, 24, 38, 0.08) 55%),
    var(--profile-photo) center / cover;
}

.landing-profile-copy,
.landing-profile-section,
.landing-profile-final {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--landing-gutter);
  padding-right: var(--landing-gutter);
  box-sizing: border-box;
}

.landing-profile-copy {
  padding-top: 104px;
  padding-bottom: 86px;
}

.landing-profile-copy h1 {
  max-width: 880px;
  font-size: clamp(2.65rem, 8vw, 6.4rem);
}

.landing-profile-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

.landing-profile-section {
  padding-top: 82px;
}

.landing-video-section {
  display: grid;
  justify-items: center;
}

.landing-video-section .section-heading {
  width: 100%;
}

.vertical-video-box {
  width: min(440px, 100%);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #061723;
  box-shadow: 0 28px 70px rgba(16, 32, 43, 0.24);
}

.vertical-video-box iframe,
.vertical-video-box video,
.vertical-video-box > div:not(.video-placeholder) {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 103, 168, 0.72), rgba(0, 166, 200, 0.2)),
    var(--profile-photo) center / cover;
}

.video-placeholder span {
  font-size: 1.3rem;
  font-weight: 700;
}

.video-placeholder p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.landing-profile .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-profile .testimonial-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 43, 0.08);
}

.landing-profile .testimonial-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.45;
}

.landing-profile .testimonial-card strong {
  color: var(--blue);
  font-size: 0.98rem;
}

.landing-profile-final {
  width: min(980px, calc(100% - (var(--landing-gutter) * 2)));
  padding-left: 44px;
  padding-right: 44px;
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(7, 103, 168, 0.92), rgba(5, 24, 38, 0.88)),
    var(--profile-photo) center / cover;
  box-shadow: var(--shadow);
}

.landing-profile-final h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.landing-profile-final p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.landing-profile-final .profile-cta-button {
  margin-top: 24px;
}

.profile-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(360px, 100%);
  min-height: 58px;
  padding: 0 30px;
  border-radius: 0;
  color: #ffffff;
  background: #d92727;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(217, 39, 39, 0.26);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.profile-cta-button:hover {
  transform: translateY(-3px);
  background: #b91f1f;
  box-shadow: 0 22px 46px rgba(217, 39, 39, 0.32);
}

.subtle-share {
  margin-top: 18px;
  font-size: 0.94rem;
}

.subtle-share a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.subtle-share a:hover {
  color: #ffffff;
}

.landing-profile .insta-gallery {
  gap: 18px;
}

.landing-profile .insta-gallery figcaption {
  padding: 0 4px;
}

@media (max-width: 900px) {
  .button-grid,
  .article-grid,
  .offers-grid,
  .restaurant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advertise-banner {
    display: block;
  }

  .whatsapp-button {
    margin-top: 24px;
  }

  .article-layout,
  .deal-layout {
    grid-template-columns: 1fr;
  }

  .article-ad-panel {
    position: static;
  }

  .article-gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-description {
    grid-column: auto;
  }

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

  .landing-profile .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .category-menu {
    min-width: 0;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 106px;
  }

  .hero {
    min-height: 100svh;
  }

  .topbar {
    padding: 20px 0;
  }

  .brand:has(.brand-logo) {
    min-height: 0;
    padding: 0;
  }

  .brand-logo {
    width: 108px;
    max-width: 32vw;
  }

  .nav-link {
    display: none;
  }

  .category-menu {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 8px;
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
    border-color: rgba(16, 32, 43, 0.08);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -14px 42px rgba(16, 32, 43, 0.16);
    transform: none;
  }

  .category-menu a {
    flex: 0 0 82px;
    min-height: 62px;
    min-width: 82px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 10px;
    color: #5d6b73;
    font-size: 0.76rem;
    line-height: 1;
  }

  .category-menu a:hover {
    color: #10202b;
  }

  .category-menu svg {
    width: 21px;
    height: 21px;
  }

  .hero-content {
    padding: 28px 0 118px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 13vw, 3.2rem);
    line-height: 1;
  }

  .hero-text {
    margin: 18px 0 26px;
    font-size: 1.05rem;
    line-height: 1.38;
  }

  .section-heading h2 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
    line-height: 1.05;
  }

  .button-grid,
  .article-grid,
  .offers-grid,
  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    gap: 18px 24px;
  }

  .social-link {
    min-height: 0;
    padding: 0;
    font-size: 0.9rem;
  }

  .whatsapp-channel {
    grid-column: auto;
  }

  .guide-button {
    min-height: 190px;
    padding: 20px;
  }

  .guide-button strong {
    font-size: 1.34rem;
    line-height: 1.08;
  }

  .guide-button small {
    font-size: 0.95rem;
  }

  .advertise-banner,
  .final-cta {
    padding: 24px;
  }

  .article-card,
  .offer-card {
    min-height: 0;
  }

  .article-card h3,
  .offer-card h3 {
    font-size: 1.18rem;
    line-height: 1.15;
  }

  .card-photo {
    aspect-ratio: 16 / 9;
  }

  .whatsapp-button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .profile-page > h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .insta-gallery {
    grid-template-columns: 1fr;
  }

  .landing-profile {
    --landing-gutter: 30px;
    padding-top: 0;
  }

  .landing-profile-hero {
    min-height: 86svh;
  }

  .landing-profile-copy {
    width: 100%;
    max-width: none;
    padding-top: 78px;
    padding-bottom: 96px;
  }

  .profile-logo-header {
    padding-top: 82px;
  }

  .landing-profile-section {
    width: 100%;
    max-width: none;
    padding-top: 54px;
  }

  .vertical-video-box {
    width: min(340px, 100%);
  }

  .landing-profile-final {
    width: calc(100% - (var(--landing-gutter) * 2));
    padding: 30px 22px;
  }

  .landing-profile .whatsapp-button,
  .landing-profile .share-button,
  .landing-profile .profile-cta-button {
    width: 100%;
  }
}

.landing-body {
  padding-bottom: 94px;
  background: #f4f8fa;
}

.sales-page {
  color: var(--ink);
  background: #f4f8fa;
}

.sales-hero {
  min-height: 82vh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 54px 16px 42px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 24, 38, 0.92), rgba(7, 103, 168, 0.7)),
    url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.sales-url {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 8px 14px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.14);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.sales-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 5.6vw, 4.8rem);
  line-height: 1;
}

.sales-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.42;
}

.sales-video,
.sales-offer,
.sales-section,
.sales-final {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-ticker-track {
    animation: none;
    transform: none;
  }
}

.sales-video {
  margin-top: -72px;
}

.sales-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #07131d;
  box-shadow: var(--shadow);
}

.sales-offer,
.sales-final {
  margin-top: 34px;
  padding: 34px;
  text-align: center;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  box-shadow: var(--shadow);
}

.sales-offer h2,
.sales-final h2 {
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  line-height: 0.92;
}

.sales-offer p,
.sales-final p {
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.sales-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  margin-top: 26px;
  padding: 0 28px;
  border-radius: 0;
  color: #10202b;
  background: var(--yellow);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.sales-section {
  padding: 76px 0 0;
}

.sales-section.dark {
  width: 100%;
  margin-top: 76px;
  padding: 76px max(16px, calc((100% - 1060px) / 2));
  color: var(--white);
  background: #10202b;
}

.sales-heading {
  margin-bottom: 24px;
}

.sales-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.sales-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sales-grid article,
.testimonial-grid blockquote,
.faq details {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 32, 43, 0.08);
}

.sales-grid h3 {
  margin: 0 0 10px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.sales-grid p,
.testimonial-grid p,
.faq p,
.benefit-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.benefit-list p {
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-grid cite {
  display: block;
  margin-top: 16px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
}

.faq p {
  margin-top: 14px;
}

.sales-final {
  margin-bottom: 76px;
}

.fixed-sales-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: block;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--blue);
  border-top: 5px solid var(--white);
  box-shadow: 0 -16px 44px rgba(0, 0, 0, 0.3);
}

.fixed-ticker {
  min-width: 0;
  overflow: hidden;
}

.fixed-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  animation: tickerMove 21s linear infinite;
}

.fixed-ticker-track span,
.fixed-ticker-track strong,
.fixed-ticker-track em {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-style: normal;
}

.fixed-ticker-track span {
  padding: 7px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
}

.fixed-ticker-track strong {
  padding: 7px 12px;
  color: var(--blue);
  background: var(--white);
  border-radius: 0;
}

.fixed-ticker-track em {
  padding: 7px 14px;
  color: #06180f;
  background: #49e37f;
  border-radius: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
}

.fixed-ticker-track .ticker-gap {
  margin-right: 82px;
}

.fixed-ticker-track .ticker-gap {
  color: #ffffff;
  border-color: #e5252a;
  background: #e5252a;
}

.admin-body {
  min-height: 100vh;
  background: #eef5f7;
}

.admin-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 60px;
}

.admin-header,
.admin-layout,
.admin-form-title,
.admin-list-header,
.admin-list-item,
.admin-list-actions,
.admin-check,
.admin-gallery-row,
.admin-gallery-new {
  display: flex;
  gap: 14px;
}

.admin-header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-header h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.admin-card {
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 32, 43, 0.1);
}

.admin-login {
  width: min(420px, 100%);
}

.admin-layout {
  align-items: flex-start;
}

.admin-extra {
  margin-top: 26px;
}

.admin-layout > aside {
  flex: 0 0 320px;
}

.admin-form {
  flex: 1;
  display: grid;
  gap: 16px;
}

.admin-card h2,
.admin-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.admin-list-header,
.admin-form-title {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-list-item {
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(16, 32, 43, 0.1);
}

.admin-list-item strong,
.admin-list-item span {
  display: block;
}

.admin-list-item span {
  color: var(--muted);
}

.admin-status {
  width: fit-content;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 0;
  color: var(--ink) !important;
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-list-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 700;
  color: var(--blue);
}

.admin-list-actions .danger {
  color: #b42318;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-form label,
.admin-login label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-login input {
  width: 100%;
  border: 1px solid rgba(16, 32, 43, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfe;
  font: inherit;
}

.admin-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.admin-form textarea {
  resize: vertical;
}

.admin-check {
  display: inline-flex !important;
  grid-template-columns: none;
  align-items: center;
  font-weight: 700;
}

.admin-check input {
  width: auto;
}

.admin-upload {
  display: grid;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 32, 43, 0.1);
}

.admin-crm {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(7, 103, 168, 0.18);
  border-radius: 8px;
  background: #f7fbfc;
}

.admin-crm h3 {
  margin: 0;
}

.admin-preview {
  width: min(320px, 100%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.admin-gallery-row,
.admin-gallery-new {
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: #f7fbfc;
}

.admin-gallery-row img {
  width: 72px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.admin-gallery-row input[type="text"],
.admin-gallery-row input:not([type]),
.admin-gallery-new input:not([type]) {
  flex: 1;
}

.admin-save {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-message {
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.admin-message.success {
  color: #0f3523;
  background: #d8f8e5;
}

.admin-message.error {
  color: #7a271a;
  background: #fde4df;
}

@media (max-width: 900px) {
  .sales-grid,
  .testimonial-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .admin-layout {
    display: grid;
  }

  .admin-layout > aside {
    flex-basis: auto;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .landing-body {
    padding-bottom: 128px;
  }

  .sales-hero {
    min-height: auto;
    padding: 42px 16px 112px;
  }

  .sales-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .sales-video {
    margin-top: 24px;
  }

  .sales-offer,
  .sales-final {
    padding: 26px 20px;
  }

  .sales-button {
    width: 100%;
    min-height: 56px;
    text-align: center;
  }

  .fixed-sales-footer {
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  }

  .fixed-ticker-track {
    font-size: 0.78rem;
  }

}

@media (max-width: 700px) {
  .admin-shell {
    width: min(100% - 20px, 1280px);
    padding: 20px 0 42px;
  }

  .admin-header,
  .admin-list-item,
  .admin-gallery-row,
  .admin-gallery-new {
    display: grid;
  }

  .admin-gallery-row img {
    width: 100%;
    max-width: 180px;
  }
}

/* Fundo branco das páginas */
body,
.page-main,
.landing-profile,
.intro,
.categories,
.expansion-section,
.blog-section,
.social-section,
.offers-section,
.listing-section,
.article-page,
.deal-page,
.profile-page {
  background: #ffffff;
}


.admin-login-page .admin-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 48px 0;
}

.admin-login-page .admin-header {
  display: block;
  width: min(520px, 100%);
  text-align: center;
}

.admin-login-page .admin-header h1 {
  font-size: clamp(2.5rem, 8vw, 4.8rem);
}

.admin-login-page .admin-login {
  width: min(520px, 100%);
}

/* Ajuste da chamada final do perfil */
.landing-profile-final {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #f7fafb 58%, #edf4f6 100%);
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 22px 54px rgba(16, 32, 43, 0.1);
}

.landing-profile-final .eyebrow,
.landing-profile-final h2,
.landing-profile-final p:not(.eyebrow) {
  color: var(--ink);
}

.landing-profile-final p:not(.eyebrow) {
  color: var(--muted);
}

.profile-cta-button {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.profile-cta-button:hover {
  background: #2a2a2a;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.subtle-share a {
  color: var(--muted);
}

.subtle-share a:hover {
  color: var(--ink);
}
/* Ajustes da landing Anuncie Agora */
.sales-hero {
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 420px);
  align-items: center;
  justify-content: center;
  column-gap: clamp(28px, 5vw, 72px);
  padding: 78px clamp(22px, 5vw, 76px) 118px;
  text-align: left;
}

.sales-hero-copy {
  display: grid;
  gap: 18px;
}

.sales-url {
  margin: 0;
  color: #06131d;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sales-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.2rem);
}

.sales-hero-video {
  width: min(420px, 100%);
  justify-self: center;
}

.vturb-embed-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: #07131d;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.3);
}

.vturb-embed-box iframe,
.vturb-embed-box video,
.vturb-embed-box > div:not(.vturb-placeholder) {
  width: 100%;
  height: 100%;
  border: 0;
}

.vturb-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(145deg, rgba(5, 24, 38, 0.95), rgba(7, 103, 168, 0.62));
}

.vturb-placeholder strong {
  font-size: 1.35rem;
}

.vturb-placeholder span {
  color: rgba(255, 255, 255, 0.82);
}

.sales-copy-block {
  margin-top: -72px;
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.sales-copy-block p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.42;
  text-align: center;
}

.sales-copy-block p + p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.fixed-sales-footer {
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
}

.fixed-ticker-track {
  gap: 34px;
  font-size: clamp(1.08rem, 2.4vw, 1.36rem);
  font-weight: 800;
  animation: tickerMove 12s linear infinite;
}

.fixed-ticker-track span,
.fixed-ticker-track strong,
.fixed-ticker-track em {
  padding: 10px 18px;
}

@media (max-width: 900px) {
  .sales-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 22px 104px;
    text-align: center;
  }

  .sales-url {
    margin: 0 auto;
  }

  .sales-hero-video {
    width: min(360px, 100%);
  }

  .sales-copy-block {
    margin-top: 28px;
    padding: 26px 22px;
  }
}

@media (max-width: 700px) {
  .sales-hero {
    padding-bottom: 118px;
  }

  .sales-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .fixed-ticker-track {
    font-size: 1rem;
    animation-duration: 10s;
  }
}
/* Capsulas e alinhamento dos destaques */
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 0;
  color: var(--yellow);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 32, 43, 0.08);
}

.hero .eyebrow,
.landing-profile-hero .eyebrow,
.sales-hero .eyebrow {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.96);
}

.section-heading .eyebrow,
.section-heading.compact .eyebrow {
  margin-bottom: 12px;
}

.final-cta,
.sales-offer,
.sales-final,
.landing-profile-final {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta > *,
.sales-offer > *,
.sales-final > *,
.landing-profile-final > * {
  margin-left: auto;
  margin-right: auto;
}

.final-cta p:not(.eyebrow),
.advertise-banner p:not(.eyebrow),
.sales-offer p,
.sales-final p,
.landing-profile-final p:not(.eyebrow) {
  text-align: center;
}

@media (min-width: 901px) {
  .advertise-banner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
/* Correcao forte de centralizacao dos banners */
.final-cta,
.advertise-banner,
.sales-offer,
.sales-final {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.final-cta > *,
.advertise-banner > *,
.sales-offer > *,
.sales-final > * {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.advertise-banner > div,
.final-cta > div,
.sales-offer > div,
.sales-final > div {
  display: grid;
  justify-items: center;
  width: 100%;
}

.final-cta h2,
.advertise-banner h2,
.sales-offer h2,
.sales-final h2,
.final-cta p:not(.eyebrow),
.advertise-banner p:not(.eyebrow),
.sales-offer p,
.sales-final p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.eyebrow,
.hero .eyebrow,
.landing-profile-hero .eyebrow,
.sales-hero .eyebrow {
  color: var(--ink) !important;
}
/* Ajustes finais da landing de anuncios */
.sales-hero {
  min-height: 100svh;
  padding-top: 24px !important;
  padding-bottom: 86px !important;
  row-gap: 18px;
}

.sales-hero-copy {
  gap: 12px;
}

.sales-hero h1 {
  font-size: clamp(2.05rem, 5vw, 4.7rem);
}

.sales-hero-video {
  width: min(360px, 100%);
}

.vturb-embed-box {
  max-height: min(58vh, 520px);
}

.sales-offer,
.sales-final {
  padding-top: clamp(46px, 7vw, 78px) !important;
  padding-bottom: clamp(46px, 7vw, 78px) !important;
}

.sales-offer .eyebrow,
.sales-final .eyebrow {
  margin-bottom: 22px !important;
}

.sales-offer h2,
.sales-final h2 {
  margin-top: 4px !important;
}

.sales-offer p,
.sales-final p {
  margin-top: 24px !important;
}

.sales-offer .sales-button,
.sales-final .sales-button {
  margin-top: 34px !important;
}

@media (max-width: 900px) {
  .sales-hero {
    padding-top: 28px !important;
    padding-bottom: 104px !important;
  }

  .sales-hero h1 {
    font-size: clamp(1.95rem, 9vw, 3.05rem);
  }

  .sales-hero-video {
    width: min(365px, 100%);
  }

  .vturb-embed-box {
    max-height: 46vh;
  }
}

@media (max-width: 700px) {
  .sales-hero {
    padding-top: 26px !important;
    padding-bottom: 112px !important;
  }

  .sales-hero h1 {
    font-size: clamp(1.85rem, 8.7vw, 2.75rem);
  }

  .sales-hero-video {
    width: min(330px, 100%);
  }

  .vturb-embed-box {
    max-height: 40vh;
  }
}

/* Landing: vantagens e mockups responsivos */
.device-showcase {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 52%, #fff7df 100%);
  box-shadow: 0 24px 64px rgba(16, 32, 43, 0.08);
}

.device-showcase .sales-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.device-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.72fr) minmax(130px, 0.42fr);
  align-items: end;
  gap: clamp(14px, 2vw, 24px);
}

.device {
  position: relative;
  overflow: hidden;
  border: 10px solid #101820;
  border-radius: 8px;
  background: #101820;
  box-shadow: 0 24px 46px rgba(16, 32, 43, 0.18);
}

.desktop-device {
  min-height: 330px;
}

.tablet-device {
  min-height: 290px;
}

.phone-device {
  min-height: 360px;
  border-width: 9px;
  border-radius: 0;
}

.device-bar {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: #101820;
}

.device-bar span,
.phone-notch {
  display: block;
  background: rgba(255, 255, 255, 0.38);
}

.device-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 0;
}

.device-screen {
  height: 100%;
  min-height: inherit;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  background: #ffffff;
}

.device-screen strong,
.device-screen p,
.device-screen small,
.device-screen em {
  position: relative;
  z-index: 1;
}

.device-screen strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.08;
}

.device-screen p,
.device-screen small {
  color: var(--muted);
}

.device-screen em {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 0;
  color: #ffffff;
  font-style: normal;
  font-weight: 800;
  background: #111111;
}

.screen-photo {
  height: 150px;
  margin: 18px 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 32, 43, 0.05), rgba(16, 32, 43, 0.32)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=900&q=75") center/cover;
}

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

.screen-grid span {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: linear-gradient(135deg, #1376b0, #ffcf3d);
}

.screen-grid span:nth-child(2) {
  background: linear-gradient(135deg, #e5252a, #ffcf3d);
}

.screen-grid span:nth-child(3) {
  background: linear-gradient(135deg, #111111, #1376b0);
}

.screen-grid span:nth-child(4) {
  background: linear-gradient(135deg, #45de7a, #ffffff);
}

.sales-section.dark {
  background: linear-gradient(135deg, #07141c 0%, #0f5e8c 45%, #d85a42 100%);
}

.sales-section.dark .sales-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.benefit-list {
  gap: 18px;
}

.benefit-list p {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 22px !important;
  color: var(--ink) !important;
  border: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.benefit-list p strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 0;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  background: #1376b0;
}

.benefit-list p:nth-child(2) strong {
  background: #e5252a;
}

.benefit-list p:nth-child(3) strong {
  color: var(--ink);
  background: #ffcf3d;
}

.benefit-list p:nth-child(4) strong {
  background: #111111;
}

.benefit-list p:nth-child(5) strong {
  color: var(--ink);
  background: #45de7a;
}

.benefit-list p span {
  display: block;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.42;
}

@media (max-width: 900px) {
  .device-showcase {
    width: min(100% - 28px, 680px);
    padding: 24px 16px;
  }

  .device-stage {
    grid-template-columns: 1fr;
  }

  .desktop-device,
  .tablet-device,
  .phone-device {
    min-height: auto;
  }

  .phone-device {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .benefit-list p {
    min-height: auto;
  }
}

/* Landing: espaco para video/GIF do perfil no Guia */
.loop-showcase {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(16, 32, 43, 0.08);
}

.loop-showcase .sales-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.loop-video-frame {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  padding: clamp(10px, 1.7vw, 18px);
  border-radius: 8px;
  background: #101820;
  box-shadow: 0 24px 54px rgba(16, 32, 43, 0.18);
}

.loop-video-inner {
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  min-height: 260px;
  padding: clamp(22px, 5vw, 56px);
  text-align: center;
  border-radius: 6px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(19, 118, 176, 0.72), rgba(16, 24, 32, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
}

.loop-video-inner span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 0;
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #ffffff;
}

.loop-video-inner strong {
  max-width: 720px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.loop-video-inner p {
  max-width: 580px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.45;
}

@media (max-width: 700px) {
  .loop-showcase {
    width: min(100% - 28px, 680px);
    padding: 22px 14px;
  }

  .loop-video-frame {
    aspect-ratio: 4 / 5;
  }

  .loop-video-inner {
    min-height: 360px;
  }
}

/* Perfil de produto */
.product-profile .profile-cuisine-label {
  background: rgba(255, 255, 255, 0.94);
}

.product-detail-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.6fr) minmax(220px, 0.5fr);
}

.product-seller-box h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.product-profile-final .profile-cta-button {
  background: #111111;
}

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

/* Pagina isolada para testar menu estilo aplicativo */
.menu-test-body {
  min-height: 100vh;
  color: #10202b;
  background: #f7fafb;
  padding-bottom: 112px;
}

.menu-test-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 72px;
}

.menu-test-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(36px, 7vw, 72px) 0;
}

.menu-test-logo {
  width: clamp(96px, 13vw, 150px);
  height: auto;
  margin-bottom: 22px;
}

.menu-test-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.menu-test-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.menu-test-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px auto 0;
  color: #5d6b73;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

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

.menu-test-canvas article {
  min-height: 280px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(16, 32, 43, 0.08);
}

.menu-test-canvas span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 0;
  color: #0767a8;
  font-weight: 800;
  background: #e7f6fc;
}

.menu-test-canvas h2 {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.menu-test-canvas p {
  max-width: 440px;
  margin: 18px 0 0;
  color: #5d6b73;
  font-size: 1.12rem;
  line-height: 1.45;
}

.app-menu-test {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 2147483647;
  display: flex;
  width: min(980px, calc(100% - 32px));
  min-width: 0;
  gap: 8px;
  padding: 8px;
  overflow-x: auto;
  transform: translateX(-50%);
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(16, 32, 43, 0.12);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.app-menu-test::-webkit-scrollbar {
  display: none;
}

.app-menu-test a {
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 0;
  color: #5d6b73;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.app-menu-test a:hover {
  color: #10202b;
  background: #f1f7fa;
  transform: translateY(-1px);
}

.app-menu-test a.is-active {
  color: #10202b;
  background: #f4c542;
  box-shadow: 0 10px 24px rgba(244, 197, 66, 0.28);
}

.app-menu-test svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.creator-credit {
  margin-top: 0.45rem;
}

.creator-credit a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .menu-test-body {
    padding-bottom: 112px;
  }

  .menu-test-page {
    width: min(100% - 28px, 680px);
    padding-top: 42px;
  }

  .menu-test-canvas {
    grid-template-columns: 1fr;
  }

  .app-menu-test {
    top: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: min(100% - 20px, 560px);
    padding: 7px;
    border-radius: 0;
  }

  .app-menu-test a {
    flex: 0 0 82px;
    min-width: 82px;
    min-height: 62px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 10px;
    font-size: 0.76rem;
    line-height: 1;
  }

  .app-menu-test svg {
    width: 21px;
    height: 21px;
  }
}

/* Branco duro e menu inferior tambem no tablet */
:root {
  --paper: #ffffff;
}

html,
body,
.page-main,
.intro,
.categories,
.expansion-section,
.blog-section,
.social-section,
.offers-section,
.listing-section,
.article-page,
.deal-page,
.profile-page,
.landing-profile,
.restaurant-body,
.sales-page,
.admin-body,
.menu-test-body {
  background: #ffffff !important;
}

.category-menu,
.app-menu-test {
  position: fixed !important;
  z-index: 2147483647 !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.restaurant-card,
.restaurant-photo,
.restaurant-badges,
.guide-button,
.article-card,
.offer-card {
  z-index: auto !important;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 106px;
  }

  .category-menu {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    gap: 8px;
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom)) !important;
    border-color: rgba(16, 32, 43, 0.08);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 -14px 42px rgba(16, 32, 43, 0.12) !important;
    transform: none !important;
  }

  .category-menu a {
    flex: 0 0 92px;
    min-width: 92px;
    min-height: 62px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 10px;
    font-size: 0.78rem;
    line-height: 1;
  }

  .category-menu svg {
    width: 21px;
    height: 21px;
  }
}

@media (min-width: 1025px) {
  .category-menu {
    top: 0 !important;
    bottom: auto !important;
    background: #ffffff !important;
  }
}

/* Protecao dos heroes: imagem de apoio sempre visivel, mesmo antes do video carregar */
.hero {
  color: #ffffff !important;
  background:
    linear-gradient(90deg, rgba(5, 24, 38, 0.76), rgba(5, 24, 38, 0.22) 56%, rgba(5, 24, 38, 0.52)),
    linear-gradient(0deg, rgba(5, 24, 38, 0.78), rgba(5, 24, 38, 0.04) 45%),
    url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat !important;
}

.hero.dynamic-hero {
  background:
    linear-gradient(90deg, rgba(5, 24, 38, 0.76), rgba(5, 24, 38, 0.22) 56%, rgba(5, 24, 38, 0.52)),
    linear-gradient(0deg, rgba(5, 24, 38, 0.78), rgba(5, 24, 38, 0.04) 45%),
    var(--hero-photo) center / cover no-repeat !important;
}

.hero::before {
  z-index: 0 !important;
}

.hero-video {
  z-index: 0 !important;
  opacity: 0 !important;
  pointer-events: none;
}

.hero-backdrop {
  z-index: 2 !important;
  pointer-events: none;
}

.topbar,
.hero-content {
  z-index: 3 !important;
}

.landing-profile-hero {
  color: #ffffff !important;
  background:
    linear-gradient(90deg, rgba(5, 24, 38, 0.84), rgba(5, 24, 38, 0.26)),
    linear-gradient(0deg, rgba(5, 24, 38, 0.85), rgba(5, 24, 38, 0.08) 55%),
    var(--profile-photo) center / cover no-repeat !important;
}

@media (min-width: 701px) and (max-width: 1024px) {
  .hero {
    min-height: 86svh !important;
    background-color: #10202b !important;
    background-image:
      linear-gradient(90deg, rgba(5, 24, 38, 0.78), rgba(5, 24, 38, 0.2) 58%, rgba(5, 24, 38, 0.48)),
      linear-gradient(0deg, rgba(5, 24, 38, 0.72), rgba(5, 24, 38, 0.06) 48%),
      url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=1800&q=80") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .hero.dynamic-hero {
    background-image:
      linear-gradient(90deg, rgba(5, 24, 38, 0.78), rgba(5, 24, 38, 0.2) 58%, rgba(5, 24, 38, 0.48)),
      linear-gradient(0deg, rgba(5, 24, 38, 0.72), rgba(5, 24, 38, 0.06) 48%),
      var(--hero-photo) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .landing-profile-hero {
    min-height: 82svh !important;
    background-color: #10202b !important;
    background-image:
      linear-gradient(90deg, rgba(5, 24, 38, 0.84), rgba(5, 24, 38, 0.24)),
      linear-gradient(0deg, rgba(5, 24, 38, 0.78), rgba(5, 24, 38, 0.08) 55%),
      var(--profile-photo) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

/* Conteudo sempre abaixo do menu fixo */
@media (min-width: 701px) {
  .page-main {
    padding-top: 118px !important;
  }

  .listing-section,
  .article-page,
  .deal-page,
  .profile-page {
    padding-top: 0 !important;
  }
}

@media (max-width: 700px) {
  .page-main {
    padding-top: 34px !important;
  }
}

/* Leitura limpa para matérias do blog */
.blog-article-body {
  background: #ffffff !important;
}

.blog-article-body .article-page {
  width: min(1180px, calc(100% - 32px));
  padding-bottom: 92px;
}

.blog-clean-layout {
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: center;
  gap: clamp(28px, 5vw, 58px);
}

.blog-article-body .article-copy,
.blog-article-body .side-panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-article-body .article-copy h2 {
  margin-bottom: 24px;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.blog-article-body .article-copy p {
  margin: 0 0 22px;
  color: #111111;
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  line-height: 1.72;
}

.blog-article-body .byline {
  margin-bottom: 28px;
  color: #5d6b73;
  font-size: 0.96rem;
  font-weight: 700;
}

.blog-article-body .article-section-title {
  margin: 48px 0 16px;
  color: #111111;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 700;
}

.blog-article-body .article-pullquote {
  margin: 36px 0;
  padding: 0 0 0 22px;
  border: 0;
  border-left: 4px solid var(--yellow);
  border-radius: 0;
  background: transparent;
}

.blog-article-body .article-pullquote p {
  color: #111111;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
}

.blog-article-body .article-feature-image {
  margin: 26px 0 38px;
}

.blog-article-body .article-feature-image img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.blog-article-body .article-gallery {
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid rgba(16, 32, 43, 0.1);
}

.blog-article-body .article-gallery h3 {
  color: #111111;
  font-family: "Source Sans 3", Arial, sans-serif;
}

.blog-article-body .article-gallery figure {
  display: grid;
  gap: 10px;
}

.blog-article-body .article-gallery figcaption,
.blog-article-body .article-feature-image figcaption {
  color: #111111;
}

.blog-article-body .article-ad-panel {
  top: 118px;
  padding-top: 8px;
}

.blog-article-body .article-ad-card,
.blog-article-body .ad-placeholder {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.blog-article-body .article-ad-card img {
  border-radius: 8px;
}

.blog-article-body .article-ad-card strong,
.blog-article-body .article-ad-card span {
  color: #111111;
}

.blog-article-body .article-ad-card em {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 0;
  color: #ffffff;
  background: #111111;
  font-style: normal;
  font-weight: 700;
}

.related-posts {
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid rgba(16, 32, 43, 0.1);
}

.related-posts > .eyebrow {
  margin-bottom: 12px;
}

.related-posts h3 {
  margin: 0 0 20px;
  color: #111111;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.related-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.related-post-card {
  display: grid;
  gap: 10px;
  color: #111111;
}

.related-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.related-post-card span {
  color: #0767a8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-post-card strong {
  color: #111111;
  font-size: 1.08rem;
  line-height: 1.16;
}

/* Garantia de visibilidade dos cards de matérias */
.blog-section .article-grid,
.article-grid {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.blog-section .article-card,
.article-card {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #111111 !important;
  background: #ffffff !important;
}

.article-card h3,
.article-card p,
.article-card .article-tag {
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .blog-clean-layout {
    grid-template-columns: 1fr;
  }

  .blog-article-body .article-ad-panel {
    position: static;
    max-width: 420px;
  }

  .related-post-grid {
    grid-template-columns: 1fr;
  }
}

/* Formato retangular para todos os elementos que antes eram pilulas. */
.category-menu a,
.app-menu-test,
.app-menu-test a,
.soon-pill,
.card-soon,
.eyebrow,
.hero .eyebrow,
.landing-profile-hero .eyebrow,
.sales-hero .eyebrow,
.section-heading .eyebrow,
.article-tag,
.offer-kicker,
.neighborhood-badge,
.cuisine-badge,
.guide-button,
.mini-button,
.whatsapp-button,
.share-button,
.sales-button,
.sales-marquee-pill,
.sales-offer .eyebrow,
.sales-final .eyebrow,
.profile-badges span,
.landing-profile-final p:not(.eyebrow),
.final-cta p:not(.eyebrow),
.advertise-banner p:not(.eyebrow) {
  border-radius: 0 !important;
}

/* Garantia final: menu e selos sempre retangulares, sem canto arredondado. */
.category-menu,
.category-menu a,
.category-menu a:hover,
.category-menu a.is-active,
.category-menu a.is-disabled,
.category-menu .soon-pill,
.soon-pill,
.eyebrow,
.article-tag,
.offer-kicker,
.neighborhood-badge,
.cuisine-badge,
.guide-button,
.mini-button,
.whatsapp-button,
.share-button,
.sales-button,
.sales-marquee-pill,
.sales-marquee-link,
.sales-marquee-track span,
.card-soon {
  border-radius: 0 !important;
}


