/* Base estrutural da página inicial. */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: #FDFCF9; color: #4A3728; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.placeholder-img { background-color: #E5E7EB; display: flex; align-items: center; justify-content: center; color: #9CA3AF; font-style: italic; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.hero-wrapper { position: relative; background: #E8DECD; overflow: hidden; min-height: 60vh; display: flex; align-items: center; padding-top: 80px; }
.hero-wrapper.no-min { min-height: 0; display: block; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; z-index: 1; }
.hero-bg-img.loaded { opacity: 0.3; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 100px 48px; text-align: center; }
.hero-content h1 { font-size: 56px; margin-bottom: 16px; line-height: 1.2; }
.hero-content p { font-size: 18px; max-width: 600px; margin: 0 auto 32px; line-height: 1.6; font-style: italic; }
.hero-blob { position: absolute; border-radius: 50%; opacity: 0.08; z-index: 1; }
.hero-blob-1 { width: 350px; height: 350px; background: #B5835A; top: -100px; right: -60px; }
.hero-blob-2 { width: 220px; height: 220px; background: #8B4513; bottom: -60px; left: -60px; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; height: 70px; z-index: 3; }

.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.section-title { font-size: 30px; text-align: center; margin-bottom: 48px; color: #8B4513; }
.section-title.light { color: #FDFBF7; }

.overlap-card { position: relative; margin-bottom: 56px; }
.overlap-card:last-child { margin-bottom: 0; }
.overlap-bg { position: absolute; top: -16px; width: 96%; height: calc(100% + 32px); border-radius: 20px; z-index: 1; transition: transform 0.3s ease; }
.overlap-bg.left { left: -12px; }
.overlap-bg.right { right: -12px; }
.overlap-card:hover .overlap-bg { transform: translate(4px, 4px); }
.overlap-content { position: relative; z-index: 2; background: #fff; border-radius: 18px; padding: 40px 48px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.overlap-content { text-align: center; }
.overlap-content h2 { font-size: 26px; margin-bottom: 12px; }
.overlap-content p { font-size: 15px; line-height: 1.8; color: #555; }
.overlap-img { width: calc(100% + 24px); height: 280px; background: #E5E7EB; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-style: italic; color: #999; font-size: 13px; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.overlap-card:hover .overlap-img { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.overlap-img.ro { margin-right: -24px; }
.overlap-img.lo { margin-left: -24px; }
.overlap-img .bg-color { position: absolute; inset: 0; }

.owner-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.owner-card.inverted { direction: rtl; }
.owner-card.inverted > * { direction: ltr; }
.owner-card .owner-img { height: 320px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-style: italic; color: #999; font-size: 13px; position: relative; overflow: hidden; }

.dark-section { background: #4A3728; color: #FDFBF7; }

.dropdown-group { position: relative; }
.dropdown-trigger { cursor: pointer; background: none; border: none; font-family: inherit; font-size: 14px; font-weight: 500; white-space: nowrap; padding: 6px 16px; border-radius: 20px; transition: background 0.2s, box-shadow 0.2s; }
.dropdown-trigger:hover { background: rgba(0,0,0,0.04); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.dropdown-arrow { transition: transform 0.2s; }
.dropdown-group:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 6px; min-width: 180px; opacity: 0; visibility: hidden;
    transition: all 0.2s ease; margin-top: 8px;
}
.dropdown-group:hover .dropdown-menu {
    opacity: 1; visibility: visible; margin-top: 4px;
}
.dropdown-menu a {
    display: block; padding: 8px 16px; border-radius: 8px;
    font-size: 14px; transition: background 0.15s; white-space: nowrap;
    text-align: center;
}
.dropdown-menu a:hover { background: #F5F1EA; }

.menu-toggle-btn { transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 50%; padding: 8px; }
.menu-toggle-btn.open { transform: rotate(90deg); }
.menu-toggle-btn.pulse { animation: hamburger-pulse 1.5s ease-in-out infinite; }
@keyframes hamburger-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
    50% { box-shadow: 0 0 0 10px rgba(0,0,0,0.06); }
}
nav { z-index: 1000; }
.dropdown-menu { z-index: 100; }

@media (max-width: 768px) {
    .hero-content { padding: 60px 24px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .hero-blob-1 { width: 180px; height: 180px; top: -50px; right: -30px; }
    .hero-blob-2 { width: 120px; height: 120px; bottom: -40px; left: -40px; }
    .hero-wave { height: 40px; }
    .section-inner { padding: 48px 24px; }
    .section-title { font-size: 24px; margin-bottom: 32px; }
    .overlap-content { grid-template-columns: 1fr !important; padding: 24px; gap: 24px; }
    .overlap-img { width: 100%; height: 220px !important; }
    .overlap-img.ro { margin-right: 0; }
    .overlap-img.lo { margin-left: 0 !important; }
    .dark-section { padding: 48px 24px; }
    .owner-card { grid-template-columns: 1fr; gap: 24px; }
    .owner-card.inverted { direction: ltr; }
    .owner-card .owner-img { height: 240px; }
    .dropdown-trigger { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 10px 0; }
    .dropdown-menu { position: static; transform: none; box-shadow: none; padding: 0; margin-top: 0; background: transparent; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease; visibility: visible; }
    .dropdown-menu.open { max-height: 200px; opacity: 1; }
    #nav-links > a { display: block; padding: 10px 0; }
}

.hero-wrapper { min-height: 80vh; background: #E8DECD; }
.hero-content h1 { font-size: 48px; color: #8B4513; }
.hero-content p { color: #5a5a5a; }
.hero-blob-1 { background: #D4752B; }
.hero-blob-2 { background: #1A4A5A; }
.no-grid { display: block; }
.unit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.unit-card { background: #fff; border-radius: 18px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.unit-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.unit-card-img { height: 200px; display: flex; align-items: center; justify-content: center; font-style: italic; color: rgba(255,255,255,0.4); font-size: 13px; }
.unit-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.unit-card-body h3 { font-size: 22px; margin-bottom: 8px; }
.unit-card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }
.unit-card-body p:last-of-type { margin-bottom: 16px; }
.unit-card-img img { width: 100%; height: 100%; object-fit: cover; }
.unit-time { display: block; padding-top: 14px; margin-top: auto; border-top: 1px solid #E8DECD; color: #4A3728; font-size: 12px; line-height: 1.6; font-weight: 600; }
.buffet-card { margin-top: 24px; display: grid; grid-template-columns: minmax(240px, 0.8fr) 1.2fr; background: #2D5A4B; color: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(45,90,75,0.14); }
.buffet-card-media { min-height: 300px; background: linear-gradient(145deg, #2D5A4B, #7BA892); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.72); font-style: italic; }
.buffet-card-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.buffet-card-body h3 { font-size: 28px; color: #fff; margin-bottom: 14px; }
.buffet-card-body p { color: rgba(255,255,255,0.86); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dif-card { text-align: center; padding: 32px 20px; background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.dif-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.dif-icon { width: 40px; height: 40px; margin: 0 auto 16px; color: #8B4513; }
.dif-card h3 { font-size: 18px; color: #8B4513; margin-bottom: 10px; }
.dif-card p { font-size: 14px; color: #666; line-height: 1.7; }
.chamada-section { background: #4A3728; color: #FDFBF7; text-align: center; padding: 80px 48px; }
.chamada-section h2 { font-size: 30px; margin-bottom: 16px; }
.chamada-section p { font-size: 16px; color: rgba(253,251,247,0.8); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.proof-strip { position: relative; z-index: 4; background: #4A3728; color: #fff; }
.proof-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.14); }
.proof-item:last-child { border-right: 0; }
.proof-number { display: block; color: #E8C9A8; font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 700; margin-bottom: 4px; }
.proof-label { color: rgba(255,255,255,0.76); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.eyebrow { display: inline-block; color: #B5835A; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.story-copy { text-align: left; }
.story-copy p { margin-bottom: 16px; }
.story-copy p:last-child { margin-bottom: 0; }
.collage { width: calc(100% + 24px); min-height: 360px; margin-right: -24px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.collage-item { min-height: 170px; position: relative; overflow: hidden; background: #E8DECD; display: flex; align-items: center; justify-content: center; color: #8B6B50; font-size: 12px; font-style: italic; }
.collage-item:first-child { border-radius: 14px 0 0 0; }
.collage-item:nth-child(2) { border-radius: 0 14px 0 0; }
.collage-item:nth-child(3) { border-radius: 0 0 0 14px; }
.collage-item:last-child { border-radius: 0 0 14px 0; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; }
.reviews-section { background: #F5F1EA; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.review-source { display: inline-block; color: #8B4513; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.review-card p { color: #666; font-size: 14px; line-height: 1.7; }
.review-pending { border: 1px dashed #D4C5B4; background: rgba(255,255,255,0.6); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #E8DECD; border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 54px 20px 22px; color: #4A3728; font-weight: 600; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: #B5835A; font-size: 24px; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 22px 20px; color: #666; font-size: 14px; line-height: 1.7; }
.footer-brand { max-width: 720px; margin: 0 auto 28px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; max-width: 900px; margin: 0 auto 24px; }
.footer-links a { color: #6B5A4C; font-size: 13px; }
.footer-links a:hover { color: #8B4513; }
.social-icon { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s; color: #8B4513; }
.social-icon:hover { background: #F5F1EA; transform: translateY(-2px); }
@media (max-width: 768px) {
    .unit-grid { grid-template-columns: 1fr; }
    .buffet-card { grid-template-columns: 1fr; }
    .buffet-card-media { min-height: 210px; }
    .buffet-card-body { padding: 30px 24px; }
    .dif-grid { grid-template-columns: 1fr; gap: 20px; }
    .dif-card { padding: 24px 16px; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 18px; }
    .proof-item:last-child { border-bottom: 0; }
    .collage { width: 100%; margin-right: 0; min-height: 300px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .chamada-section { padding: 48px 24px; }
    .chamada-section h2 { font-size: 24px; }
}

:root {
  --gallo-cacao: #3b281e;
  --gallo-ink: #342b25;
  --gallo-text: #5c5047;
  --gallo-muted: #74675e;
  --gallo-orange: #b95820;
  --gallo-orange-dark: #944317;
  --gallo-gold: #e6a83b;
  --gallo-mangrove: #174f48;
  --gallo-sea: #397a80;
  --gallo-deck: #b64a20;
  --gallo-praia: #167d86;
  --gallo-esquina: #843936;
  --gallo-essence: #8da39e;
  --gallo-sand: #f3ebdd;
  --gallo-paper: #fffdf8;
  --gallo-soft: #faf5ec;
  --gallo-line: rgba(76, 49, 34, .17);
  --gallo-shadow-sm: 0 8px 24px rgba(61,39,27,.1);
  --gallo-shadow-md: 0 18px 42px rgba(61,39,27,.18);
  --gallo-shadow-lg: 0 26px 58px rgba(61,39,27,.25);
  --gallo-radius-sm: 8px;
  --gallo-radius-md: 14px;
  --gallo-radius-lg: 20px;
  --gallo-motion-fast: 180ms;
  --gallo-motion-base: 260ms;
  --gallo-motion-reveal: 460ms;
  --gallo-ease: cubic-bezier(.2,.75,.25,1);
}

html { scroll-behavior: smooth; }

body.gallo-home-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(185, 88, 32, .045), transparent 24rem),
    var(--gallo-paper);
  color: var(--gallo-ink);
}

body.gallo-home-page h1,
body.gallo-home-page h2,
body.gallo-home-page h3 {
  color: var(--gallo-cacao);
  letter-spacing: -.025em;
}

/* Hero editorial: fotografia preservada, contraste e borda desenhada. */
.hero-wrapper {
  min-height: min(900px, 92svh) !important;
  padding-top: 74px;
  align-items: center;
  isolation: isolate;
  background: var(--gallo-cacao) !important;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(28, 17, 11, .78) 0%, rgba(28, 17, 11, .47) 43%, rgba(28, 17, 11, .08) 78%),
    linear-gradient(0deg, rgba(26, 16, 10, .38), transparent 52%, rgba(20, 12, 8, .28));
  pointer-events: none;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(72px, 9vw, 128px);
  background: url("../svg/decorative/hero-waves.svg") bottom center / 100% 100% no-repeat;
  pointer-events: none;
}

.hero-bg-img {
  opacity: 0 !important;
  z-index: 1;
  filter: saturate(.94) contrast(1.04);
}

.hero-bg-img.loaded { opacity: 1 !important; }
.hero-blob, .hero-wave { display: none !important; }

.hero-content {
  z-index: 3;
  width: min(1200px, calc(100% - 96px));
  padding: clamp(110px, 14vh, 180px) 0 clamp(130px, 16vh, 190px);
  margin: 0 auto;
  text-align: left;
}

.hero-content .eyebrow {
  color: var(--gallo-gold);
  letter-spacing: .2em;
}

.hero-content h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: #fffdf8 !important;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: .98;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .35);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 253, 248, .91);
  font-size: clamp(16px, 1.35vw, 19px);
  font-style: normal;
  line-height: 1.72;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .46);
}

.hero-content .flex { justify-content: flex-start; }
.hero-content a:first-child { background: var(--gallo-orange) !important; }
.hero-content a:last-child {
  border-color: rgba(255,255,255,.8) !important;
  color: #fff !important;
  background: rgba(24,16,11,.12);
  backdrop-filter: blur(5px);
}

nav.fixed {
  background: linear-gradient(to bottom, rgba(28,17,11,.62), transparent) !important;
}

nav.fixed img { filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
nav.fixed #nav-links > a,
nav.fixed .dropdown-trigger,
nav.fixed .menu-toggle-btn { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.45); }

.proof-strip {
  margin-top: -24px;
  background: var(--gallo-paper);
  border: 0;
  border-bottom: 1px solid rgba(76,49,34,.1);
}

.proof-grid {
  max-width: 1050px;
  padding: 0;
}

.proof-item {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 34px 20px;
  border: 0;
  text-align: left;
}

.proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 38px;
  background: rgba(185,88,32,.24);
  transform: translateY(-50%);
}

.proof-icon {
  display: block;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  color: #08808a;
  object-fit: contain;
}

.proof-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.proof-number {
  color: var(--gallo-cacao);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.proof-label {
  color: #66574c;
  font-size: 10px;
  letter-spacing: .075em;
}

/* Títulos com o pequeno rabisco editorial reutilizável. */
.section-title {
  margin-bottom: 58px;
  color: var(--gallo-cacao);
  font-size: clamp(34px, 4vw, 54px);
}

.section-title::after {
  content: "";
  display: block;
  width: 148px;
  height: 20px;
  margin: 14px auto 0;
  background: url("../svg/decorative/title-scribble.svg") center / contain no-repeat;
}

/* História: fundo line art, fotografia preservada e linhas de vento. */
.proof-strip + .section-inner {
  position: relative;
  isolation: isolate;
  max-width: none;
  padding: 64px max(48px, calc((100vw - 1240px) / 2)) 146px;
  overflow: hidden;
  background: var(--gallo-paper);
}

.proof-strip + .section-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3%;
  bottom: 12px;
  width: min(850px, 72vw);
  height: 300px;
  background: url("../svg/decorative/porto-river.svg") left bottom / contain no-repeat;
  opacity: .18;
}

.proof-strip + .section-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  top: 24%;
  width: min(440px, 38vw);
  aspect-ratio: 440 / 260;
  background: url("../svg/decorative/wind-lines.svg") center / contain no-repeat;
  opacity: .22;
}

.proof-strip + .section-inner .overlap-card {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-strip + .section-inner .section-title { margin-top: 0; }

.proof-strip + .section-inner .overlap-bg { display: none; }
.proof-strip + .section-inner .overlap-content {
  gap: clamp(44px, 7vw, 88px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.story-copy {
  padding: 30px 0;
  max-width: 62ch;
}

.story-copy p {
  color: #5c5047;
  line-height: 1.85;
}

.story-photo {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px 34px 10px 46px;
  transform: rotate(1deg);
  filter: drop-shadow(0 24px 35px rgba(51,34,23,.12));
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

/* Nossa Essência: superfície mangue e ilustração botânica com guaiamum. */
.proof-strip + .section-inner + .section-inner {
  position: relative;
  isolation: isolate;
  max-width: none;
  padding: 120px max(48px, calc((100vw - 1240px) / 2)) 140px;
  overflow: hidden;
  background: #8da39e;
  color: #fff;
}

.proof-strip + .section-inner + .section-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -50px;
  bottom: 18px;
  width: min(760px, 58vw);
  aspect-ratio: 1401.5385 / 537.77582;
  background: url("../svg/decorative/guaianum-crab.svg") left bottom / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: .62;
}

.proof-strip + .section-inner + .section-inner::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: url("../svg/decorative/section-wave.svg") bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.proof-strip + .section-inner + .section-inner .section-title { color: #fffdf8; }
.dif-grid { position: relative; z-index: 1; }
.dif-card {
  min-height: 270px;
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.11);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
body.gallo-home-page .dif-card h3 { color: #fff; }
.dif-card p { color: rgba(255,255,255,.76); }
.dif-icon { color: var(--gallo-gold); }

/* Cards-unidade: foto, gradiente e conteúdo real sobreposto. */
#unidades {
  position: relative;
  padding: 126px max(48px, calc((100vw - 1240px) / 2)) 120px !important;
  overflow: hidden;
  background: var(--gallo-sand) !important;
}

#unidades > div { max-width: 1240px !important; }
#unidades .unit-grid {
  gap: 20px;
  align-items: stretch;
}

#unidades .unit-card {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: flex-end;
  min-height: 760px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #703544;
  box-shadow: 0 18px 46px rgba(61,39,27,.17);
}

#unidades .unit-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, transparent 13%, rgba(17,13,10,.16) 33%, rgba(18,13,10,.93) 100%);
  pointer-events: none;
}

#unidades .unit-card-img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

#unidades .unit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

#unidades .unit-card:hover { transform: translateY(-6px); }
#unidades .unit-card:hover .unit-card-img img { transform: scale(1.035); }

#unidades .unit-card-body {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 280px 28px 30px;
  background: transparent;
}

#unidades .unit-card-body h3,
#unidades .unit-card-body p,
#unidades .unit-card-body .unit-time,
#unidades .unit-card-body a { color: #fff !important; }

#unidades .unit-card-body h3 { font-size: 27px; line-height: 1.05; }
#unidades .unit-card-body p { font-size: 13px; line-height: 1.58; color: rgba(255,255,255,.82) !important; }
#unidades .unit-time { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.78) !important; }
#unidades .unit-card-body a { border-color: rgba(255,255,255,.72) !important; }

.buffet-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center start;
  min-height: 580px;
  margin-top: 0;
  padding: clamp(42px, 4vw, 58px) clamp(48px, 5.5vw, 76px);
  overflow: hidden;
  border-radius: 20px;
  background: #37231a;
  box-shadow: 0 24px 58px rgba(61,39,27,.24);
}

.buffet-section-title {
  margin-top: clamp(82px, 8vw, 120px);
  margin-bottom: clamp(34px, 4vw, 54px);
}

.buffet-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,17,11,.25), rgba(28,17,11,.06) 50%, rgba(28,17,11,.25)),
    linear-gradient(0deg, rgba(28,17,11,.36), transparent 48%, rgba(28,17,11,.18));
  pointer-events: none;
}

.buffet-card-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  min-height: 0;
  background: none;
}

.buffet-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
}

.buffet-card-body {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  padding: clamp(30px, 3.2vw, 40px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(26, 72, 62, .4);
  box-shadow:
    0 32px 72px rgba(20,12,8,.46),
    0 8px 20px rgba(20,12,8,.24),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(5px) saturate(1.04);
  -webkit-backdrop-filter: blur(5px) saturate(1.04);
}

body.gallo-home-page .buffet-card-body h3 {
  color: #fff;
  font-size: clamp(29px, 2.6vw, 36px);
  line-height: 1.08;
}

.buffet-card-body p {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(18,11,8,.3);
}
.buffet-card-body small { color: rgba(255,255,255,.7) !important; }
.buffet-card-body a {
  color: #274f45 !important;
  background: var(--gallo-gold) !important;
  box-shadow: 0 10px 24px rgba(14,35,29,.24);
}

.buffet-card-body a:hover { background: #fff4df !important; }

@media (max-width: 767px) {
  .buffet-card {
    place-items: end center;
    min-height: 740px;
    margin-top: 0;
    padding: 150px 14px 18px;
    border-radius: 14px;
  }

  .buffet-section-title {
    margin-top: 68px;
    margin-bottom: 28px;
  }

  .buffet-card-media::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -24px;
    background: url("../Images/home/gallo-buffet.jpg") center / cover no-repeat;
    filter: blur(18px) brightness(.66) saturate(.9);
    transform: scale(1.06);
  }

  .buffet-card-media img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    object-position: center;
  }

  .buffet-card-body {
    width: 100%;
    padding: 24px 20px;
    border-radius: 13px;
    background: rgba(26, 72, 62, .44);
    backdrop-filter: blur(4px) saturate(1.03);
    -webkit-backdrop-filter: blur(4px) saturate(1.03);
  }

  body.gallo-home-page .buffet-card-body h3 {
    font-size: clamp(25px, 7.2vw, 31px);
  }

  .buffet-card-body p {
    font-size: 13.5px;
    line-height: 1.52;
  }
}

/* Depoimentos. */
.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--gallo-paper);
}

.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.faq-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -70px;
  top: 280px;
  bottom: auto;
  width: min(480px, 38vw);
  aspect-ratio: 560 / 390;
  background: url("../svg/decorative/seafood-platter.svg") right bottom / contain no-repeat;
  opacity: .22;
  transform: rotate(-3deg);
  pointer-events: none;
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.faq-list.is-collapsible:not(.is-expanded) .faq-item:nth-of-type(n+5) {
  display: none;
}

.faq-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  margin: 28px auto 0;
  padding: 13px 24px;
  border: 1px solid #B5835A;
  border-radius: 999px;
  background: transparent;
  color: #8B4513;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.faq-toggle.is-ready {
  display: flex;
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}

.faq-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-toggle:hover {
  color: #fff;
  background: #8B4513;
  transform: translateY(-2px);
}

.faq-toggle:focus-visible {
  outline: 3px solid rgba(115, 147, 179, .48);
  outline-offset: 4px;
}

.review-card {
  border: 1px solid var(--gallo-line);
  border-radius: 8px;
  background: rgba(255,253,248,.88);
  backdrop-filter: blur(3px);
}

.chamada-section { background: var(--gallo-cacao); }
.chamada-section:last-of-type { background: var(--gallo-orange) !important; }
.chamada-section h2 { color: #fff; }

@media (max-width: 900px) {
  .hero-content { width: calc(100% - 48px); text-align: center; }
  .hero-content h1, .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-content .flex { justify-content: center; }
  .hero-wrapper::before {
    background: linear-gradient(0deg, rgba(28,17,11,.72), rgba(28,17,11,.26) 74%);
  }
  .proof-strip + .section-inner::after { opacity: .1; }
  .proof-strip + .section-inner + .section-inner::before { width: 78vw; opacity: .3; }
  #unidades .unit-card-body { padding-top: 240px; }
}

@media (max-width: 767px) {
  .hero-wrapper { min-height: 86svh !important; }
  .hero-wrapper::after { height: 72px; background-size: auto 100%; }
  .hero-content { width: calc(100% - 36px); padding: 118px 0 112px; }
  .hero-content h1 { font-size: clamp(36px, 9vw, 48px); }
  .hero-content p { font-size: 15px; }
  .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 0; }
  .proof-item {
    flex-direction: column;
    gap: 6px;
    padding: 10px 5px 12px;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
  }
  .proof-icon { width: 28px; height: 28px; }
  .proof-copy { gap: 4px; align-items: center; }
  .proof-number { font-size: 18px; }
  .proof-label { font-size: 7.5px; line-height: 1.35; }
  .section-title { font-size: 36px; }
  .proof-strip + .section-inner { padding: 48px 20px 108px; }
  .proof-strip + .section-inner + .section-inner { padding: 78px 20px 108px; }
  .proof-strip + .section-inner::before { left: -40%; width: 145%; opacity: .12; }
  .proof-strip + .section-inner::after { display: none; }
  .proof-strip + .section-inner .overlap-content { grid-template-columns: 1fr; }
  .story-copy { order: 2; padding-top: 4px; }
  .story-photo { order: 1; min-height: 370px; transform: none; }
  .story-photo img { min-height: 370px; }
  .proof-strip + .section-inner + .section-inner::before { left: -34%; bottom: 28px; width: 132%; opacity: .28; }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-card { min-height: 0; background: rgba(255,255,255,.13); }
  #unidades { padding: 92px 18px 84px !important; }
  #unidades .unit-grid { grid-template-columns: 1fr; }
  #unidades .unit-card { min-height: 720px; }
  #unidades .unit-card-body { padding: 250px 24px 26px; }
  .buffet-card { grid-template-columns: 1fr; }
  .faq-section::after { top: 540px; right: -34%; width: 86vw; opacity: .12; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #unidades .unit-card,
  #unidades .unit-card-img img { transition: none; }
}

/* Cards ondulados das unidades. */
.adaptive-shape-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.adaptive-shape-sample {
  --adaptive-card-color: #167d86;
  --adaptive-card-accent: #edbd69;
  position: relative;
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  overflow: visible;
  box-sizing: border-box;
  background: transparent;
  filter:
    drop-shadow(0 8px 9px rgba(55, 34, 23, .32))
    drop-shadow(0 25px 22px rgba(55, 34, 23, .44));
  isolation: isolate;
  transition: transform 220ms ease, filter 220ms ease;
}

.adaptive-shape-sample:hover {
  transform: translateY(-5px);
  filter:
    drop-shadow(0 11px 11px rgba(55, 34, 23, .36))
    drop-shadow(0 31px 26px rgba(55, 34, 23, .5));
}

.adaptive-shape-sample--deck {
  --adaptive-card-color: var(--gallo-deck);
  --adaptive-card-accent: #f2be69;
}

.adaptive-shape-sample--praia {
  --adaptive-card-color: #167d86;
  --adaptive-card-accent: #edbd69;
}

.adaptive-shape-sample--esquina {
  --adaptive-card-color: var(--gallo-esquina);
  --adaptive-card-accent: #e4b56a;
}

.adaptive-shape-defs {
  position: absolute;
  overflow: hidden;
}

.adaptive-shape-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
  background: var(--adaptive-card-color);
  -webkit-clip-path: url(#adaptive-card-clip);
  clip-path: url(#adaptive-card-clip);
}

.adaptive-shape-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -52px;
  padding: 24px clamp(28px, 2.7vw, 42px) 30px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    var(--adaptive-card-color) 32px,
    var(--adaptive-card-color) 100%
  );
  text-align: center;
}

.adaptive-shape-eyebrow {
  margin: 0 0 10px;
  color: var(--adaptive-card-accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.gallo-home-page .adaptive-shape-copy h2 {
  margin: 0 0 4px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.02;
}

.adaptive-shape-copy > p:not(.adaptive-shape-eyebrow) {
  margin: 0 0 12px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(0.94rem, 1.15vw, 1.05rem);
  line-height: 1.58;
}

.adaptive-shape-copy .adaptive-shape-hours {
  margin-top: 6px;
  color: #fff4df;
  font-size: 0.8rem;
  font-weight: 700;
}

.adaptive-shape-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  padding: 13px 22px;
  border: 1px solid var(--adaptive-card-accent);
  border-radius: 999px;
  color: #fff4df;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.adaptive-shape-button:hover {
  color: #126a72;
  background: #fff4df;
}

.adaptive-shape-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.adaptive-shape-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(
    to bottom,
    transparent 0,
    color-mix(in srgb, var(--adaptive-card-color) 18%, transparent) 34%,
    color-mix(in srgb, var(--adaptive-card-color) 64%, transparent) 72%,
    var(--adaptive-card-color) 100%
  );
  content: "";
  pointer-events: none;
}

.adaptive-shape-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .adaptive-shape-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .adaptive-shape-copy {
    margin-top: -22px;
    padding: 0 34px 32px;
  }
  body.gallo-home-page .adaptive-shape-copy h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .adaptive-shape-media {
    aspect-ratio: 3 / 2;
  }
}

/* Aproxima o texto introdutório do rabisco dos títulos destas seções. */
#unidades .section-title,
.reviews-section .section-title {
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  #unidades .section-title,
  .reviews-section .section-title {
    margin-bottom: 22px;
  }

  body.gallo-home-page .adaptive-shape-copy h2 {
    margin-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .adaptive-shape-sample { transition: none; }
  .adaptive-shape-sample:hover { transform: none; }
}

/* ========================================================================== */
/* Estabilização visual — sistema, navegação e componentes                     */
/* ========================================================================== */

body.gallo-home-page {
  font-size: 16px;
  background: var(--gallo-paper);
}

body.gallo-home-page a,
body.gallo-home-page button,
body.gallo-home-page summary {
  touch-action: manipulation;
}

body.gallo-home-page a:focus-visible,
body.gallo-home-page button:focus-visible,
body.gallo-home-page summary:focus-visible {
  outline: 3px solid rgba(185, 88, 32, .42);
  outline-offset: 4px;
}

/* Cabeçalho: transparente apenas sobre o hero e sólido durante a rolagem. */
.site-nav {
  background: linear-gradient(to bottom, rgba(28,17,11,.66), transparent) !important;
  border-bottom: 0;
  transition:
    background-color var(--gallo-motion-base) ease,
    border-color var(--gallo-motion-base) ease,
    box-shadow var(--gallo-motion-base) ease,
    backdrop-filter var(--gallo-motion-base) ease;
}

.site-nav .nav-shell {
  width: min(1240px, 100%);
  min-height: 76px;
  padding: 10px 48px;
}

.site-nav .nav-brand {
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
}

.site-nav .nav-brand img {
  display: block;
  width: 38px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.32));
  transition: filter var(--gallo-motion-base) ease;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.42);
}

.nav-wordmark strong {
  font-size: 13px;
  letter-spacing: .16em;
}

.nav-wordmark small {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .22em;
}

.site-nav #nav-links > a,
.site-nav .dropdown-trigger,
.site-nav .menu-toggle-btn {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.site-nav #nav-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 4px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav .dropdown-trigger {
  min-height: 44px;
  padding: 8px 12px;
}

.site-nav .menu-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.site-nav.is-scrolled,
.site-nav.menu-open {
  background: rgba(255,253,248,.94) !important;
  border-bottom: 1px solid rgba(59,40,30,.1);
  box-shadow: 0 8px 28px rgba(45,29,20,.1);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
}

.site-nav.is-scrolled .nav-brand,
.site-nav.menu-open .nav-brand,
.site-nav.is-scrolled #nav-links > a,
.site-nav.is-scrolled .dropdown-trigger,
.site-nav.is-scrolled .menu-toggle-btn,
.site-nav.menu-open #nav-links > a,
.site-nav.menu-open .dropdown-trigger,
.site-nav.menu-open .menu-toggle-btn {
  color: var(--gallo-cacao);
  text-shadow: none;
}

.site-nav.is-scrolled .nav-brand img,
.site-nav.menu-open .nav-brand img {
  filter: none;
}

.site-nav.is-scrolled .nav-wordmark,
.site-nav.menu-open .nav-wordmark {
  text-shadow: none;
}

.site-nav .dropdown-menu {
  border: 1px solid rgba(59,40,30,.1);
  border-radius: var(--gallo-radius-md);
  background: rgba(255,253,248,.98);
  box-shadow: var(--gallo-shadow-sm);
}

.site-nav .dropdown-menu a {
  min-height: 40px;
  color: var(--gallo-cacao);
}

/* Prova social superior. */
.proof-label {
  color: var(--gallo-text);
  font-size: 11px;
  line-height: 1.35;
}

.proof-item {
  min-height: 90px;
}

/* Ritmo tipográfico e superfícies principais. */
.section-title {
  color: var(--gallo-cacao);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

.story-copy p {
  color: var(--gallo-text);
  font-size: 16px;
}

.story-photo,
.story-photo img {
  aspect-ratio: 4 / 5;
}

/* Nossa Essência: sálvia como campo e cards escuros de leitura. */
.proof-strip + .section-inner + .section-inner {
  background: var(--gallo-essence);
}

.proof-strip + .section-inner + .section-inner .section-title {
  color: #fffdf8;
}

.proof-strip + .section-inner + .section-inner::before {
  opacity: .36;
}

.dif-card {
  border-color: rgba(255,255,255,.24);
  background: rgba(40,61,56,.7);
  box-shadow: var(--gallo-shadow-sm);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.gallo-home-page .dif-card h3 {
  color: #fffdf8;
  font-size: 19px;
  line-height: 1.25;
}

.dif-card p {
  color: rgba(255,253,248,.88);
  font-size: 15px;
  line-height: 1.65;
}

.dif-icon {
  color: var(--gallo-gold);
}

/* Experiências: uma sombra editorial única e ritmo interno alinhado. */
.adaptive-shape-grid {
  gap: 20px;
}

.adaptive-shape-sample {
  filter:
    drop-shadow(0 8px 8px rgba(55,34,23,.24))
    drop-shadow(0 20px 18px rgba(55,34,23,.3));
}

.adaptive-shape-sample:hover {
  transform: translateY(-4px);
  filter:
    drop-shadow(0 10px 10px rgba(55,34,23,.27))
    drop-shadow(0 25px 22px rgba(55,34,23,.34));
}

.adaptive-shape-sample--deck {
  --adaptive-card-color: var(--gallo-deck);
}

.adaptive-shape-sample--praia {
  --adaptive-card-color: var(--gallo-praia);
}

.adaptive-shape-sample--esquina {
  --adaptive-card-color: var(--gallo-esquina);
}

.adaptive-shape-copy {
  justify-content: flex-start;
}

body.gallo-home-page .adaptive-shape-copy h2 {
  display: flex;
  min-height: 3.05em;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.1vw, 2.15rem);
}

.adaptive-shape-copy > p:not(.adaptive-shape-eyebrow) {
  font-size: 15px;
}

.adaptive-shape-button {
  min-height: 44px;
  margin-top: auto;
  padding: 12px 22px;
  transition:
    color var(--gallo-motion-fast) ease,
    background-color var(--gallo-motion-fast) ease,
    transform var(--gallo-motion-fast) ease;
}

.adaptive-shape-button:active {
  transform: scale(.98);
}

.buffet-section-title {
  margin-top: clamp(76px, 7vw, 104px);
  margin-bottom: clamp(30px, 3.6vw, 46px);
}

/* Buffet: mantém a sobreposição, reduz ruído e altura. */
.buffet-card {
  min-height: 540px;
  padding: 42px 56px;
  border-radius: var(--gallo-radius-lg);
  box-shadow: var(--gallo-shadow-lg);
}

.buffet-card-body {
  width: min(500px, 78%);
  padding: 34px;
  border-radius: var(--gallo-radius-md);
  background: rgba(29,68,59,.58);
  box-shadow: var(--gallo-shadow-lg), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(3px) saturate(1.03);
  -webkit-backdrop-filter: blur(3px) saturate(1.03);
}

.buffet-card-body p {
  color: rgba(255,253,248,.9);
  font-size: 15px;
}

.buffet-card-body a {
  min-height: 44px;
  color: #173d35 !important;
}

/* CTA intermediária. */
.chamada-section {
  position: relative;
  padding: clamp(72px, 7vw, 104px) 48px;
  background: var(--gallo-orange) !important;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
}

.chamada-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../Images/textures/canvas-soft.jpg") center / 620px auto repeat;
  opacity: .72;
  mix-blend-mode: screen;
  filter: grayscale(1) invert(1) brightness(3.2);
  pointer-events: none;
}

.chamada-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(56px, 7vw, 104px);
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: center;
}

.chamada-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 13px;
  background: var(--gallo-paper);
  box-shadow:
    0 2px 0 rgba(255,255,255,.5) inset,
    0 14px 30px rgba(62,31,16,.3),
    0 30px 60px rgba(62,31,16,.2);
  transform: rotate(-2.4deg);
}

.chamada-photo::before,
.chamada-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 76px;
  height: 22px;
  background: rgba(241,220,180,.76);
  box-shadow: 0 2px 5px rgba(62,31,16,.14);
}

.chamada-photo::before {
  top: -8px;
  left: 22px;
  transform: rotate(-4deg);
}

.chamada-photo::after {
  right: 18px;
  bottom: -8px;
  transform: rotate(4deg);
}

.chamada-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(.86) contrast(1.04);
}

.chamada-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.chamada-copy::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-bottom: 20px;
  background: rgba(255,253,248,.7);
}

body.gallo-home-page .chamada-copy h2 {
  margin: 0 0 18px;
  color: var(--gallo-paper);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.08;
  text-wrap: balance;
}

.chamada-section p {
  max-width: 580px;
  margin: 0 0 28px;
  color: rgba(255,253,248,.88);
  font-size: 16px;
  line-height: 1.7;
}

.chamada-section a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  background: var(--gallo-paper) !important;
  color: var(--gallo-orange-dark) !important;
}

@media (max-width: 900px) {
  .chamada-section {
    padding-inline: 32px;
  }

  .chamada-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(700px, 100%);
  }

  .chamada-photo {
    width: min(82%, 540px);
    justify-self: center;
  }

  .chamada-copy {
    width: min(88%, 590px);
    justify-self: center;
  }
}

/* Avaliações. */
.reviews-section {
  background: var(--gallo-paper);
}

.reviews-section .section-inner {
  padding-top: 96px;
  padding-bottom: 96px;
}

.reviews-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(980px, 100%);
  margin-inline: auto;
}

.review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 38px 40px 34px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  font-family: Inter, Arial, sans-serif;
}

.review-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.review-avatar {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
}

.review-avatar--s { background: #9a4d35; }
.review-avatar--k { background: #597866; }
.review-avatar--l { background: #78939a; }

.review-author {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  overflow: hidden;
  color: #002b1b;
  font-size: 16px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-author small {
  color: #003b27;
  font-size: 13px;
  line-height: 1.4;
}

.review-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.review-rating > span {
  width: 16px;
  height: 16px;
  border: 2px solid #00aa6c;
  border-radius: 50%;
  background: #00aa6c;
}

.review-rating > span.is-empty {
  background: transparent;
}

.review-visit-meta {
  margin: 0 0 18px !important;
  color: #002b1b !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.4 !important;
}

body.gallo-home-page .review-card h3 {
  margin: 0 0 10px;
  color: #001f14;
  font-family: Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.review-text p {
  margin: 0;
  color: #17251f;
  font-size: 16px;
  line-height: 1.55;
}

.review-text p[hidden] {
  display: none;
}

.review-text strong {
  color: #001f14;
  font-weight: 750;
}

.review-translate {
  align-self: flex-start;
  min-height: 44px;
  margin: 20px 0 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #003b27;
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.review-translate:hover {
  color: #007a55;
}

.review-written-date {
  display: block;
  margin-top: 26px;
  color: #31453d;
  font-size: 12px;
  line-height: 1.4;
}

/* FAQ com superfície própria e ilustração estável. */
.faq-section {
  max-width: none;
  padding: 88px max(48px, calc((100vw - 1100px) / 2)) 96px;
  background: var(--gallo-soft);
}

.faq-list {
  width: min(900px, 100%);
}

.faq-item {
  border-color: rgba(76,49,34,.16);
  border-radius: var(--gallo-radius-md);
  background: rgba(255,253,248,.94);
}

.faq-item summary {
  min-height: 60px;
  color: var(--gallo-cacao);
}

.faq-answer {
  color: var(--gallo-text);
  font-size: 15px;
}

.faq-list.is-expanded .faq-item:nth-of-type(n+5) {
  animation: faq-reveal var(--gallo-motion-base) var(--gallo-ease) both;
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Rodapé com fechamento mais presente. */
body.gallo-home-page footer {
  position: relative;
  border-top: 1px solid rgba(76,49,34,.14);
  background: var(--gallo-sand) !important;
  color: var(--gallo-text) !important;
}

.footer-brand::before {
  content: "";
  display: block;
  width: 40px;
  height: 52px;
  margin: 0 auto 16px;
  background: url("../Images/Deck/logogallo.svg") center / contain no-repeat;
}

body.gallo-home-page footer .footer-brand p,
body.gallo-home-page footer > p {
  color: var(--gallo-text) !important;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 6px 4px;
  color: var(--gallo-text);
}

.footer-links a:hover {
  color: var(--gallo-orange-dark);
}

/* Tablet: navegação compacta, duas colunas e leitura confortável. */
@media (max-width: 1023px) {
  .site-nav .nav-shell {
    padding-inline: 24px;
  }

  .site-nav .menu-toggle-btn {
    display: inline-flex !important;
  }

  .site-nav #nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none !important;
    width: 100%;
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid rgba(59,40,30,.1);
    background: rgba(255,253,248,.98);
    box-shadow: var(--gallo-shadow-sm);
  }

  .site-nav #nav-links.is-open {
    display: flex !important;
  }

  .site-nav #nav-links > a,
  .site-nav .dropdown-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 10px 8px;
    color: var(--gallo-cacao);
    text-shadow: none;
  }

  .site-nav .dropdown-menu {
    position: static;
    display: grid;
    max-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    opacity: 0;
    visibility: visible;
    transform: none;
    box-shadow: none;
    transition: max-height var(--gallo-motion-base) ease, opacity var(--gallo-motion-base) ease;
  }

  .site-nav .dropdown-menu.open {
    max-height: 280px;
    padding: 4px 0 8px 12px;
    opacity: 1;
  }

  .site-nav .dropdown-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    text-align: left;
  }

  .site-nav .dropdown-group:hover .dropdown-menu:not(.open) {
    max-height: 0;
    margin: 0;
    opacity: 0;
  }

  .site-nav .dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
  }

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

  .adaptive-shape-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .adaptive-shape-sample:nth-child(3) {
    grid-column: 1 / -1;
    width: calc((100% - 20px) / 2);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .site-nav #nav-links {
    display: flex !important;
  }

  .site-nav .menu-toggle-btn {
    display: none !important;
  }
}

/* Mobile: uma coluna, menos altura e tipografia legível. */
@media (max-width: 767px) {
  .site-nav .nav-shell {
    min-height: 70px;
    padding: 8px 18px;
  }

  .site-nav #nav-links {
    top: 70px;
    padding-inline: 18px;
  }

  .site-nav .nav-brand img {
    width: 34px;
    height: 44px;
  }

  .nav-wordmark {
    display: none;
  }

  .hero-content p,
  .story-copy p {
    font-size: 16px;
  }

  .proof-item {
    min-height: 112px;
    padding: 12px 6px 14px;
  }

  .proof-label {
    font-size: 10.5px;
    letter-spacing: .045em;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 36px);
    margin-bottom: 44px;
  }

  .proof-strip + .section-inner {
    padding: 48px 20px 88px;
  }

  .story-photo,
  .story-photo img {
    min-height: 320px;
    aspect-ratio: 1 / 1.06;
  }

  .story-copy {
    padding-top: 0;
  }

  .proof-strip + .section-inner + .section-inner {
    padding: 72px 20px 92px;
  }

  .proof-strip + .section-inner + .section-inner::before {
    opacity: .3;
  }

  .dif-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dif-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .dif-card p {
    font-size: 16px;
  }

  #unidades {
    padding: 80px 18px 72px !important;
  }

  .adaptive-shape-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .adaptive-shape-sample:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .adaptive-shape-copy {
    padding: 0 30px 30px;
  }

  body.gallo-home-page .adaptive-shape-copy h2 {
    min-height: 0;
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .adaptive-shape-copy > p:not(.adaptive-shape-eyebrow) {
    font-size: 16px;
  }

  .adaptive-shape-button {
    margin-top: 8px;
  }

  .buffet-section-title {
    margin-top: 64px;
    margin-bottom: 26px;
  }

  .buffet-card {
    min-height: 660px;
    padding: 150px 12px 14px;
  }

  .buffet-card-media::before {
    filter: blur(10px) brightness(.72) saturate(.95);
  }

  .buffet-card-body {
    width: 100%;
    padding: 24px 20px;
    background: rgba(29,68,59,.62);
  }

  .buffet-card-body p {
    font-size: 15px;
    line-height: 1.58;
  }

  .chamada-section {
    padding: 56px 20px;
  }

  .chamada-layout {
    gap: 38px;
  }

  .chamada-photo,
  .chamada-copy {
    width: 100%;
  }

  .chamada-photo {
    padding: 10px;
    transform: rotate(-1.5deg);
  }

  .chamada-photo::before,
  .chamada-photo::after {
    width: 58px;
    height: 18px;
  }

  body.gallo-home-page .chamada-copy h2 {
    font-size: clamp(29px, 8.4vw, 36px);
  }

  .chamada-section p {
    font-size: 15px;
    line-height: 1.65;
  }

  .reviews-section .section-inner {
    padding: 72px 20px;
  }

  .review-card {
    padding: 22px;
  }

  .review-card p {
    font-size: 15px;
  }

  .faq-section {
    padding: 72px 20px 80px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .footer-links {
    gap: 2px 10px;
  }

  .footer-links a {
    min-height: 44px;
    padding: 10px 6px;
    font-size: 14px;
  }
}

/* Movimento mais curto e completamente removível. */
.reveal {
  transform: translateY(24px);
  transition-duration: var(--gallo-motion-reveal) !important;
  transition-timing-function: var(--gallo-ease) !important;
}

.reveal-d1 { transition-delay: 50ms; }
.reveal-d2 { transition-delay: 100ms; }
.reveal-d3 { transition-delay: 150ms; }
.reveal-d4 { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Refinamentos finais: reviews lado a lado e Buffet com painel claro. */
.buffet-card::after {
  background:
    linear-gradient(90deg, rgba(28,17,11,.11), transparent 54%, rgba(28,17,11,.08)),
    linear-gradient(0deg, rgba(28,17,11,.12), transparent 55%, rgba(28,17,11,.08));
}

.buffet-card-media img {
  object-position: center 58%;
  transform: scale(1.08) translateX(3.5%);
}

.buffet-card-body {
  border-color: rgba(255,255,255,.38);
  background: rgba(38,26,20,.52);
  box-shadow:
    0 24px 54px rgba(20,12,8,.32),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(2px) saturate(1.02);
  -webkit-backdrop-filter: blur(2px) saturate(1.02);
}

.buffet-card-body .eyebrow {
  color: #f0b45e !important;
}

body.gallo-home-page .buffet-card-body h3 {
  color: #fffdf8;
}

.buffet-card-body p {
  color: rgba(255,253,248,.92);
  text-shadow: none;
}

.buffet-card-body small {
  color: rgba(255,253,248,.72) !important;
}

.reviews-section .section-inner {
  max-width: 1280px;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: none;
  }

  .review-card {
    padding: 30px 26px;
  }

  .review-text p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .buffet-card {
    min-height: 620px;
    padding: 34px 12px 14px;
    place-items: center;
  }

  .buffet-card-media::before {
    display: none;
  }

  .buffet-card-media img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.2) translateY(-3%);
  }

  .buffet-card-body {
    padding: 22px 20px;
    border-color: rgba(255,255,255,.38);
    background: rgba(38,26,20,.52);
    box-shadow:
      0 20px 42px rgba(20,12,8,.3),
      inset 0 1px 0 rgba(255,255,255,.16);
    backdrop-filter: blur(2px) saturate(1.02);
    -webkit-backdrop-filter: blur(2px) saturate(1.02);
  }

  .buffet-card-body .eyebrow {
    color: #f0b45e !important;
  }

  body.gallo-home-page .buffet-card-body h3 {
    color: #fffdf8;
  }

  .buffet-card-body p {
    color: rgba(255,253,248,.92);
    font-size: 14px;
    line-height: 1.55;
  }

  .buffet-card-body small {
    color: rgba(255,253,248,.72) !important;
  }

  .adaptive-shape-copy {
    margin-top: -42px;
    padding: 20px 30px 26px;
    background: linear-gradient(
      to bottom,
      transparent 0,
      var(--adaptive-card-color) 28px,
      var(--adaptive-card-color) 100%
    );
  }
}
