/* =========================================================
   TOKENS GERAIS / CORES, FONTES E ESPACAMENTOS
   Edite aqui para alterar a identidade visual do site inteiro.
   ========================================================= */
:root {
  --rose: #d8a7a7;
  --rose-dark: #c77f82;
  --sage: #8fa68f;
  --cream: #f2e7d9;
  --paper: #f7f2ee;
  --taupe: #b8a69a;
  --ink: #3c3a37;
  --muted: #7f7069;
  --white: #fffdfb;
  --shadow: 0 24px 70px rgba(85, 61, 51, 0.11);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 5% 20%, rgba(242, 231, 217, 0.85), transparent 24%),
    radial-gradient(circle at 88% 2%, rgba(216, 167, 167, 0.22), transparent 28%),
    linear-gradient(180deg, var(--white), #fbf8f5 44%, var(--white));
}

body.menu-open {
  overflow: hidden;
}

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

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

[id] {
  scroll-margin-top: 118px;
}

.leaf-decor {
  position: absolute;
  z-index: 0;
  width: clamp(86px, 10vw, 150px);
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.2;
}

/* =========================================================
   COMPONENTES REUTILIZAVEIS / BOTOES, TITULOS E CONTAINERS
   ========================================================= */
.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow,
.section-title p {
  margin: 0;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary,
.header-cta {
  color: white;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  box-shadow: 0 18px 30px rgba(199, 127, 130, 0.26);
}

.button-soft {
  gap: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button-green {
  color: white;
  background: linear-gradient(135deg, #71886e, var(--sage));
}

.button-light {
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.72);
}

.button-icon-mask {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: #c77f82;
}

.whatsapp-mask {
  -webkit-mask: url("../assets/img/icons/icon_Whatsapp.png") center / contain no-repeat;
  mask: url("../assets/img/icons/icon_Whatsapp.png") center / contain no-repeat;
}

.button-inline-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.play-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sage);
  border: 1px solid rgba(60, 58, 55, 0.2);
  border-radius: 50%;
  font-size: 0.75rem;
}

.section-title {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 8px;
  width: var(--container);
  margin: 0 auto 26px;
  text-align: center;
}

.section-title::after {
  content: "";
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.section-title span {
  color: var(--rose-dark);
  font-size: 0.86rem;
}

/* =========================================================
   HEADER / LOGO E MENU
   ========================================================= */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(420px, 1fr) minmax(178px, 220px);
  align-items: center;
  column-gap: clamp(26px, 4vw, 64px);
  width: 100%;
  margin: 0 auto;
  padding: 24px max(20px, calc((100% - 1180px) / 2)) 14px;
  backdrop-filter: blur(18px);
  background-color: #f7f2ee71;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: clamp(240px, 22vw, 300px);
  height: auto;
  object-fit: contain;
}

.brand-footer .brand-logo {
  width: clamp(240px, 24vw, 340px);
}

.brand-mark {
  position: relative;
  width: 72px;
  height: 72px;
  border: 3px solid var(--rose);
  border-radius: 50%;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 13px 18px 18px 19px;
  border-left: 3px solid var(--rose);
  border-bottom: 3px solid var(--rose);
  border-radius: 48% 0 48% 55%;
}

.heart-mark {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 20px;
  height: 20px;
  background: var(--rose-dark);
  rotate: -45deg;
  border-radius: 4px;
}

.heart-mark::before,
.heart-mark::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: inherit;
  border-radius: 50%;
}

.heart-mark::before {
  top: -10px;
  left: 0;
}

.heart-mark::after {
  top: 0;
  left: 10px;
}

.leaf {
  position: absolute;
  bottom: 5px;
  width: 22px;
  height: 10px;
  background: var(--sage);
  border-radius: 100% 0;
}

.leaf-one {
  left: -8px;
  rotate: 28deg;
}

.leaf-two {
  right: -7px;
  rotate: -30deg;
}

.brand-text strong {
  display: block;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.28rem);
  font-weight: 500;
  line-height: 1;
}

.brand-text strong span {
  color: var(--sage);
}

.brand-text small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 42px);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 14px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--sage);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
  min-width: 178px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
}

.header-cta img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

/* =========================================================
   HERO / PRIMEIRA DOBRA
   ========================================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  min-height: 650px;
  padding: 34px 0 52px;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -190px;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.64), transparent 62%),
    repeating-radial-gradient(circle at center, rgba(184, 166, 154, 0.13) 0 1px, transparent 1px 7px);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.leaf-hero {
  bottom: 28px;
  left: -58px;
  width: clamp(110px, 12vw, 170px);
  opacity: 0.18;
  rotate: -18deg;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 540px;
}

.hero h1,
.about h2,
.contact-band h2 {
  margin: 14px 0 18px;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.9rem, 7vw, 6.4rem);
}

.hero h1 span,
.about h2 span {
  display: block;
  color: var(--rose-dark);
}

.hero h1 + p {
  color: var(--muted);
}

.hero-copy > p:last-of-type {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-left: clamp(8px, 2vw, 36px);
  min-height: 540px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -72px -38px -34px 28px;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.36), transparent 22%),
    rgba(216, 167, 167, 0.17);
  border-radius: 46% 54% 48% 52% / 42% 36% 64% 58%;
}

.hero-visual img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 58% 34%;
  border-radius: 41% 59% 38% 62% / 47% 34% 66% 53%;
  box-shadow: var(--shadow);
}

.decor-line {
  position: absolute;
  z-index: 2;
  border: 2px solid var(--rose);
  border-color: var(--rose) transparent transparent transparent;
  border-radius: 50%;
  opacity: 0.8;
}

.decor-line-top {
  top: -70px;
  left: -28px;
  width: 360px;
  height: 270px;
  border-width: 2px;
  rotate: -24deg;
}

.decor-line-flow {
  top: -42px;
  left: -105px;
  width: 270px;
  height: 650px;
  border-width: 2px;
  border-color: transparent transparent transparent var(--rose);
  border-radius: 52% 0 0 48% / 44% 0 0 56%;
  opacity: 0.72;
  rotate: 8deg;
}

.tiny-heart {
  position: absolute;
  top: 118px;
  left: -42px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 48px;
  rotate: -18deg;
}

.hero-leaf-sketch {
  position: absolute;
  z-index: 3;
  right: 32px;
  top: 155px;
  width: 112px;
  height: 190px;
  border-left: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  rotate: 7deg;
}

.hero-leaf-sketch::before,
.hero-leaf-sketch::after,
.hero-leaf-sketch span {
  content: "";
  position: absolute;
  width: 48px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0;
}

.hero-leaf-sketch::before {
  top: 18px;
  left: 10px;
  rotate: -42deg;
}

.hero-leaf-sketch::after {
  top: 78px;
  left: 28px;
  rotate: 28deg;
}

.hero-leaf-sketch span:nth-child(1) {
  top: 126px;
  left: 8px;
  rotate: -32deg;
}

.hero-leaf-sketch span:nth-child(2) {
  top: 48px;
  left: -24px;
  rotate: -145deg;
}

.hero-leaf-sketch span:nth-child(3) {
  top: 112px;
  left: -22px;
  rotate: -150deg;
}

.service-badge {
  position: absolute;
  bottom: 56px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  padding: 14px 22px 14px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(77, 57, 49, 0.12);
}

.service-badge span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--sage);
  border-radius: 50%;
  font-size: 1.4rem;
}

.service-badge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

/* =========================================================
   SERVICOS / CARDS COM ICONES
   ========================================================= */
.services {
  position: relative;
  overflow: hidden;
  padding: 36px 0 64px;
  background-color:  var(--paper);
}

.leaf-services {
  top: 22px;
  right: -42px;
  width: clamp(94px, 11vw, 150px);
  opacity: 0.16;
  rotate: 18deg;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-rows: 86px 62px 66px;
  min-height: 188px;
  align-items: start;
  justify-items: center;
  padding: 30px 22px 26px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 231, 217, 0.45));
  border: 1px solid rgba(216, 167, 167, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(99, 74, 62, 0.08);
}

.service-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-icon {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
}

/* =========================================================
   SOBRE / BIOGRAFIA
   ========================================================= */
.about {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.75fr;
  align-items: center;
  gap: 48px;
  width: var(--container);
  padding: 42px 0 60px;
  transition: width 0.7s ease, gap 0.7s ease, grid-template-columns 0.7s ease;
}

.leaf-about {
  right: -50px;
  bottom: 18px;
  width: clamp(88px, 9vw, 130px);
  opacity: 0.18;
  rotate: 12deg;
}

.about-photo {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  transition: transform 0.78s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.about-copy {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  display: grid;
  transition: transform 0.62s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.about-copy .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.about-copy h2 {
  grid-column: 1;
  grid-row: 2;
}

.about-photo img {
  aspect-ratio: 1 / 0.9;
  width: 100%;
  object-fit: cover;
  object-position: 48% 30%;
  border-radius: 36% 64% 57% 43% / 43% 31% 69% 57%;
  box-shadow: var(--shadow);
  transition: aspect-ratio 0.7s ease, border-radius 0.7s ease, object-position 0.7s ease;
}

.about h2 {
  font-size: clamp(2.35rem, 4vw, 3.6rem);
}

.about-text p {
  color: var(--muted);
  line-height: 1.75;
}

.about-text {
  grid-column: 1;
  grid-row: 3;
  transition: opacity 0.42s ease, transform 0.52s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.about-text-story {
  opacity: 0;
  transform: translateX(-34px);
  pointer-events: none;
}

.about-close {
  justify-self: start;
  margin-top: 8px;
  border: 0;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(88, 65, 54, 0.08);
  cursor: pointer;
}

.about-list {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: opacity 0.38s ease, transform 0.52s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.about-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.about-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.about-experience {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(242, 231, 217, 0.42));
  border: 1px solid rgba(216, 167, 167, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(88, 65, 54, 0.08);
  opacity: 0;
  transform: translateX(64px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease 0.34s, transform 0.66s cubic-bezier(0.2, 0.82, 0.18, 1) 0.34s;
}

.about-experience h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.about-experience ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-experience li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-experience li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
}

.about.is-story-open {
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr) minmax(340px, 0.95fr);
  gap: 42px;
  width: min(1320px, calc(100% - 40px));
  overflow: hidden;
}

.about.is-story-open .about-photo {
  transform: translateX(-54px) scale(1.04);
}

.about.is-story-open .about-photo img {
  aspect-ratio: 1 / 1.08;
  object-position: 45% 26%;
  border-radius: 44% 56% 50% 50% / 36% 46% 54% 64%;
}

.about.is-story-open .about-list {
  opacity: 0;
  transform: translateX(-36px);
  pointer-events: none;
}

.about.is-story-open .about-text-intro {
  opacity: 0;
  transform: translateX(-32px);
  pointer-events: none;
}

.about.is-story-visible .about-text-story {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.about.is-story-visible .about-experience {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.about.is-story-closing .about-text-story,
.about.is-story-closing .about-experience {
  opacity: 0;
  transform: translateX(44px);
  pointer-events: none;
}

@keyframes aboutCopyReveal {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

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

/* =========================================================
   PROCESSO / LINHA DO TEMPO
   ========================================================= */
.journey {
  padding: 36px 0 68px;
  background-color: var(--paper);
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  width: var(--container);
  margin: 0 auto;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 8%;
  left: 8%;
  z-index: -1;
  border-top: 2px dashed rgba(216, 167, 167, 0.65);
}

.journey-steps article {
  display: grid;
  grid-template-rows: 98px 42px 72px;
  justify-items: center;
  align-items: start;
  text-align: center;
}

.journey-steps span {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto;
  place-items: center;
  color: var(--rose-dark);
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(91, 68, 58, 0.08);
}

.journey-steps span img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.journey-steps h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.journey-steps p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

/* =========================================================
   LOCAIS DE ATENDIMENTO / CIDADES E MODALIDADES
   ========================================================= */
.locations {
  position: relative;
  overflow: hidden;
  padding: 42px 0 72px;
}

.leaf-locations {
  top: 90px;
  left: -60px;
  width: clamp(98px, 11vw, 160px);
  opacity: 0.15;
  rotate: -26deg;
}

.locations::before,
.locations::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 260px;
  border: 2px solid rgba(143, 166, 143, 0.26);
  border-color: transparent rgba(143, 166, 143, 0.26) transparent transparent;
  border-radius: 50%;
}

.locations::before {
  bottom: 24px;
  left: -78px;
  rotate: -18deg;
}

.locations::after {
  right: -58px;
  bottom: 14px;
  rotate: 18deg;
}

.section-title small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 34px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.45s ease, margin 0.35s ease;
}

.location-card {
  display: grid;
  grid-template-rows: 166px 1fr;
  overflow: hidden;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 167, 167, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(87, 64, 54, 0.1);
  transform-origin: center;
  transition: opacity 0.32s ease, transform 0.42s ease, filter 0.32s ease;
}

.location-card.is-fading {
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  filter: blur(2px);
}

.location-card.is-expanding {
  z-index: 2;
  transform: scale(1.12) translateY(-10px);
  box-shadow: 0 28px 80px rgba(87, 64, 54, 0.16);
}

.location-photo {
  position: relative;
  min-height: 166px;
  overflow: visible;
  border-radius: 18px 18px 0 0;
  background-color: rgba(247, 242, 238, 0.86);
  background-repeat: no-repeat;
  background-size: 72% auto;
  background-position: center;
}

.location-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 58, 55, 0.02), rgba(60, 58, 55, 0.18));
}

.location-photo.location-cocos,
.location-detail-photo.location-cocos {
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(216, 167, 167, 0.08)),
    url("../assets/img/locais/cocos.png");
  background-size: cover, 72% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center;
}

.location-photo.location-correntina,
.location-detail-photo.location-correntina {
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(143, 166, 143, 0.08)),
    url("../assets/img/locais/sao felix do coribe.png");
  background-size: cover, 72% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center;
}

.location-photo.location-jaborandi,
.location-detail-photo.location-jaborandi {
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(216, 167, 167, 0.08)),
    url("../assets/img/locais/bom jesus da lapa.png");
  background-size: cover, 72% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center;
}

.pin {
  position: absolute;
  top: -18px;
  left: 28px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 16px 28px rgba(199, 127, 130, 0.32);
  font-size: 0;
  rotate: -45deg;
}

.pin::after {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

.location-content {
  display: grid;
  grid-template-rows: 104px 58px 104px 44px;
  align-content: start;
  padding: 28px 34px 30px;
}

.location-content h2 {
  display: flex;
  align-items: start;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.78rem, 2.7vw, 2.28rem);
  font-weight: 500;
  line-height: 1.05;
}

.location-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.location-mode {
  display: flex;
  align-items: start;
  gap: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.location-mode span {
  flex: 0 0 20px;
  color: var(--rose-dark);
  font-size: 1.28rem;
  line-height: 1.2;
}

.location-button {
  align-self: start;
  justify-self: start;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  color: white;
  background: linear-gradient(135deg, #71886e, var(--sage));
  box-shadow: 0 14px 26px rgba(113, 136, 110, 0.2);
  cursor: pointer;
}

.location-grid.is-detail-open {
  grid-template-columns: 1fr;
  max-width: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.location-card.is-hidden {
  display: none;
}

.location-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(500px, 1.05fr);
  gap: 50px;
  width: min(1360px, calc(100% - 24px));
  height: 610px;
  margin: 8px auto 0;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 231, 217, 0.42));
  border: 1px solid rgba(216, 167, 167, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(87, 64, 54, 0.12);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: 35% top;
  clip-path: inset(0 0 0 0 round 22px);
  transition:
    opacity 0.5s ease,
    transform 0.78s cubic-bezier(0.2, 0.82, 0.18, 1),
    clip-path 0.78s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.location-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 167, 167, 0.2);
  border-radius: 50%;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(87, 64, 54, 0.1);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  padding: 0 0 2px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.location-close:hover {
  transform: translateY(-2px);
  background: white;
}

.location-detail[hidden] {
  display: none;
}

.location-detail.is-entering {
  opacity: 1;
  transform: perspective(1200px) rotateY(-7deg) translateY(-18px) scaleX(0.42) scaleY(0.92);
  clip-path: inset(0 54% 0 0 round 18px);
}

.location-detail.is-collapsing {
  opacity: 1;
  transform: perspective(1200px) rotateY(-7deg) translateY(-18px) scaleX(0.42) scaleY(0.92);
  clip-path: inset(0 54% 0 0 round 18px);
}

.location-detail.is-entering .location-detail-content {
  opacity: 0;
  transform: translateX(-42px);
  transition-delay: 0s;
}

.location-detail.is-closing-info .location-detail-content {
  opacity: 0;
  transform: translateX(-42px);
  transition-delay: 0s;
}

.location-detail.is-entering .location-detail-photo {
  opacity: 0;
  transform: translateX(-80px);
}

.location-detail.is-closing-photo .location-detail-photo {
  opacity: 0;
  transform: translateX(-80px);
  transition-delay: 0s;
}

.location-detail-photo {
  position: relative;
  order: 1;
  height: 100%;
  min-height: 0;
  overflow: visible;
  border-radius: 22px;
  background-color: rgba(247, 242, 238, 0.86);
  background-repeat: no-repeat;
  background-size: 72% auto;
  background-position: center;
  transform: translateX(0);
  transition: opacity 0.48s ease 0.18s, transform 0.58s cubic-bezier(0.2, 0.82, 0.18, 1) 0.18s;
}

.location-detail-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(60, 58, 55, 0.02), rgba(60, 58, 55, 0.18));
}

.location-detail-content {
  order: 2;
  display: grid;
  grid-template-rows: auto 120px 84px 202px auto;
  align-content: center;
  gap: 18px;
  padding: 8px 0 8px 8px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease 0.52s, transform 0.58s cubic-bezier(0.2, 0.82, 0.18, 1) 0.52s;
}

.location-detail-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.45rem);
  font-weight: 500;
  line-height: 1;
  align-self: center;
}

.location-detail-content > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  align-self: start;
}

.location-detail-info {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 18px;
  margin-top: 0;
  align-items: stretch;
}

.location-detail-info article {
  display: grid;
  grid-template-rows: 48px 1fr;
  min-height: 0;
  padding: 24px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 167, 167, 0.16);
  border-radius: 14px;
}

.location-detail-info strong {
  display: flex;
  align-items: start;
  margin: 0;
  color: var(--rose-dark);
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-detail-info span {
  display: block;
  align-self: start;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.location-detail-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 8px;
}

.location-detail-actions .button {
  min-height: 52px;
  padding: 0 20px;
  white-space: nowrap;
}

.location-whatsapp,
.location-instagram {
  gap: 10px;
}

.location-whatsapp {
  flex: 1.15 1 0;
}

.location-map,
.location-instagram {
  flex: 1 1 0;
}

.location-whatsapp {
  border: 0;
  color: white;
  background: linear-gradient(135deg, #71886e, var(--sage));
  box-shadow: 0 14px 26px rgba(113, 136, 110, 0.2);
}

.location-whatsapp img,
.location-map img,
.location-instagram img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.location-map {
  gap: 10px;
  border: 0;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 26px rgba(87, 64, 54, 0.08);
}

.location-instagram {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  box-shadow: 0 14px 26px rgba(199, 127, 130, 0.22);
}

/* =========================================================
   DIFERENCIAIS / MOTIVOS PARA ESCOLHER O ATENDIMENTO
   ========================================================= */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 56px 0 58px;
  background: linear-gradient(180deg, rgba(255, 253, 251, 0.96), rgba(242, 231, 217, 0.2));
}

.leaf-reasons {
  left: -46px;
  bottom: 20px;
  width: clamp(92px, 10vw, 140px);
  opacity: 0.14;
  rotate: 24deg;
}

.reasons-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 46px;
  width: var(--container);
  margin: 0 auto;
}

.reasons-layout::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -72px;
  z-index: 0;
  width: 360px;
  height: 250px;
  background: linear-gradient(135deg, rgba(216, 167, 167, 0.22), rgba(242, 231, 217, 0.42));
  border-radius: 54% 46% 48% 52% / 42% 48% 52% 58%;
}

.reason-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: start;
}

.reason-item {
  display: grid;
  grid-template-rows: 48px 54px 92px;
  justify-items: center;
  align-items: start;
  text-align: center;
}

.reason-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.reason-item h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  margin: 0;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.reason-item p {
  max-width: 158px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.48;
  text-wrap: pretty;
}

.reasons-photo {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 320px;
  isolation: isolate;
}

.reasons-photo::before {
  content: "";
  position: absolute;
  inset: -28px -48px -22px -16px;
  z-index: -1;
  background: rgba(216, 167, 167, 0.18);
  border-radius: 52% 48% 48% 52% / 42% 46% 54% 58%;
}

.reasons-photo img {
  aspect-ratio: 1 / 0.82;
  width: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  border-radius: 44% 56% 50% 50% / 36% 46% 54% 64%;
}

/* =========================================================
   CONTATO / CHAMADA FINAL
   ========================================================= */
.contact-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  width: var(--container);
  margin: 20px auto 0;
  padding: 50px 62px;
  color: white;
  background:
    linear-gradient(135deg, rgba(199, 127, 130, 0.95), rgba(216, 167, 167, 0.82)),
    var(--rose);
  border-radius: 34px 34px 0 0;
}

.leaf-contact {
  right: 40px;
  bottom: -34px;
  width: clamp(100px, 12vw, 170px);
  opacity: 0.2;
  rotate: -8deg;
}

.contact-band > div {
  position: relative;
  z-index: 1;
}

.contact-band h2 {
  max-width: 520px;
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-band p {
  max-width: 480px;
  line-height: 1.65;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
}

.contact-list img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =========================================================
   RODAPE
   ========================================================= */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
}

.brand-footer .brand-mark {
  flex: 0 0 auto;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: var(--rose);
  border-radius: 50%;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

/* =========================================================
   RESPONSIVO / TABLET E CELULAR
   ========================================================= */
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 0;
    background: white;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(80, 61, 52, 0.12);
  }

  .nav-toggle span {
    height: 2px;
    background: var(--ink);
  }

  .site-nav.is-open {
    position: fixed;
    inset: 90px 20px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(255, 253, 251, 0.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .hero,
  .about,
  .reasons-layout,
  .location-detail,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .location-detail {
    height: auto;
  }

  .about.is-story-open {
    grid-template-columns: 1fr;
    width: var(--container);
    gap: 30px;
    overflow: visible;
  }

  .about.is-story-open .about-photo {
    transform: translateX(0) scale(1);
  }

  .about-photo,
  .about-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .about-list,
  .about-experience {
    grid-column: 1;
    grid-row: 3;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .hero-visual {
    margin-left: 0;
  }

  .service-grid,
  .location-grid,
  .reason-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .location-detail-photo {
    height: auto;
    min-height: 320px;
  }

  .location-detail-content {
    grid-template-rows: none;
    padding: 0;
  }

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

  .journey-steps::before {
    display: none;
  }

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

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

  .site-header {
    padding: 14px 18px 10px;
  }

  .leaf-decor {
    width: 92px;
    opacity: 0.11;
  }

  .leaf-services,
  .leaf-about,
  .leaf-reasons {
    display: none;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-logo {
    width: clamp(168px, 54vw, 230px);
  }

  .brand-text strong {
    font-size: 1.55rem;
  }

  .brand-text small {
    letter-spacing: 0.3em;
    font-size: 0.62rem;
  }

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

  .hero-visual {
    min-height: 350px;
  }

  .hero-visual img {
    height: 410px;
    object-position: 58% 28%;
  }

  .tiny-heart,
  .decor-line,
  .hero-leaf-sketch,
  .hero::before {
    display: none;
  }

  .service-badge {
    right: 10px;
    bottom: 16px;
    left: 10px;
    max-width: none;
    padding: 10px 14px 10px 10px;
  }

  .service-badge span {
    width: 44px;
    height: 44px;
  }

  .service-badge p {
    font-size: 0.76rem;
  }

  .hero-actions .button-soft {
    display: none;
  }

  .service-grid,
  .location-grid,
  .reason-list,
  .location-detail-info,
  .journey-steps {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 30px 0 44px;
  }

  .service-grid {
    gap: 18px;
  }

  .service-card {
    grid-template-rows: 68px auto auto;
    min-height: 0;
    gap: 12px;
    padding: 24px 20px 22px;
  }

  .service-icon {
    width: 66px;
    height: 66px;
  }

  .service-card h2 {
    min-height: 0;
    font-size: 1.12rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .location-detail {
    height: auto;
    padding: 18px;
  }

  .location-detail-actions {
    flex-wrap: wrap;
  }

  .location-detail-actions .button {
    flex: 1 1 100%;
  }

  .location-detail-photo {
    min-height: 240px;
  }

  .about {
    gap: 26px;
  }

  .journey {
    padding: 34px 0 48px;
  }

  .journey-steps {
    gap: 34px;
  }

  .journey-steps article {
    grid-template-rows: 74px auto auto;
    gap: 8px;
  }

  .journey-steps span {
    width: 68px;
    height: 68px;
  }

  .journey-steps span img {
    width: 32px;
    height: 32px;
  }

  .contact-band {
    gap: 28px;
    padding: 34px 24px;
    border-radius: 24px 24px 0 0;
    text-align: left;
  }

  .contact-band h2 {
    max-width: 310px;
    font-size: clamp(2.35rem, 11vw, 2.95rem);
    line-height: 0.96;
  }

  .contact-band p {
    max-width: 310px;
    font-size: 1rem;
  }

  .contact-list {
    gap: 18px;
    align-content: start;
  }

  .contact-list li {
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .contact-list img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}
