:root {
  --bg: #f5f1e8;
  --text: #3a3833;
  --muted: #67625b;
  --olive: #5c6b4a;
  --olive-strong: #4b593a;
  --line: #ded8cc;
  --terracotta: #c99b7a;
  --card: #f8f5ee;
  --radius: 14px;
  --shadow-soft: 0 12px 30px rgba(32, 28, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.6), transparent 35%),
    radial-gradient(circle at 90% 5%, rgba(217, 203, 177, 0.35), transparent 32%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 180;
  background: rgba(58, 56, 51, 0.06);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #5c6b4a, #8f9d7a);
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 56, 51, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(35, 30, 24, 0.09);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1 1 auto;
}

.logo-image {
  display: block;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(92, 107, 74, 0.28);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.logo-mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid rgba(92, 107, 74, 0.3);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.logo-text-group {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 0.86;
  letter-spacing: 0.08em;
  word-break: break-word;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.menu-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  inset: 82px 0 auto;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.main-nav.open {
  max-height: 420px;
}

.main-nav ul {
  margin: 0;
  padding: 0.9rem 1.2rem 1.2rem;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.main-nav a,
.dropdown-toggle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  opacity: 0.9;
  word-break: break-word;
  white-space: normal;
}

.main-nav a:hover,
.dropdown-toggle:hover {
  color: var(--olive);
}

.main-nav a.is-active {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.main-nav a[href="#sobre"] {
  font-size: 0.8rem;
  white-space: nowrap;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.dropdown {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0.45rem 0 0.35rem 0.8rem;
  border-left: 1px solid var(--line);
  display: none;
  visibility: hidden;
  opacity: 0;
  gap: 0.45rem;
}

.has-dropdown.open .dropdown {
  display: grid;
  visibility: visible;
  opacity: 1;
}

.has-dropdown:not(.open) .dropdown {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.btn-whatsapp-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--olive);
  color: #fff;
}

.btn-primary:hover {
  background: var(--olive-strong);
}

.btn-outline {
  border: 1px solid var(--olive);
  color: var(--olive);
  background: transparent;
}

.btn-light {
  background: #fff;
  color: var(--text);
}

.site-header .btn-primary {
  display: none;
}

.hero {
  padding: 1rem 0 0;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-copy {
  order: 2;
  padding-bottom: 1rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 0.95;
}

.hero-copy p {
  margin: 1rem 0 0;
  max-width: 52ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.text-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

.hero-media {
  order: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.22s linear;
}

.categories {
  padding: 2.3rem 0;
}

.categories-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
}

.category-card {
  padding: 1.6rem 1rem;
  border-bottom: 1px solid var(--line);
}

.category-card:last-child {
  border-bottom: none;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #5b564d;
}

.soft-green {
  background: #dbe1d2;
}

.soft-beige {
  background: #ece6da;
}

.soft-sage {
  background: #cfd4c9;
}

.soft-terracotta {
  background: var(--terracotta);
  color: #fff;
}

.category-card h2 {
  font-size: 0.87rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.category-card ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.category-card li {
  margin-bottom: 0.25rem;
}

.category-card .soon {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-card a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
}

.about {
  padding: 1.2rem 0 2.6rem;
}

.about-grid {
  display: grid;
  gap: 1.2rem;
}

.about-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  position: relative;
  padding: 1rem 0;
}

.section-label {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.about-copy h2,
.testimonials h2,
.cta-banner h2 {
  margin: 0.4rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.about-copy p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

.about-copy .btn {
  margin-top: 1.25rem;
}

.botanic-shape {
  position: absolute;
  right: 0.2rem;
  bottom: 0;
  font-size: 5rem;
  color: rgba(92, 107, 74, 0.15);
  line-height: 1;
}

.highlights {
  padding: 0 0 2.2rem;
}

.services-heading {
  border-top: 1px solid var(--line);
  padding: 2.8rem 0 1.5rem;
}

.services-heading h2 {
  margin: 0.4rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.services-heading-text {
  margin: 0.8rem auto 0;
  max-width: 42ch;
  color: var(--muted);
  text-align: center;
}

.service-showcase {
  display: grid;
  gap: 1.4rem;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(58, 56, 51, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.service-media {
  margin: 0;
  min-height: 240px;
  height: 100%;
  overflow: hidden;
}

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

.service-details {
  padding: 1.1rem 1rem 1.2rem;
  background: rgba(250, 247, 242, 0.9);
  min-height: 100%;
}

.service-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}

.service-details p,
.service-details li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-details p {
  margin: 0.8rem 0 0.65rem;
}

.service-details ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.service-booking {
  margin-top: 1.1rem;
  width: fit-content;
}

@media (min-width: 760px) {
  .service-row {
    grid-template-columns: 1fr 1.1fr;
  }

  .service-row:nth-child(even) .service-media {
    order: 2;
  }

  .service-row:nth-child(even) .service-details {
    order: 1;
  }
}

.testimonials {
  padding: 0.8rem 0 2.8rem;
  background: var(--bg);
  position: relative;
  z-index: 8;
}

.center {
  text-align: center;
}

.heart {
  margin: 0.25rem 0 1rem;
  font-size: 1.4rem;
  color: #9f8c78;
}

.testimonial-actions {
  margin: 0 0 1rem;
}

.testimonial-form-wrap {
  margin: 0 auto 1.4rem;
  max-width: 760px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fcf9f3 0%, #f8f3ea 100%);
  border-radius: var(--radius);
  padding: 1.15rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 10px 26px rgba(48, 40, 30, 0.08);
}

.testimonial-form-wrap.is-open {
  max-height: 560px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-card.is-new {
  animation: testimonialEnter 0.55s ease;
}

@keyframes testimonialEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-form {
  display: grid;
  gap: 0.9rem;
}

.testimonial-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.85rem;
  color: #6b655d;
  font-weight: 500;
}

.rating-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  gap: 0.4rem;
}

.rating-fieldset legend {
  padding: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.2rem;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: #d2c7b5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #caa349;
  transform: translateY(-1px);
}

.star-rating input:checked ~ label {
  color: #b48b36;
}

.testimonial-form input,
.testimonial-form textarea,
.testimonial-form select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.76rem 0.82rem;
  font: inherit;
  color: var(--text);
  background: #fffdfa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.testimonial-form textarea {
  resize: vertical;
  min-height: 112px;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus,
.testimonial-form select:focus {
  outline: none;
  border-color: #97a485;
  box-shadow: 0 0 0 3px rgba(92, 107, 74, 0.16);
  background: #ffffff;
}

.testimonial-form-feedback {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  color: var(--olive);
  padding: 0.5rem 0.62rem;
  border-radius: 10px;
  background: rgba(92, 107, 74, 0.08);
}

.carousel-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.carousel-btn {
  border: 1px solid var(--line);
  background: #f9f6f0;
  color: var(--muted);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  min-height: 210px;
  box-shadow: 0 8px 20px rgba(45, 38, 29, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 38, 29, 0.09);
}

.quote {
  margin: 0;
  font-style: italic;
  color: #5f5a53;
}

.stars {
  margin: 0.75rem 0 0;
  color: #b48b36;
  letter-spacing: 0.1em;
}

.author {
  margin: 0.45rem 0 0;
  font-weight: 600;
}

.cta-banner {
  padding: 2rem 0;
  background: var(--bg);
  position: relative;
  z-index: 9;
}

.cta-content {
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  background: var(--olive);
  color: #fff;
  display: grid;
}

.cta-copy {
  padding: 2rem 1.3rem;
  display: grid;
  align-content: center;
  justify-items: start;
  order: 2;
}

.cta-copy .btn {
  margin-top: 1.3rem;
}

.cta-media {
  margin: 0;
  min-height: 220px;
  order: 1;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

@media (max-width: 759px) {
  .cta-media {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }
}

.cta-content p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}

.footer-grid h3 {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-grid p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.socials {
  margin-top: 0.55rem;
  display: flex;
  gap: 0.45rem;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.footer-bottom {
  margin-top: 1.3rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 479px) {
  .container {
    width: min(1180px, calc(100% - 1rem));
  }

  .nav-wrap {
    min-height: 72px;
    gap: 0.65rem;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-text-group {
    max-width: 12rem;
  }

  .logo-sub {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: 0.5rem;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .category-card,
  .about-copy,
  .footer-grid,
  .footer-bottom {
    min-width: 0;
  }

  .cta-content {
    padding: 1.2rem 1rem;
    align-items: flex-start;
  }

  .cta-content .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-header .btn-primary {
    display: inline-flex;
    padding: 0.58rem 0.85rem;
    font-size: 0.66rem;
    gap: 0.35rem;
  }

  .site-header .btn-whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .main-nav {
    position: static;
    max-height: none;
    border: none;
    background: transparent;
    overflow: visible;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
  }

  .dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    background: #fbf8f1;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.65rem;
    box-shadow: var(--shadow-soft);
  }

  .dropdown li {
    margin: 0;
  }

  .dropdown a {
    display: block;
    padding: 0.35rem 0.3rem;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    gap: 1.2rem;
    min-height: 520px;
  }

  .hero-copy {
    order: 1;
    display: grid;
    align-content: center;
    padding: 1rem 0;
  }

  .hero-media {
    order: 2;
    min-height: auto;
  }

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

  .category-card {
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding: 1.8rem 1.2rem;
  }

  .category-card:last-child {
    border-right: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
    gap: 1.4rem;
  }

  .cta-content {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .cta-copy {
    padding: 2.3rem;
    order: 1;
  }

  .cta-media {
    order: 2;
  }

  .highlights-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .testimonial-card {
    flex-basis: calc(100% / 3);
    min-height: 230px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .logo-image {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 980px) {
  .hero {
    padding-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img {
    transition: none;
    transform: none;
  }
}
