:root {
  --champagne: #d8c3a3;
  --off-white: #f8f5f1;
  --beige: #e9e1d6;
  --bronze: #b9986d;
  --espresso: #4a3a31;
  --warm-gray: #b8b1a8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--espresso);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, 40rem);
  margin-inline: auto;
}

.container--treatments {
  width: min(100% - 2.5rem, 40rem);
}

.wide {
  width: min(100% - 2.5rem, 68rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  width: min(42vw, 8.5rem);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(248, 245, 241, 0.55);
  border-radius: 999px;
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(74, 58, 49, 0.28);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--off-white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45, 34, 28, 0.35) 0%, rgba(45, 34, 28, 0.22) 35%, rgba(45, 34, 28, 0.78) 100%),
    linear-gradient(90deg, rgba(45, 34, 28, 0.45) 0%, rgba(45, 34, 28, 0.1) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 2.6rem;
  animation: fadeUp 0.9s ease both;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 10vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero h1 {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 6.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin: 0 0 1.4rem;
  max-width: 30ch;
  color: rgba(248, 245, 241, 0.86);
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--champagne);
  color: var(--espresso);
  border: 1px solid var(--champagne);
}

.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(248, 245, 241, 0.55);
}

/* Sections */
.section {
  padding: 3.4rem 0;
}

.section-alt {
  background: var(--beige);
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--espresso);
}

.section-lead {
  margin: 0 0 1.6rem;
  max-width: 38ch;
  color: rgba(74, 58, 49, 0.82);
  font-size: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(74, 58, 49, 0.2);
  border-radius: 999px;
  background: rgba(248, 245, 241, 0.65);
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--espresso);
}

/* Split visual */
.split {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 18px;
  min-height: 18rem;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

/* Accordion treatments */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.acc-item {
  border: 1px solid rgba(74, 58, 49, 0.18);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 0;
  background: transparent;
  color: var(--espresso);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.acc-trigger span:last-child {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(74, 58, 49, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--bronze);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.acc-item.is-open .acc-trigger span:last-child {
  transform: rotate(45deg);
}

.acc-panel {
  display: none;
  padding: 0 0.85rem 1rem;
}

.acc-item.is-open .acc-panel {
  display: block;
  animation: fadeUp 0.35s ease both;
}

.treatment-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.treatment-card {
  background: var(--off-white);
  border: 1px solid rgba(74, 58, 49, 0.14);
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.treatment-card:hover {
  border-color: rgba(185, 152, 109, 0.42);
  box-shadow: 0 8px 22px rgba(74, 58, 49, 0.06);
}

.treatment-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--champagne);
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}

.treatment-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.treatment-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--espresso);
}

.treatment-card p {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(74, 58, 49, 0.76);
}

.treatment-link {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  transition: color 0.15s ease;
}

.treatment-link:hover {
  color: var(--espresso);
}

@media (min-width: 640px) {
  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .treatment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

@media (min-width: 1280px) {
  .treatment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (min-width: 768px) {
  .acc-panel {
    padding: 0 1rem 1.1rem;
  }

  .treatment-link:hover {
    color: #8f7350;
  }
}

/* Tech chips */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tech-chip {
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 58, 49, 0.16);
  background: var(--off-white);
  font-size: 0.86rem;
  font-weight: 600;
}

/* Results */
.results-grid {
  display: grid;
  gap: 1rem;
}

.result-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(74, 58, 49, 0.12);
}

.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-pair figure {
  margin: 0;
  position: relative;
}

.result-pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.result-pair figcaption {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(74, 58, 49, 0.72);
  color: var(--off-white);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Units */
.units-grid {
  display: grid;
  gap: 0.9rem;
}

.unit {
  padding: 1.15rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(74, 58, 49, 0.16);
  background: var(--white);
}

.unit--featured {
  border-color: rgba(185, 152, 109, 0.55);
  background: var(--off-white);
  box-shadow: 0 10px 26px rgba(74, 58, 49, 0.07);
}

.unit--featured h3::after {
  content: " · sua unidade";
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
}

.unit h3 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 550;
}

.unit p {
  margin: 0 0 0.45rem;
  color: rgba(74, 58, 49, 0.86);
  font-size: 0.95rem;
}

.unit a {
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 58, 49, 0.25);
}

.hours {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 58, 49, 0.12);
}

.hours h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hours ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
  color: rgba(74, 58, 49, 0.86);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 3.5rem 0;
  background:
    linear-gradient(180deg, rgba(74, 58, 49, 0.92), rgba(58, 45, 38, 0.96)),
    url("../imagens/e0f1ee29-032f-4bb8-8606-2cee2df64aa0.jpeg") center / cover;
  color: var(--off-white);
}

.final-cta .section-title {
  color: var(--off-white);
}

.final-cta .section-lead {
  margin-inline: auto;
  color: rgba(248, 245, 241, 0.84);
}

.final-cta .btn-primary {
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  padding: 1.6rem 0 2rem;
  background: var(--espresso);
  color: rgba(248, 245, 241, 0.78);
  text-align: center;
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--champagne);
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin-bottom: 0.75rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  animation: floatIn 0.7s ease 0.6s both;
}

.wa-float img {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 3rem, 44rem);
  }

  .container.container--treatments {
    width: 80%;
    max-width: 88rem;
  }

  .hero-content {
    padding-bottom: 3.4rem;
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

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

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

  .btn:hover,
  .header-cta:hover {
    transform: translateY(-1px);
  }

  .btn-primary:hover {
    background: #e2d1b5;
  }
}

@media (min-width: 1024px) {
  .hero-media img {
    object-position: center 15%;
  }

  .brand-mark {
    letter-spacing: 0.22em;
  }
}
