:root {
  --bg: #faf8f3;
  --paper: #fff;
  --soft: #eaf0e6;
  --green: #245f45;
  --green-2: #3e7958;
  --mint: #c8dfcf;
  --text: #202d23;
  --muted: #566456;
  --orange: #b84f20;
  --line: rgba(36, 95, 69, 0.24);
  --shadow: 0 18px 48px rgba(47, 78, 57, 0.12);
  color-scheme: light;
}
html[data-theme="dark"] {
  --bg: #101712;
  --paper: #18211a;
  --soft: #202c23;
  --green: #8bc6a0;
  --green-2: #a8d6b8;
  --mint: #293d2e;
  --text: #edf3eb;
  --muted: #9aab9a;
  --orange: #e89b69;
  --line: rgba(205, 228, 212, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Nunito, sans-serif;
  font-weight: 300;
  transition: 0.35s;
}
.leaf-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  color: var(--green);
  z-index: 0;
}
.leaf-bg span {
  position: absolute;
  font-size: 4rem;
  opacity: 0.045;
  animation: float 9s ease-in-out infinite;
}
.leaf-bg span:nth-child(1) {
  top: 8%;
  left: 4%;
}
.leaf-bg span:nth-child(2) {
  top: 32%;
  right: 5%;
  animation-delay: 2s;
}
.leaf-bg span:nth-child(3) {
  bottom: 20%;
  left: 6%;
  animation-delay: 4s;
}
.leaf-bg span:nth-child(4) {
  bottom: 5%;
  right: 8%;
  animation-delay: 6s;
}
@keyframes float {
  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}
button,
input,
select,
textarea {
  font: inherit;
}
.shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 30px), 760px);
  margin: auto;
  padding: 44px 0 60px;
}
.theme-toggle {
  position: fixed;
  right: max(16px, calc((100vw - 850px) / 2));
  top: 16px;
  z-index: 15;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--green);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.profile {
  text-align: center;
}
.avatar-ring {
  width: 122px;
  height: 122px;
  margin: 0 auto 18px;
  position: relative;
}
.avatar-ring:before,
.avatar-ring:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.avatar-ring:before {
  inset: -7px;
  border: 2px dashed var(--green-2);
  animation: spin 24s linear infinite;
}
.avatar-ring:after {
  inset: -15px;
  border: 1px solid var(--line);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg);
  position: relative;
  z-index: 1;
}
.crn {
  position: absolute;
  right: -10px;
  bottom: 2px;
  background: var(--green);
  color: var(--bg);
  font-size: 0.57rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 20px;
  z-index: 2;
  border: 2px solid var(--bg);
}
.welcome,
.overline {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 7px;
}
h1,
h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  margin: 0;
  color: var(--green);
}
h1 {
  font-size: clamp(2.25rem, 8vw, 3.6rem);
  line-height: 1;
}
h1 em,
h2 em {
  font-weight: 300;
}
.tagline {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 10px 0 13px;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--bg);
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 0.67rem;
  font-weight: 700;
}
.availability i {
  width: 6px;
  height: 6px;
  background: #d9f4dc;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 244, 220, 0.15);
}
blockquote {
  font-family: Fraunces, serif;
  font-size: clamp(0.95rem, 3vw, 1.12rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  max-width: 560px;
  margin: 22px auto 16px;
}
.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}
.tags span {
  background: var(--mint);
  color: var(--green);
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 700;
}
.food-feature {
  position: relative;
  margin: 34px 0 18px;
  border-radius: 22px;
  overflow: hidden;
  height: 245px;
  box-shadow: var(--shadow);
}
.food-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.food-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 39, 25, 0.76),
    rgba(20, 39, 25, 0.03)
  );
}
.food-feature > div {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 60%;
}
.food-feature small {
  font-size: 0.59rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.food-feature strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  line-height: 1.1;
  margin-top: 7px;
  font-weight: 400;
}
.food-feature em {
  color: #cfe7d5;
  font-weight: 300;
}
.links {
  margin: 18px 0 36px;
}
.main-link {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  padding: 12px 15px;
  margin-bottom: 9px;
  color: var(--text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20, 50, 30, 0.035);
  transition: 0.25s;
}
.main-link:hover {
  transform: translateY(-2px);
  border-color: var(--green-2);
  box-shadow: var(--shadow);
}
.main-link.primary {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}
.link-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green);
  font-size: 1.05rem;
}
.primary .link-icon {
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}
.main-link > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.main-link b {
  font-size: 0.79rem;
}
.main-link small {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 2px;
}
.primary small {
  color: inherit;
  opacity: 0.7;
}
.main-link i {
  font-style: normal;
}
.section-title {
  text-align: center;
  margin: 38px 0 16px;
}
.section-title small {
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
}
.section-title h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-top: 3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  padding: 19px 14px;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: 0.25s;
}
.service:hover {
  border-color: var(--green-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service > span {
  font-size: 1.6rem;
}
.service b {
  display: block;
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 7px;
}
.service p {
  font-size: 0.64rem;
  color: var(--muted);
  line-height: 1.45;
  min-height: 36px;
  margin: 5px 0;
}
.service strong {
  font-size: 0.72rem;
  color: var(--orange);
}
.testimonials {
  display: flex;
  gap: 11px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 12px;
  scrollbar-width: none;
}
.testimonials article {
  min-width: min(82%, 300px);
  scroll-snap-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 18px;
}
.testimonials article > div {
  color: #e3aa35;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.testimonials article > p {
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}
.testimonials footer {
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
}
.testimonials footer b {
  color: var(--green);
}
.testimonials footer span {
  color: var(--muted);
}
.map {
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-theme="dark"] .map iframe {
  filter: grayscale(0.6) invert(0.9) hue-rotate(70deg);
}
.address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 3px;
}
.address p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: 0.68rem;
}
.address p span {
  color: var(--muted);
}
.address a {
  color: var(--green);
  font-size: 0.65rem;
  text-decoration: none;
  font-weight: 700;
}
.page-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.whatsapp {
  position: fixed;
  z-index: 12;
  right: max(16px, calc((100vw - 850px) / 2));
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: 0.2s;
}
.whatsapp:hover {
  transform: scale(1.07);
}
.whatsapp svg {
  width: 29px;
  fill: #fff;
}
dialog {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  width: min(calc(100% - 24px), 500px);
}
dialog::backdrop {
  background: rgba(15, 24, 17, 0.72);
  backdrop-filter: blur(5px);
}
.modal-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.close {
  position: absolute;
  right: 15px;
  top: 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
}
.modal-card h2 {
  font-size: 2rem;
}
.modal-copy {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--muted);
}
.modal-card label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 700;
}
.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.74rem;
}
.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  border-color: var(--green);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.send {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--bg);
  padding: 13px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
}
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.57rem;
  margin-bottom: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
    padding-top: 36px;
  }
  .theme-toggle {
    right: 14px;
  }
  .whatsapp {
    right: 14px;
  }
  .food-feature {
    height: 215px;
  }
  .food-feature > div {
    left: 18px;
    max-width: 75%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .address {
    align-items: flex-end;
    gap: 10px;
  }
  .address p {
    max-width: 70%;
  }
  .page-footer {
    gap: 12px;
    line-height: 1.5;
  }
}
@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .food-feature {
    height: 300px;
  }
  .service p {
    min-height: 55px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Light theme: darker secondary copy and orange details for readability. */
html:not([data-theme="dark"]) {
  --bg: #fbfaf6;
  --paper: #fff;
  --soft: #edf2ea;
  --green: #245f45;
  --green-2: #3d7757;
  --mint: #d4e8da;
  --text: #1d2b21;
  --muted: #526152;
  --orange: #a94718;
  --line: rgba(31, 91, 64, 0.24);
  --shadow: 0 18px 48px rgba(31, 70, 45, 0.12);
}
html:not([data-theme="dark"]) .main-link,
html:not([data-theme="dark"]) .service,
html:not([data-theme="dark"]) .testimonials article {
  box-shadow: 0 5px 16px rgba(31, 70, 45, 0.055);
}
html:not([data-theme="dark"]) .theme-toggle {
  background: rgba(255, 255, 255, 0.94);
}

/* Showcase-safe controls: keep actions above the Netlify preview badge. */
.whatsapp {
  bottom: 88px;
}
dialog {
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
}
.close {
  z-index: 5;
  touch-action: manipulation;
}
@media (max-width: 700px) {
  .whatsapp {
    bottom: 98px;
  }
}
.modal-copy {
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  border-radius: 10px;
  background: color-mix(in srgb, var(--green) 10%, var(--paper));
  color: var(--text);
  font-weight: 700;
}
.modal-copy strong {
  color: var(--green);
}

/* Proteção responsiva global */
html, body { max-width: 100%; overflow-x: hidden; }
main, section, header, footer, div, article { min-width: 0; }
img, video, iframe, svg { max-width: 100%; }
h1, h2, h3, p, a, button, label { overflow-wrap: anywhere; }
