:root {
  --cream: #f8f3ed;
  --cream-dark: #f1e8de;
  --olive: #6f7550;
  --olive-dark: #58603f;
  --gold: #c9a24f;
  --gold-dark: #af8837;
  --text: #2c241d;
  --text-soft: #6f655d;
  --border: rgba(90, 70, 40, .08);
  --shadow: 0 20px 50px rgba(0, 0, 0, .08);
  --transition: .4s cubic-bezier(.22, .61, .36, 1);
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --radius-full: 9999px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 7px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  will-change: transform;
}


.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 3px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:active {
  transform: scale(0.96);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1240px, 92%);
  margin: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

.top-bar {
  background: #7a8058;
  color: #f5eee4;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.top-bar-inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .03em;
}

.top-left span:first-child {
  color: #f0d18b;
}

.top-right {
  display: none;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}

.top-right a {
  transition: var(--transition);
}

.top-right a:hover {
  opacity: .7;
}

.divider {
  opacity: .25;
}

nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248, 243, 237, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

nav.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

.logo {
  height: 100px;
  margin-left: 40px;
  margin-right: 40px;
  display: none;
}

.nav-inner {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
  line-height: 1;
}

.nav-logo span {
  color: var(--gold-dark);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  z-index: 998;
}

.nav-menu.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--cream) !important;
  gap: 4px;
}

.nav-group {
  display: contents;
}

.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4f453d;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-btn {
  height: 44px;
  padding: 0 26px;
  border-radius: var(--radius-md);
  background: var(--olive-dark);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 8px;
  box-shadow: 0 10px 25px rgba(201, 162, 79, .22);
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--gold-dark);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(.94) brightness(.88) contrast(.98);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-shadow-leaf {
  position: absolute;
  top: -120px;
  left: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, .08), transparent 70%);
  filter: blur(90px);
  opacity: .45;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 40px 0 80px 0;
}

.hero-content {
  max-width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.hero-eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--olive-dark);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 10vw, 84px);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  color: white;
}

.hero-text {
  font-size: 15px;
  line-height: 1.9;
  color: white;
  margin-bottom: 32px;
  max-width: 100%;
}

.hero-btn {
  display: inline-flex;
  height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  background: var(--olive);
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(111, 117, 80, .18);
  transition: var(--transition);
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: var(--olive-dark);
}

.features {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, #f7efe5, #ede1d1);
  border: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--olive);
}

.feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px;
}

.feature p {
  font-size: 12px;
  color: #7d7268;
  line-height: 1.4;
}

.about {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 6000px;
  border-radius: 6px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8a7c62;
}

.section-eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #b9a98c;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 100%;
  margin-bottom: 22px;
  color: #2f241c;
}

.about-text {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.9;
  color: #7c7169;
  margin-bottom: 34px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 30px;
  border-radius: 4px;
  background: #7f8556;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: .3s ease;
}

.about-btn:hover {
  background: #697047;
  transform: translateY(-2px);
}

.menu {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-subtitle {
  font-size: 15px;
  color: #7d7268;
  margin-top: 14px;
  line-height: 1.6;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.menu-item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
}

.menu-image-wrap {
  padding: 22px;
  height: clamp(280px, 34vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}



.menu-image {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
  transition: transform .35s ease;
}

.padding-4 {
  padding: 4px;
}

/* imagens horizontais (espátula) — mostrar inteira sem recorte */
.menu-image--spatula {
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.menu-item:hover .menu-image {
  transform: scale(1.02);
}

.menu-content {
  padding: 22px 20px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.menu-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #7d7268;
}

.menu-btn-wrap {
  text-align: center;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 2px solid var(--olive);
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.menu-btn:hover {
  background: var(--olive);
  color: white;
  transform: translateY(-2px);
}

.history {
  padding: 70px 0;
  position: relative;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.history-text {
  font-size: 15px;
  line-height: 1.9;
  color: #6f655d;
  margin-bottom: 20px;
}

.history-text strong {
  color: var(--olive);
  font-weight: 600;
}

.history-numbers {
  display: flex;
  gap: 0;
  margin-top: 36px;
  flex-wrap: nowrap;
}

.history-number-item {
  text-align: center;
  flex: 1;
}

.history-number-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.history-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.history-label {
  font-size: 11px;
  color: #7d7268;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.history-media {
  position: relative;
  order: -1;
}

.history-main-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, .1);
}

.history-badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.history-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: var(--gold);
}

.history-badge span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--olive);
}

.contact {
  padding: 70px 0;
  background: white;
}

.contact-body{
  display: flex;
  flex-direction: column;
  gap:5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.8;
  color: #7d7268;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #f7efe5;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--olive);
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
  color: #4f453d;
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  color: #7d7268;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--olive);
}

.contact-form-wrap {
  background: linear-gradient(135deg, #faf6f0 0%, #f5ede3 100%);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 162, 79, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.contact-card {
  text-align: center;
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  background: var(--olive-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 12px 24px rgba(201, 162, 79, 0.25);
}

.contact-card-icon svg {
  width: 34px;
  height: 34px;
  stroke: white;
  stroke-width: 1.8;
}

.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #7d7268;
  margin-bottom: 28px;
}

.footer {
  background: #1e2a1e;
  color: #e0d9cf;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.footer-tagline {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 20px;
  opacity: .8;
}

.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: .7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  gap: 14px;
}

.footer-bottom p {
  font-size: 12px;
  opacity: .6;
}

.footer-payments {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-payments span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  opacity: .6;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--gold);
  transition: var(--transition);
}

@media(min-width: 600px) {
  .top-bar-inner {
    justify-content: space-between;
  }

  .top-right {
    display: flex;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    max-width: 480px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    padding: 36px;
  }
}


@media(min-width: 768px) {
  .top-bar-inner {
    height: 48px;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-logo {
    display: none;
  }

  .logo {
    display: block;
    height: 130px;
    margin: 0 40px;
  }

  .nav-menu {
    display: flex !important;

    position: static;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: center;
  }

  .nav-group {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .nav-inner {
    height: 80px;
    justify-content: center;
    gap: 52px;
  }

  .nav-link {
    padding: 0;
    width: auto;
    text-align: left;
  }

  .nav-link::after {
    bottom: -8px;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  .nav-btn {
    height: 46px;
    margin-top: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    padding: 60px 0 100px 0;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .feature {
    border-bottom: none !important;
    border-right: none !important;
    padding: 10px 22px;
  }

  .feature:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .12), transparent);
  }

  .feature h4 {
    font-size: 24px;
  }

  .about-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
  }

  .history-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .history-media {
    order: 0;
  }

  .history-numbers {
    gap: 40px;
    flex-wrap: wrap;
  }

  .history-number-item {
    flex: none;
  }

  .history-number-item:not(:last-child) {
    border-right: none;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media(min-width: 1024px) {
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 10vw, 84px);
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 22px;
    color: black;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    backdrop-filter: blur(0);
    background-color: transparent;
    padding: 0;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .top-bar-inner {
    height: 48px;
  }

  .hero-bg {
    object-position: center center;
  }

  .top-right {
    gap: 18px;
  }

  .nav-inner {
    height: 150px;
    gap: 58px;
  }

  .nav-group {
    gap: 42px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    max-width: 540px;
  }

  .hero-text {
    max-width: 430px;
  }

  .about {
    padding: 120px 0;
  }

  .about-grid {
    gap: 90px;
    grid-template-columns: 1.7fr 1.1fr 0.5fr;
    /* left image larger, text middle, right image smaller */
  }

  /* make right-side image slightly smaller to free space for text and left image */
  .about-grid .about-image-wrap:last-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-grid .about-image-wrap:last-of-type .about-image {
    max-width: 88%;
    height: auto;
  }

  .feature h4 {
    font-size: 28px;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature:not(:last-child)::after {
    height: 74px;
  }

  .menu {
    padding: 100px 0;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .history {
    padding: 100px 0;
  }

  .history-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
  }

  .history-pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(175, 136, 55, .14);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    transition: var(--transition);
  }

  .history-pillar:hover {
    background: rgba(255, 255, 255, .85);
    border-color: rgba(175, 136, 55, .28);
    transform: translateX(4px);
  }

  .history-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, #f7efe5, #ede1d1);
    border: 1px solid rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .history-pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--olive);
  }

  .history-pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .history-pillar-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
  }

  .history-grid {
    gap: 80px;
  }

  .history-number {
    font-size: 42px;
  }

  .history-badge {
    bottom: -20px;
    right: -20px;
  }

  .history-badge svg {
    width: 28px;
    height: 28px;
  }

  .history-badge span {
    font-size: 18px;
  }

  .contact {
    padding: 100px 0;
  }

  .contact-grid {
    gap: 70px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
  }
}

@media(max-width: 767px) {
  .menu-image-wrap {
    height: clamp(240px, 62vw, 320px);
    padding: 16px;
  }

  .menu-image {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding: 20px 0 90px 0;
  }

  .hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    margin-top: -10px;
    margin-bottom: 20vh;
  }

  .hero-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    margin-bottom: 20px;
  }

  .hero-content {
    padding-top: 10px;
  }

  /* History section - mobile: keep desktop look but stacked as a list */
  .history-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }

  .history-pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(175, 136, 55, 0.12);
    border-radius: 8px;
    transition: var(--transition);
  }

  .history-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, #f7efe5, #ede1d1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .history-pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--olive);
  }

  .history-pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .history-pillar-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.4;
  }

  /* Ensure image appears after content on mobile, matching desktop order (content -> image -> pillars) */
  .history-media {
    order: 0;
  }
}


/* =========================================
   COMO TRABALHAMOS
========================================= */

.how-it-works {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.how-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 79, .08), transparent 70%);
  pointer-events: none;
}

.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px auto;
}

.how-title {
  margin-bottom: 10px;
}

.how-subtitle {
  font-size: 15px;
  font-style: italic;
  color: #8a7c62;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

/* Layout principal */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* Lado visual (decorativo) */
.how-visual {
  display: none;
}

.how-visual-inner {
  position: relative;
  background: linear-gradient(135deg, #7f8556 0%, #58603f 100%);
  border-radius: 4px;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
}

.how-visual-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.how-visual-icon {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
}

.how-visual-icon svg {
  width: 80px;
  height: 80px;
}

.how-visual-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 28px;
}

.how-visual-lines span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .15);
  animation: shimmer 2.4s ease-in-out infinite;
}

.how-visual-lines span:nth-child(1) {
  width: 80%;
  animation-delay: 0s;
}

.how-visual-lines span:nth-child(2) {
  width: 60%;
  animation-delay: .2s;
}

.how-visual-lines span:nth-child(3) {
  width: 90%;
  animation-delay: .4s;
}

.how-visual-lines span:nth-child(4) {
  width: 50%;
  animation-delay: .6s;
}

.how-visual-lines span:nth-child(5) {
  width: 70%;
  animation-delay: .8s;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: .15;
  }

  50% {
    opacity: .5;
  }
}

.how-visual-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9999px;
  padding: 10px 20px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  backdrop-filter: blur(6px);
}

/* Steps */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(175, 136, 55, .3) 15%, rgba(175, 136, 55, .3) 85%, transparent);
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.how-step:not(:last-child) {
  border-bottom: 1px solid rgba(175, 136, 55, .1);
}

.how-step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7efe5, #ede1d1);
  border: 1px solid rgba(175, 136, 55, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.how-step:hover .how-step-number {
  background: linear-gradient(180deg, #af8837, #c9a24f);
  border-color: transparent;
}

.how-step-number span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  transition: var(--transition);
}

.how-step:hover .how-step-number span {
  color: white;
}

.how-step-body {
  padding-top: 4px;
  flex: 1;
}

.how-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
  transition: var(--transition);
}

.how-step:hover .how-step-title {
  color: var(--olive-dark);
}

.how-step-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #7d7268;
}

/* Responsive */
@media (min-width: 600px) {
  .how-steps::before {
    left: 23px;
  }
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 100px 0;
  }

  .how-visual {
    display: block;
  }

  .how-grid {
    grid-template-columns: 1.3fr 1.3fr;
    gap: 60px;
    align-items: center;
  }

  .how-visual-inner {
    min-height: 500px;
  }

  .how-step-title {
    font-size: 24px;
  }
}


@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: 1.3fr 1.3fr;
    gap: 80px;
  }

  .how-step {
    padding: 22px 0;
  }

  .how-step-number {
    width: 48px;
    height: 48px;
  }

  .how-steps::before {
    left: 24px;
  }
}