:root {
  --ivory: oklch(0.97 0.005 85);
  --noir: oklch(0.12 0.008 60);
  --gold: oklch(0.72 0.11 78);
  --gold-soft: oklch(0.85 0.08 85);
  --cream: oklch(0.95 0.02 85);
  --muted: oklch(0.93 0.008 80);
  --muted-fg: oklch(0.45 0.01 70);
  --border: oklch(0.85 0.01 75);
  --foreground: oklch(0.2 0.01 60);
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border)
}

[hidden] {
  display: none !important
}

html {
  scroll-behavior: smooth
}

body {
  min-height: 100vh;
  background: var(--ivory);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.15
}

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

button,
input,
textarea {
  font: inherit
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

@media(min-width:1024px) {
  .container {
    padding: 0 48px
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--noir);
  color: var(--cream)
}

@media(min-width:1024px) {
  .hero {
    min-height: 100dvh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--noir), oklch(0.12 0.008 60 / .7), oklch(0.12 0.008 60 / .2))
}

.site-header {
  position: relative;
  z-index: 20
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px
}

.logo {
  height: 96px;
  width: auto
}

@media(min-width:1024px) {
  .logo {
    height: 112px
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 40px;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase
}

.nav-desktop a {
  position: relative;
  transition: color .2s
}

.nav-desktop a:hover {
  color: var(--gold)
}

.nav-desktop a:not(.btn-outline)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s
}

.nav-desktop a:not(.btn-outline):hover::after {
  width: 100%
}

@media(min-width:1024px) {
  .nav-desktop {
    display: flex
  }
}

.menu-toggle {
  color: var(--cream)
}

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

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: all .2s
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--noir) !important;
}

.nav-mobile {
  position: relative;
  z-index: 30;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: oklch(0.12 0.008 60 / .95);
  border-top: 1px solid oklch(0.72 0.11 78 / .3);
  padding: 24px
}

.nav-mobile a {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase
}

.nav-mobile a:hover {
  color: var(--gold)
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 96px;
  padding-bottom: 80px
}

@media(min-width:1024px) {
  .hero-content {
    padding-top: 112px
  }
}

.hero-content .hero-kicker {
  margin-top: 0;
  max-width: 576px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.1
}

@media(min-width:1024px) {
  .hero-content .hero-kicker {
    font-size: 60px
  }
}

.hero-content .hero-kicker em {
  font-style: italic;
  color: var(--gold)
}

.hero-content h1 {
  margin-top: 20px;
  max-width: 576px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.25
}

@media(min-width:1024px) {
  .hero-content h1 {
    font-size: 26px
  }
}

.hero-content p {
  margin-top: 32px;
  max-width: 448px;
  color: oklch(0.95 0.02 85 / .8);
  font-size: 18px;
  line-height: 1.625
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--noir);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: background .2s
}

.btn-gold:hover {
  background: var(--gold-soft)
}

/* SECTION */
.section {
  padding: 80px 0
}

@media(min-width:1024px) {
  .section {
    padding: 112px 0
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase
}

.section-label .line {
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.section-title {
  text-align: center;
  margin-bottom: 48px
}

.section-title h2 {
  font-size: 30px;
  letter-spacing: .05em;
  color: var(--foreground)
}

@media(min-width:1024px) {
  .section-title h2 {
    font-size: 36px
  }
}

.diamond-line {
  display: inline-block;
  position: relative;
  width: 96px;
  height: 1px;
  margin-top: 12px;
  background: var(--gold)
}

.diamond {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold)
}

.eyebrow {
  margin-top: 12px;
  color: var(--muted-fg);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase
}

/* ABOUT */
.about {
  background: var(--ivory);
  padding: 96px 0
}

@media(min-width:1024px) {
  .about {
    padding: 112px 0
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center
}

@media(min-width:1024px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

.about-image {
  position: relative
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1)
}

@media(min-width:1024px) {
  .about-image img {
    height: 520px
  }
}

.about h2 {
  margin-top: 24px;
  color: var(--foreground);
  font-size: 36px;
  line-height: 1.15
}

@media(min-width:1024px) {
  .about h2 {
    font-size: 48px
  }
}

.lead {
  margin-top: 32px;
  max-width: 520px;
  color: var(--muted-fg);
  line-height: 1.625
}

.features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  max-width: 576px
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0
}

.feature-icon svg {
  width: 100%;
  height: 100%
}

.feature p {
  padding-top: 4px;
  color: oklch(0.2 0.01 60 / .8);
  font-size: 14px;
  line-height: 1.375
}

/* GALLERY */
.gallery-section {
  background: var(--ivory);
  padding: 80px 0
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  width: calc((100% - 16px) / 2);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1)
}

@media(min-width:768px) {
  .gallery-item {
    width: calc((100% - 32px) / 3)
  }
}

@media(min-width:1024px) {
  .gallery-item {
    width: calc((100% - 64px) / 5)
  }
}

.gallery-item:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold), 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.gallery-item:hover img {
  transform: scale(1.1)
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(0.12 0.008 60 / 0);
  transition: background .3s
}

.gallery-item:hover::after {
  background: oklch(0.12 0.008 60 / .3)
}

.gallery-item.is-hidden {
  display: none
}

.center-cta {
  text-align: center;
  margin-top: 40px
}

.center-cta .btn-outline {
  padding: 12px 32px;
  cursor: pointer
}

/* EVENTS */
.events {
  background: var(--muted);
  padding: 80px 0
}

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

@media(min-width:768px) {
  .events-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(min-width:1024px) {
  .events-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }
}

.event {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border)
}

@media(min-width:768px) {
  .event {
    border-top: 0;
    border-right: 1px solid var(--border)
  }

  .event:last-child {
    border-right: 0
  }
}

.event-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  color: var(--gold)
}

.event-icon svg {
  width: 100%;
  height: 100%
}

.event h3 {
  margin-top: 16px;
  color: var(--foreground);
  font-size: 20px
}

.event p {
  margin-top: 8px;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.625
}

/* FOOTER */
.footer {
  background: var(--noir);
  color: var(--cream);
  padding: 80px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px
}

.footer-heading h2 {
  color: var(--cream);
  font-size: 24px;
  letter-spacing: .005em
}

.line-flex {
  flex: 1;
  height: 1px;
  background: var(--gold)
}

.footer-lead {
  margin-bottom: 32px;
  color: oklch(0.95 0.02 85 / .7);
  line-height: 1.625
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px
}

.contact-list li.contact-address {
  align-items: flex-start
}

.contact-list li.contact-address .icon-circle {
  margin-top: 2px
}

.contact-list address {
  font-style: normal
}

.footer-map {
  margin-top: 24px;
  width: 100%;
  border: 1px solid oklch(0.72 0.11 78 / .3);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 240px
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.15) contrast(1.05)
}

.icon-circle {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid oklch(0.72 0.11 78 / .5);
  border-radius: 50%;
  color: var(--gold)
}

.icon-circle svg {
  width: 16px;
  height: 16px
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid oklch(0.72 0.11 78 / .3);
  padding: 12px 16px;
  color: var(--cream);
  outline: none;
  transition: border-color .2s;
  color-scheme: dark
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: oklch(0.95 0.02 85 / .4)
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold)
}

.contact-form textarea {
  resize: none
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-form .form-field span {
  font-size: 13px;
  color: oklch(0.95 0.02 85 / .4)
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--noir);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  transition: background .2s
}

.contact-form button:hover {
  background: var(--gold-soft)
}

.contact-form .form-success {
  padding: 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  text-align: center
}

.contact-form .form-errors {
  color: #e8a0a0;
  font-size: 13px
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

@media(min-width:1024px) {
  .footer-right {
    align-items: flex-end
  }
}

.footer-logo {
  height: 128px;
  width: auto
}

.socials {
  display: flex;
  gap: 12px
}

.socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: all .2s
}

.socials a:hover {
  background: var(--gold);
  color: var(--noir)
}

.copyright {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid oklch(0.72 0.11 78 / .2);
  text-align: center;
  color: oklch(0.95 0.02 85 / .6);
  font-size: 12px;
  letter-spacing: .1em
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.12 0.008 60 / .92);
  padding: 24px
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--cream);
  font-size: 40px;
  line-height: 1
}

.lightbox-close:hover {
  color: var(--gold)
}

/* AVALIAÇÕES GOOGLE — CARROSSEL */
.avaliacoes-google {
  background:
    linear-gradient(oklch(0.97 0.005 85 / .88), oklch(0.95 0.02 85 / .9)),
    url("../images/gallery-1.jpg") center / cover no-repeat;
  padding: 96px 20px;
  text-align: center
}

.avaliacoes-google .section-title {
  margin-bottom: 48px
}

.carousel-container {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 48px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent)
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-reviews 45s linear infinite
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused
}

.review-card {
  background: rgba(255, 255, 255, .92);
  padding: 28px 24px;
  border: 1px solid var(--border);
  min-width: 280px;
  max-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px
}

.review-photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px
}

.review-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block
}

.review-photo-wrap::after {
  content: "★";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--noir);
  font-size: 9px;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff
}

.review-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--noir);
  letter-spacing: .02em
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1
}

.review-text {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: oklch(0.2 0.01 60 / .8);
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1
}

.btn-ver-mais {
  margin-top: 8px;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--noir);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: inline-block;
  transition: all .2s
}

.btn-ver-mais:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft)
}

@keyframes scroll-reviews {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media (max-width: 600px) {
  .avaliacoes-google {
    padding: 64px 12px
  }

  .review-card {
    min-width: 240px;
    max-width: 260px;
    padding: 22px 18px
  }

  .review-photo-wrap,
  .review-photo {
    width: 40px;
    height: 40px
  }

  .review-text {
    font-size: 13px;
    -webkit-line-clamp: 4
  }
}
