/* ============================================
   BELATRIX Brazilian Beauty v2
   Visual do Figma Make — cream/gold/sage + hero escuro
   ============================================ */

/* ----- Variáveis ----- */
:root {
  --cream: #EFF3E7;
  --cream-card: #E7EDDD;
  --cream-deeper: #DCE5D1;
  --sage: #97AC86;
  --sage-light: #B8C9A8;
  --sage-pale: #D3E0C8;
  --sage-text: #6B8860;
  --gold: #A3BA94;
  --gold-light: #BCCDA9;
  --gold-pale: #E3EBD9;
  --hero: #EFF3E7;
  --ink: #2A2017;
  --ink-soft: #4A3F33;
  --muted: #7A6E5F;
  --footer: #E7EDDD;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  --accent: #A3BA94;
  --accent-soft: #BCCDA9;
  --sage-mid: #8AA183;
  --sage-dark: #6B8860;
  --sage-deep: #5E7259;
  --beige-mid: #DCE5D1;
  --beige-deep: #C9BFA9;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(46, 50, 43, 0.07);
  --shadow-hover: 0 12px 36px rgba(46, 50, 43, 0.14);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ----- Reset ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border-radius: 12px;}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 12px;
}

::selection {
  background: var(--sage);
  color: var(--white);
}

/* ----- Fundo decorativo ----- */
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.038;
  animation: grainShift 2.8s steps(1) infinite;
  z-index: 1;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 4%); }
  40% { transform: translate(3%, -6%); }
  60% { transform: translate(-6%, 3%); }
  80% { transform: translate(4%, -3%); }
  100% { transform: translate(0, 0); }
}

/* ----- Cursor customizado ----- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-light);
  z-index: 9998;
  opacity: 0.5;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.cursor-ring.hovered {
  width: 62px;
  height: 62px;
  opacity: 0.3;
  background: rgba(163, 186, 148, 0.07);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.bg-orb--1 {
  width: 620px;
  height: 620px;
  background: var(--sage-light);
  top: -220px;
  left: -220px;
  opacity: 0.5;
}

.bg-orb--2 {
  width: 520px;
  height: 520px;
  background: #EFE7D8;
  bottom: -180px;
  right: -180px;
  opacity: 0.6;
}

.bg-orb--3 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  top: 45%;
  left: 55%;
  opacity: 0.12;
}

.hero, .about, .team, .services, .testimonials, .tipps,
.booking, .contact, .legal, .footer {
  position: relative;
  z-index: 1;
}

section:not(.hero) {
  background: transparent;
}

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

/* ----- Botões ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(188, 205, 169, 0.92), rgba(143, 169, 126, 0.92));
  color: #EFF3E7;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(163, 186, 148, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #BCCDA9, #B8893F);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(163, 186, 148, 0.28);
}

.btn--outline {
  background: transparent;
  border-color: rgba(163, 186, 148, 0.3);
  color: var(--sage-text);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
}

.btn--outline:hover {
  background: rgba(163, 186, 148, 0.08);
  color: #8FA97E;
  border-color: rgba(163, 186, 148, 0.6);
  transform: translateY(-3px);
}

.btn--light {
  background: var(--cream);
  color: var(--sage-text);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
}

.btn--light:hover {
  background: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.btn--ghost {
  background: transparent;
  border-color: var(--beige-deep);
  color: var(--sage-dark);
  padding: 10px 20px;
  border-radius: 999px;}

.btn--ghost:hover {
  border-color: var(--sage-dark);
  background: var(--sage-light);
  transform: translateY(-2px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Seções ----- */
.section {
  padding: 88px 0;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--accent));
  margin: 14px auto 0;
  border-radius: 999px;
}

.section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}

.section--alt {
  background: linear-gradient(180deg, #E7EDDD 0%, #DCE5D1 100%);
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 249, 245, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(163, 186, 148, 0.12);
  transition: background var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.header--scrolled {
  background: rgba(251, 249, 245, 0.94);
  box-shadow: 0 4px 24px rgba(42, 32, 23, 0.08);
}

.header--hidden {
  transform: translateY(-110%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height var(--transition);
}

.header--scrolled .header__inner {
  height: 62px;
}

.header__logo-img {
  height: 66px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(163, 186, 148, 0.45));
  transition: transform var(--transition), height var(--transition);
}

.header--scrolled .header__logo-img {
  height: 52px;
}

.header__logo:hover .header__logo-img {
  transform: scale(1.05);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--transition);
  position: relative;
  padding: 6px 2px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--sage-text);
}

.header__nav-link:hover::after,
.header__nav-link.nav-active::after {
  width: 100%;
}

.header__nav-link.nav-active {
  color: var(--sage-text);
  font-weight: 500;
}

.header__nav-cta {
  border: 1px solid rgba(163, 186, 148, 0.5);
  color: #8FA97E !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 400;
  letter-spacing: 0.2em;
  transition: background var(--transition), transform var(--transition),
    border-color var(--transition);
}

.header__nav-cta::after {
  display: none;
}

.header__nav-cta:hover {
  background: rgba(163, 186, 148, 0.12);
  border-color: rgba(163, 186, 148, 0.9);
  transform: translateY(-2px);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1101;
}

.header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sage-text);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #FBF9F5 0%, #EFF3E7 40%, #F1E9D8 75%, #EADFC9 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: heroBreathe 7s ease-in-out infinite;
}

.hero__glow--1 {
  top: 10%;
  left: 4%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(151, 172, 134, 0.22) 0%, transparent 70%);
}

.hero__glow--2 {
  bottom: 12%;
  right: 5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(163, 186, 148, 0.16) 0%, transparent 70%);
  animation-delay: 3s;
  animation-duration: 9s;
}

.hero__glow--3 {
  top: 50%;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 171, 120, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  animation: none;
}

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(163, 186, 148, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__ring--1 {
  width: 620px;
  height: 620px;
}

.hero__ring--2 {
  width: 950px;
  height: 950px;
  border-color: rgba(163, 186, 148, 0.08);
}

.hero__ray {
  position: absolute;
  top: -20%;
  left: -5%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent 0%, rgba(163, 186, 148, 0.18) 30%, rgba(163, 186, 148, 0.1) 50%, rgba(163, 186, 148, 0.18) 70%, transparent 100%);
  transform: rotate(18deg);
  animation: heroShimmerRay 24s linear infinite;
}

.hero__ray--2 { animation-delay: 5.5s; animation-duration: 31s; }
.hero__ray--3 { animation-delay: 11s; animation-duration: 38s; }
.hero__ray--4 { animation-delay: 16.5s; animation-duration: 45s; }

.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: heroFloatParticle ease-in-out infinite;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 75% at center, transparent 30%, rgba(237, 229, 210, 0.45) 100%);
  z-index: 1;
}

@keyframes heroBreathe {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.14); opacity: 0.82; }
}

@keyframes heroShimmerRay {
  0% { transform: rotate(18deg) translateX(-400px); opacity: 0; }
  6% { opacity: 0.9; }
  94% { opacity: 0.9; }
  100% { transform: rotate(18deg) translateX(220vw); opacity: 0; }
}

@keyframes heroFloatParticle {
  0% { transform: translateY(0) translateX(0) scale(0.4); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(-200px) translateX(var(--pdx, 25px)) scale(1.1); opacity: 0; }
}

@keyframes heroScrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.45); opacity: 0.18; }
}

@keyframes heroGoldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
}

.hero__content > * {
  animation: heroReveal 1s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

.hero__eyebrow { animation-delay: 0.3s; }
.hero__title { animation-delay: 0.1s; }
.hero__text { animation-delay: 0.95s; }
.hero__rating { animation-delay: 1.1s; }
.hero__cta { animation-delay: 1.25s; }

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero__eyebrow-line {
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 186, 148, 0.7));
}

.hero__eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(163, 186, 148, 0.7), transparent);
}

.hero__eyebrow span:not(.hero__eyebrow-line) {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage-text);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2.25rem;
  text-transform: none;
}

.hero__title-line {
  display: block;
}

.hero__title-line--light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.44em;
  font-size: clamp(1rem, 3.2vw, 1.7rem);
  color: #9C7B4F;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 0 rgba(90, 66, 36, 0.25), 0 8px 22px rgba(90, 66, 36, 0.3);
  margin-bottom: 0.35rem;
}

.hero__title-line--light::before,
.hero__title-line--light::after {
  content: "";
  height: 1px;
  width: clamp(2.4rem, 8vw, 6rem);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.hero__title-ornament {
  font-size: 0.6em;
  transform: translateY(-1px);
}

.hero__title-word {
  display: inline-block;
}

.gold-text {
  font-weight: 400;
  font-style: italic;
  color: #B3A077;
  text-shadow: 0 0 8px rgba(255, 245, 225, 0.55), 0 2px 6px rgba(90, 70, 40, 0.14), 0 18px 44px rgba(194, 146, 86, 0.32);
}



.hero__title-line .letter-rain {
  display: inline-block;
  opacity: 0;
  color: #B3A077;
  text-shadow: 0 0 8px rgba(255, 245, 225, 0.55), 0 2px 6px rgba(90, 70, 40, 0.14), 0 18px 44px rgba(194, 146, 86, 0.32);
  animation: letterRain 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes letterRain {
  0% { opacity: 0; transform: translateY(-72px) rotate(7deg); }
  55% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.hero__text {
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.9;
  max-width: 420px;
  margin: 0 auto 1.6rem;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.4rem;
}

.hero__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero__rating-text {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.hero__scroll span {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--sage-text);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(163, 186, 148, 0.65), transparent);
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}

.btn--gold {
  background: linear-gradient(135deg, rgba(188, 205, 169, 0.92), rgba(143, 169, 126, 0.92));
  color: #EFF3E7;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(163, 186, 148, 0.18);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(163, 186, 148, 0.28);
}

.btn--outline-gold {
  background: transparent;
  border-color: rgba(163, 186, 148, 0.3);
  color: #A3BA94;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
}

.btn--outline-gold:hover {
  color: #A3BA94;
  border-color: rgba(163, 186, 148, 0.8);
  background: rgba(163, 186, 148, 0.08);
  transform: translateY(-3px);
}

/* ============ ABOUT ============ */
.about__content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about__text p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about__text strong {
  font-weight: 500;
  color: var(--sage-dark);
}

.about__highlights {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about__highlights li {
  background: var(--cream-card);
  border: 1px solid var(--beige-mid);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: transform var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}

.about__highlights li:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: var(--shadow);
}

/* ============ TEAM ============ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 2rem;
}

.team__card {
  background: #F9FBF5;
  border: 1px solid rgba(46, 50, 43, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 3px 0 0 var(--sage);
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  position: relative;
}

.team__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.team__card:hover::before {
  transform: scaleX(1);
}

.team__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team__card-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(46, 50, 43, 0.15);
  background: var(--sage-light);
}

.team__card-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(46, 50, 43, 0.15);
}

.team__card-initials {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
}

.team__card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team__card-role {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team__card-rating {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.team__card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ SERVICES ============ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  perspective: 1200px;
  align-items: start;
}

.service__card {
  background: #F9FBF5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 3px 0 0 var(--sage), 0 6px 36px rgba(42, 32, 23, 0.07);
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
  border: 1px solid transparent;
  position: relative;
}

.service__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(212, 171, 120, 0.38) 55%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 2;
}

.service__card:hover::after {
  transform: translateX(340%) skewX(-18deg);
}

.service__card:hover {
  box-shadow: 0 28px 80px rgba(42, 32, 23, 0.16), 0 0 0 1px rgba(163, 186, 148, 0.18);
  border-color: rgba(163, 186, 148, 0.18);
}

.service__card--highlight {
  border-color: rgba(163, 186, 148, 0.55);
}

.service__card--highlight .service__card-header {
  background: linear-gradient(135deg, #E7EDDD, #EFF3E7);
}

.service__card-header {
  padding: 22px 26px;
  background: rgba(251, 249, 245, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(42, 32, 23, 0.06);
}

.service__card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}

.service__card-price {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #BCCDA9;
  background: rgba(20, 18, 9, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.service__card-list {
  padding: 14px 26px 20px;
}

.service__card-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  padding: 7px 0;
  border-bottom: 1px dashed rgba(42, 32, 23, 0.1);
}

.service__card-list li:last-child {
  border-bottom: none;
}

.service__card-list .price {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--sage-text);
  white-space: nowrap;
  padding-top: 2px;
}

.service__card-list .price--empty {
  color: var(--beige-deep);
  font-weight: 400;
}

.service__card-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.75;
  padding: 0 26px 18px;
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.services__cta p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.services__cta-wa a {
  color: var(--sage-text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ TESTIMONIALS ============ */
.testimonials__overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.testimonials__stars {
  color: var(--accent);
  font-size: 1.8rem;
  letter-spacing: 4px;
}

.testimonials__score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.testimonials__count {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.testimonials__histogram {
  max-width: 360px;
  margin: 0 auto 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonials__hist-row {
  display: grid;
  grid-template-columns: 34px 1fr 44px;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.testimonials__hist-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(46, 50, 43, 0.08);
  overflow: hidden;
}

.testimonials__hist-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial__card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 32, 23, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 3px 0 0 var(--sage);
  padding: 28px 26px;
  box-shadow: 0 6px 36px rgba(42, 32, 23, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.testimonial__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(42, 32, 23, 0.14), 0 0 0 1px rgba(163, 186, 148, 0.18);
}

.testimonial__card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--sage);
  opacity: 0.18;
  line-height: 1;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  flex-shrink: 0;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__name {
  font-weight: 500;
  font-size: 1rem;
}

.testimonial__stars-sm {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial__service {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--sage-light);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
}

/* ============ BLOG ============ */
.tipps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.tipp__card {
  background: #F9FBF5;
  border: 1px solid rgba(46, 50, 43, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 3px 0 0 var(--sage), var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.tipp__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tipp__card-image {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tipp__card-image--shellac {
  background-image: linear-gradient(135deg, #B9C9B3 0%, #7E9678 100%);
}

.tipp__card-image--waxing {
  background-image: linear-gradient(135deg, #D8CEB4 0%, #B4A578 100%);
}

.tipp__card-image--massage {
  background-image: linear-gradient(135deg, #8AA183 0%, #4A5B45 100%);
}

.tipp__card-image--photo {
  background: var(--sage-light);
}

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

.tipp__card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(4px);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
}

.tipp__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tipp__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}

.tipp__card:hover .tipp__card-body h3 {
  color: var(--sage-dark);
}

.tipp__card-excerpt {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}

.tipp__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(46, 50, 43, 0.08);
  padding-top: 14px;
}

.tipp__card-date {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.tipp__card-read {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.tipp__card:hover .tipp__card-read {
  gap: 8px;
}

/* ----- Página de artigo ----- */
.article {
  max-width: 760px;
  margin: 0 auto;
}

.article__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.article__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.article__meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.article__banner {
  height: 260px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  margin-bottom: 2.5rem;
}

.article__body {
  font-size: 1.05rem;
  line-height: 1.9;
}

.article__body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2rem 0 0.8rem;
}

.article__body p {
  margin-bottom: 1.1rem;
}

/* ============ BOOKING ============ */
.booking__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 3rem;
}

.booking__step {
  background: var(--cream-card);
  border: 1px solid rgba(46, 50, 43, 0.06);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.booking__step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking__step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.booking__step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.booking__panel {
  background: var(--white);
  border: 1px solid rgba(46, 50, 43, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.booking__panel iframe {
  flex: 1;
  width: 100%;
  border: 0;
  min-height: 520px;
}

.booking__panel--fallback {
  padding: 60px 32px;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* ============ BOOKING FLOW (Behandlung wählen → Kalender) ============ */
.booking__panel--flow {
  min-height: 0;
  padding: 28px;
}

.booking__step-pane {
  width: 100%;
}

.booking__picker-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.booking__picker-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
}

.booking__search {
  flex: 1;
  min-width: 220px;
  max-width: 380px;
}

.booking__search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-deep);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking__search-input:focus {
  outline: none;
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(94, 114, 89, 0.15);
}

.booking__groups {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 6px;
}

.booking__group {
  background: var(--cream-card);
  border: 1px solid rgba(46, 50, 43, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.booking__group-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.booking__group-header:hover {
  background: rgba(233, 237, 227, 0.7);
}

.booking__group-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: 999px;
  padding: 2px 10px;
}

.booking__group-arrow {
  margin-left: auto;
  color: var(--sage-dark);
  transition: transform 0.25s;
}

.booking__group.open .booking__group-arrow {
  transform: rotate(180deg);
}

.booking__group-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(46, 50, 43, 0.06);
}

.booking__group-items[hidden] {
  display: none;
}

.booking__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(46, 50, 43, 0.05);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 0.18s;
}

.booking__item:last-child {
  border-bottom: 0;
}

.booking__item:hover {
  background: var(--sage-light);
}

.booking__item-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--beige-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: transparent;
  transition: all 0.18s;
}

.booking__item.selected .booking__item-check {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-color: var(--sage-dark);
  color: var(--white);
}

.booking__item-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.booking__item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.booking__item-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.booking__item-price {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sage-dark);
  white-space: nowrap;
}

.booking__empty {
  text-align: center;
  padding: 30px 16px;
  color: var(--ink-soft);
}

.booking__note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

.booking__note a {
  color: var(--sage-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking__confirm-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.booking__confirm-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--ink);
}

.booking__confirm-hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 720px;
}

.booking__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(46, 50, 43, 0.08);
}

.booking__nav-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.booking__frame {
  border: 1.5px solid var(--beige-deep);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}

.booking__frame iframe {
  display: block;
  width: 100%;
  height: 860px;
  border: 0;
}

@media (max-width: 640px) {
  .booking__frame iframe {
    height: clamp(620px, calc(100svh - 220px), 1100px);
  }
}

/* ============ CONTACT ============ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 2rem;
  align-items: start;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 1.5rem 0 0.6rem;
}

.contact__info h3:first-child {
  margin-top: 0;
}

.contact__address {
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact__link {
  color: var(--ink);
  transition: color var(--transition), padding-left var(--transition);
  font-size: 1rem;
}

.contact__link:hover {
  color: var(--sage-dark);
  padding-left: 4px;
}

.contact__link--social {
  font-weight: 500;
}

.contact__hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.contact__hours-row td {
  padding: 8px 12px 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(46, 50, 43, 0.07);
}

.contact__hours-row td:last-child {
  font-weight: 500;
  text-align: right;
  color: var(--sage-dark);
}

.contact__hours-row .closed {
  color: var(--beige-deep);
  font-weight: 400;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.contact__form {
  background: var(--white);
  border: 1px solid rgba(46, 50, 43, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form__field {
  margin-bottom: 1.1rem;
}

.form__field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}

.form__field input,
.form__field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--beige-mid);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(169, 187, 164, 0.25);
}

.form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.form__error {
  display: block;
  color: #B3543F;
  font-size: 0.85rem;
  margin-top: 5px;
}

.form__global-error {
  background: #F9EAE6;
  border: 1px solid #E5C5BA;
  color: #8A3E2C;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.form__success {
  background: #E8F0E4;
  border: 1px solid var(--sage);
  color: var(--sage-deep);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ============ LEGAL ============ */
.legal {
  max-width: 820px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--sage-dark);
  margin: 2rem 0 0.7rem;
}

.legal p, .legal li {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.4rem;
}

/* ============ GALERIE ============ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  grid-auto-flow: row dense;
  gap: 18px;
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #F9FBF5;
  border: 1px solid rgba(163, 186, 148, 0.15);
  box-shadow: inset 0 3px 0 0 var(--sage);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--full {
  grid-column: span 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.94);
}

.gallery__item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  background: linear-gradient(180deg, rgba(163, 186, 148, 0.12), rgba(42, 32, 23, 0.52));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 12, 8, 0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: min(88vw, 1200px);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 171, 120, 0.35);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212, 171, 120, 0.5);
  background: rgba(20, 18, 9, 0.4);
  color: var(--gold-pale);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(163, 186, 148, 0.25);
  transform: scale(1.06);
}

.lightbox__close {
  top: 22px;
  right: 22px;
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #E7EDDD 0%, #E4DAC4 100%);
  color: var(--ink-soft);
  padding: 64px 0 0;
  border-top: 1px solid rgba(163, 186, 148, 0.3);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(163, 186, 148, 0.25);
}

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(163, 186, 148, 0.4));
}

.footer__brand p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--sage-text);
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(163, 186, 148, 0.6);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  transition: opacity var(--transition), color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: #8FA97E;
  padding-left: 6px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social-link {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  transition: opacity var(--transition), color var(--transition);
}

.footer__social-link:hover {
  color: #8FA97E;
}

.footer__treatwell {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 0.6rem;
}

.footer__treatwell a {
  color: var(--sage-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  padding: 26px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
}

.footer__legal-links {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer__legal-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal-links a:hover {
  color: #8FA97E;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #4FCA63 0%, #2E9B4F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(46, 155, 79, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(46, 155, 79, 0.5);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============ CHAT WIDGET ============ */
.chat-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage-deep));
  color: var(--white);
  box-shadow: 0 6px 22px rgba(74, 91, 69, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(74, 91, 69, 0.5);
}

.chat-btn .chat-btn__close {
  display: none;
}

.chat-btn[aria-expanded="true"] .chat-btn__open {
  display: none;
}

.chat-btn[aria-expanded="true"] .chat-btn__close {
  display: block;
}

.chat-panel {
  position: fixed;
  bottom: 96px;
  left: 28px;
  z-index: 989;
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 140px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(46, 50, 43, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chat-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-panel__header {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage-deep));
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-panel__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251, 249, 245, 0.18);
  border: 1.5px solid rgba(251, 249, 245, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.chat-panel__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.chat-panel__status {
  font-size: 0.78rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-panel__status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ED68C;
  animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-panel__close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 999px;
}

.chat-panel__close:hover {
  background: rgba(251, 249, 245, 0.15);
}

.chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}

.chat-msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-msg--bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(46, 50, 43, 0.07);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow);
}

.chat-msg .chat-link {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.chat-msg .chat-link:hover {
  text-decoration: none;
}

.chat-msg--user {
  align-self: flex-end;
  background: var(--sage-dark);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-msg--typing {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.85rem;
}

.chat-panel__quick {
  padding: 10px 18px 4px;
  background: var(--cream);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chat-quick-btn {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  color: var(--sage-dark);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.chat-quick-btn:hover {
  border-color: var(--sage);
  background: var(--sage-light);
}

.chat-panel__input {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid rgba(46, 50, 43, 0.08);
}

.chat-panel__input input {
  flex: 1;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--beige-mid);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.chat-panel__input input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(169, 187, 164, 0.25);
}

.chat-panel__input button {
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: var(--sage-dark);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.chat-panel__input button:hover {
  background: var(--sage-deep);
  transform: scale(1.05);
}

.chat-panel__input button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(35, 39, 32, 0.97);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 18px 24px;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: var(--radius-lg);}

.cookie-banner.show {
  display: block;
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-banner a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

/* ============ 404 ============ */
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 120px 24px 80px;
}

.notfound h1 {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--sage);
  line-height: 1;
}

.notfound p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(251, 249, 245, 0.98);
    padding: 110px 36px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -6px 0 30px rgba(42, 32, 23, 0.12);
    overflow-y: auto;
    border-left: 1px solid rgba(163, 186, 148, 0.25);
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }

  .header__nav-link {
    font-size: 0.85rem;
    color: var(--ink-soft);
    border-bottom: 1px solid rgba(163, 186, 148, 0.15);
    width: 100%;
    padding: 0.75rem 0;
  }
}

@media (max-width: 900px) {
  .booking__steps {
    grid-template-columns: 1fr;
  }

  .booking__groups {
    max-height: none;
    overflow: visible;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gallery__item--wide,
  .gallery__item--full {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 92svh;
  }

  .hero__title {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
    margin-bottom: 1.4rem;
  }

  .hero__title-line--light {
    font-size: clamp(0.85rem, 4vw, 1.05rem);
    letter-spacing: 0.26em;
    gap: 0.5rem;
  }

  .hero__title-word {
    white-space: nowrap;
  }

  .hero__title-line--light::before,
  .hero__title-line--light::after {
    width: 1.2rem;
  }

  .hero__eyebrow {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .hero__eyebrow-line {
    width: 28px;
  }

  .hero__eyebrow span:not(.hero__eyebrow-line) {
    font-size: 0.5rem;
    letter-spacing: 0.25em;
  }

  .hero__text {
    max-width: 300px;
  }

  .hero__rating {
    margin-bottom: 1.6rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .services__grid,
  .team__grid,
  .testimonials__grid,
  .tipps__grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .testimonials__score {
    font-size: 2.3rem;
  }

  .article__title {
    font-size: 1.8rem;
  }

  .booking__panel iframe {
    min-height: 480px;
  }

  .booking__panel--flow {
    padding: 20px 16px;
  }

  .booking__confirm-head {
    flex-wrap: wrap;
    gap: 12px;
  }

  .booking__confirm-head .btn {
    width: auto;
  }

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

  .booking__nav .btn {
    width: 100%;
  }

  .booking__nav-hint {
    order: 2;
    text-align: center;
  }

  .booking__picker-head {
    flex-direction: column;
    align-items: stretch;
  }

  .booking__search {
    max-width: none;
  }

  .booking__groups {
    max-height: none;
    overflow: visible;
  }

  .booking__item {
    padding: 12px 12px;
    gap: 10px;
  }

  .booking__item-check {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .booking__item-price {
    font-size: 0.85rem;
  }

  .booking__frame iframe {
    height: clamp(620px, calc(100svh - 220px), 1100px);
  }

  .notfound h1 {
    font-size: 4rem;
  }

  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    width: auto;
    flex: 1;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .contact__form {
    padding: 26px 20px;
  }

  .whatsapp-float,
  .chat-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
  }

  .whatsapp-float {
    right: 20px;
  }

  .chat-btn {
    left: 20px;
  }

  .chat-panel {
    bottom: 84px;
    left: 16px;
    width: calc(100vw - 32px);
    height: min(520px, calc(100vh - 120px));
  }

  .footer__inner {
    gap: 36px;
  }
}

@media (max-width: 400px) {
  .hero__title-line--light::before,
  .hero__title-line--light::after {
    display: none;
  }
}

@media (hover: none) {
  .whatsapp-float__tooltip {
    display: none;
  }
}

/* ============ REDUZIDO ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Ícone WhatsApp nos links */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-link__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.chat-panel__avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.chat-btn__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
