:root {
  --bg: #eadfc6;
  --bg-deep: #deceaa;
  --cream: #f4e7c8;
  --cream-light: #fff2d2;

  /* Identidade principal inspirada na logo real: vermelho + amarelo. */
  --green: #861f20;
  --green-2: #9f2825;
  --green-3: #ad3930;

  /* Laranja fica só como apoio, sem dominar grandes áreas. */
  --orange: #c76d32;
  --orange-dark: #8e4428;

  --yellow: #efc84a;
  --sand: #cbb184;

  --text: #34241f;
  --muted: #75675d;
  --border: rgba(134, 31, 32, 0.15);

  --radius: 28px;
  --shadow: 0 22px 60px rgba(67, 40, 28, 0.13);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234, 223, 202, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo-link {
  flex: 0 0 auto;
}

.brand-logo {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(80, 43, 25, .10);
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #4a3730;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.nav-instagram,
.nav-whatsapp {
  min-height: 43px;
}

.nav-instagram {
  padding: 0 14px;
  border: 1px solid rgba(114, 31, 29, .18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 242, 210, .76);
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.nav-instagram svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.nav-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.nav-instagram:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  border-color: var(--yellow);
}

.nav-whatsapp {
  min-height: 43px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--cream-light);
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-whatsapp:hover {
  background: var(--green-2);
  transform: translateY(-2px);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  background:
    radial-gradient(circle at 82% 15%, rgba(233, 185, 73, 0.36), transparent 26%),
    radial-gradient(circle at 9% 92%, rgba(217, 95, 54, 0.12), transparent 24%),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: 180px;
  border: 1px solid rgba(134, 31, 32, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow-light {
  color: #f3bd74;
}

.hero h1,
.section-heading h2,
.about h2,
.visit h2,
.closing h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.6vw, 6rem);
  line-height: 0.94;
}

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

.hero-description {
  max-width: 600px;
  color: #6f6258;
  font-size: 1.03rem;
}

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

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-dark {
  background: var(--green);
  color: var(--cream-light);
}

.button-dark:hover {
  background: var(--green-2);
}

.button-soft {
  border: 1px solid rgba(23, 63, 52, 0.15);
  background: rgba(245, 237, 221, 0.75);
}

.button-yellow {
  background: var(--yellow);
  color: var(--green);
}

.quick-info {
  margin-top: 38px;
  padding-top: 26px;
  display: flex;
  gap: 38px;
  border-top: 1px solid var(--border);
}

.quick-info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quick-info-item span {
  color: var(--muted);
  font-size: 0.7rem;
}

.quick-info-item strong {
  font-size: 0.83rem;
}

.hero-picture-wrap {
  position: relative;
}

.hero-picture {
  padding: 10px;
  border-radius: 36px;
  background: rgba(245, 237, 221, 0.72);
  border: 1px solid rgba(134, 31, 32, 0.12);
  box-shadow: var(--shadow);
}

.photo-placeholder {
  min-height: 525px;
  overflow: hidden;
  border-radius: 28px;
  background: #d8c39b;
}

.photo-placeholder img {
  width: 100%;
  height: 525px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-picture .photo-placeholder img {
  object-position: center 45%;
}

.floating-note {
  position: absolute;
  z-index: 5;
  box-shadow: var(--shadow);
}

.note-one {
  left: -35px;
  top: 50px;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-light);
}

.note-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--orange);
}

.note-one div {
  display: flex;
  flex-direction: column;
}

.floating-note strong {
  font-size: .82rem;
}

.floating-note small {
  color: var(--muted);
  font-size: .68rem;
}

.note-two {
  right: -26px;
  bottom: 38px;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  background: var(--yellow);
  color: var(--green);
}

/* WELCOME */

.welcome-strip {
  background: var(--green);
  color: var(--cream-light);
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.welcome-grid > div {
  min-height: 132px;
  padding: 27px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.13);
}

.welcome-grid > div:first-child {
  border-left: 1px solid rgba(255,255,255,.13);
}

.welcome-grid span {
  margin-bottom: 7px;
  color: #e7af63;
  font-size: .68rem;
  font-weight: 800;
}

.welcome-grid strong {
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
}

.welcome-grid small {
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-size: .73rem;
}

/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 60px;
  align-items: end;
}

.section-heading h2,
.about h2,
.visit h2,
.closing h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: .98;
}

.section-heading p {
  max-width: 470px;
  color: var(--muted);
  font-size: .95rem;
}

/* CATEGORIES */

.categories {
  background: var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.category-card {
  min-height: 320px;
  padding: 22px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  border: 1px solid rgba(23,63,52,.1);
  transition: transform .22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-number {
  font-size: .7rem;
  font-weight: 800;
  opacity: .65;
}

.category-card h3 {
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.category-card p {
  max-width: 260px;
  font-size: .79rem;
  opacity: .88;
}

.category-thumb {
  margin-top: auto;
  height: 110px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.14);
}

.category-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.category-card-dark {
  background: var(--green);
  color: var(--cream-light);
}

.category-card-orange {
  background: #b84b35;
  color: #fff3df;
}

.category-card-sand {
  background: #d7c09a;
  color: #49362b;
}

.category-card-green {
  background: #96302d;
  color: #fff1dd;
}

.category-card-light {
  background: #ded2bb;
  color: #4a3931;
}

.category-card-yellow {
  background: #e7bd43;
  color: #5f261e;
}


/* ABOUT */


.about {
  background: var(--green);
  color: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 78px;
}

.about h2 span {
  color: #f0c45a;
}

.about-copy > p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255,255,255,.68);
  font-size: .95rem;
}

.about-stats {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-stats div {
  display: flex;
  flex-direction: column;
}

.about-stats strong {
  font-family: "Fraunces", serif;
  color: #f1c657;
  font-size: 1.75rem;
}

.about-stats span {
  margin-top: 3px;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
}

.about-picture {
  position: relative;
}

.about-placeholder {
  min-height: 540px;
}

.about-placeholder img {
  height: 540px;
  object-position: center;
}

.about-label {
  position: absolute;
  right: -22px;
  bottom: 30px;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
  color: var(--green);
  box-shadow: var(--shadow);
}

.about-label span {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
}

.about-label strong {
  font-size: .82rem;
}

/* VISIT */

.visit {
  background: var(--bg-deep);
}

.visit-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  border-radius: 34px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.visit-copy {
  padding: 60px;
}

.visit-copy > p {
  max-width: 540px;
  margin-top: 20px;
  color: var(--muted);
}

.visit-info {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visit-info div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit-info span {
  color: var(--muted);
  font-size: .66rem;
}

.visit-info strong {
  font-size: .8rem;
}

.visit-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.visit-whatsapp {
  color: var(--orange-dark);
  font-size: .79rem;
  font-weight: 800;
}

.map-embed {
  min-height: 520px;
  background: var(--bg-deep);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

/* CLOSING */

.closing {
  padding: 90px 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(239, 200, 74, .18), transparent 28%),
    var(--green);
  color: var(--cream-light);
}

.closing-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.closing-content > span {
  width: 120px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.closing h2 {
  max-width: 700px;
  flex: 1;
}

.closing h2 em {
  color: var(--yellow);
  font-style: normal;
}

/* FOOTER */

.footer {
  padding: 34px 0;
  background: #541719;
  color: var(--cream-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: "Fraunces", serif;
  font-size: 1rem;
}

.footer-brand span,
.copyright {
  color: rgba(255,255,255,.45);
  font-size: .68rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: rgba(255,255,255,.63);
  font-size: .72rem;
}

/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #1d9d59;
  color: white;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .hero-picture-wrap {
    max-width: 720px;
  }

  .note-one {
    left: 16px;
  }

  .note-two,
  .about-label {
    right: 16px;
  }

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

  .welcome-grid > div {
    border-left: 0 !important;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .welcome-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 10px;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-instagram {
    width: 42px;
    min-width: 42px;
    padding: 0;
    justify-content: center;
  }

  .nav-instagram span {
    display: none;
  }

  .nav-whatsapp {
    min-height: 42px;
    padding: 0 13px;
    font-size: .74rem;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .quick-info {
    flex-direction: column;
    gap: 16px;
  }

  .photo-placeholder {
    min-height: 390px;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
  }

  .section {
    padding: 74px 0;
  }

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

  .category-card {
    min-height: 220px;
  }

  .about-stats,
  .visit-info {
    grid-template-columns: 1fr;
  }

  .about-label {
    position: static;
    margin-top: 12px;
  }

  .visit-copy {
    padding: 38px 26px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 330px;
  }

  .closing-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-content > span {
    width: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


@media (max-width: 650px) {
  .photo-placeholder,
  .photo-placeholder img {
    min-height: 360px;
    height: 360px;
  }

  .about-placeholder,
  .about-placeholder img {
    min-height: 390px;
    height: 390px;
  }
.map-embed,
  .map-embed iframe {
    min-height: 340px;
  }
}


@media (max-width: 650px) {
  .category-card {
    min-height: 280px;
  }

  .category-thumb {
    height: 120px;
  }
}

@media (max-width: 410px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .nav-whatsapp {
    padding-inline: 11px;
    font-size: .7rem;
  }

  .nav-instagram {
    width: 40px;
    min-width: 40px;
  }
}

.about-placeholder img {
  object-position: center 42%;
}
