/* ============================================
   MATHEUS VELHO — PSICÓLOGO
   Escuta qualificada e acolhedora
   Online e Presencial
   ============================================ */


:root {
  --primary:        #214140;   /* verde principal */
  --primary-light:  #2c5654;
  --primary-soft:   rgba(33,65,64,.08);
  --green-deep:     #17302f;
  --green-900:      #10221f;
  --green-950:      #0b1918;
  --accent:         #6f7d78;   /* gris elegante sobre claro */
  --accent-light:   #c9d3cf;   /* gris elegante claro sobre verde */
  --dark:           #214140;
  --white:          #ffffff;
  --light:          #f3f5f4;   /* gris muy claro / off-white */
  --light-mid:      #e6eae8;
  --stone:          #dfe4e2;
  --muted:          #5c6a66;
  --border:         rgba(33,65,64,.14);
  --border-dark:    rgba(255,255,255,.1);
  --serif:          'Marcellus', Georgia, serif;
  --sans:           'Inter', system-ui, sans-serif;
  --shadow:         0 2px 12px rgba(16,34,31,.07);
  --shadow-md:      0 6px 28px rgba(16,34,31,.12);
  --shadow-lg:      0 16px 48px rgba(16,34,31,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; background: var(--primary); }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .9rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--dark);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
p { font-size: .93rem; line-height: 1.8; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }
.section-intro {
  max-width: 600px;
  margin: 1rem 0 3rem;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(33,65,64,.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,.28);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(33,65,64,.4);
}
/* Em seções escuras o btn-dark vira claro/pedra para contraste */
.manifesto-section .btn-dark,
.sobre-section .btn-dark {
  background: var(--white);
  color: var(--primary);
}
.manifesto-section .btn-dark:hover,
.sobre-section .btn-dark:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.2);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(145deg, #0b1918 0%, #17302f 55%, #214140 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img { width: 190px; opacity: .95; }
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(255,255,255,.18);
  position: relative; overflow: hidden;
}
.loading-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--accent-light); transition: width .08s;
}
.loading-pct { font-size: .65rem; color: rgba(255,255,255,.45); letter-spacing: .14em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: linear-gradient(145deg, #0b1918 0%, #17302f 55%, #214140 100%);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img { width: 110px; opacity: 0; }

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .85rem 0;
  border-color: rgba(33,65,64,.1);
  box-shadow: 0 1px 24px rgba(16,34,31,.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light { height: 46px; width: auto; display: block; }
.logo-dark  { height: 46px; width: auto; display: none; }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

nav.header-nav { display: flex; align-items: center; gap: 1.6rem; }
nav.header-nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
  transition: color .3s;
}
nav.header-nav a:hover { color: var(--white); }
#header.scrolled nav.header-nav a { color: var(--muted); }
#header.scrolled nav.header-nav a:hover { color: var(--primary); }
.header-cta {
  padding: .7rem 1.5rem; font-size: .72rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.header-cta:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
#header.scrolled .header-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
#header.scrolled .header-cta:hover { background: var(--primary-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Nav ─────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--green-950);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  padding: 5rem 1.5rem 2.5rem;
  overflow-y: auto;
  max-height: 100vh;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem,5vw,2.6rem);
  font-weight: 400; color: rgba(255,255,255,.82); transition: color .3s;
}
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--white); color: var(--primary);
  padding: .8rem 2rem; border-radius: 100px; margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 220vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--green-950);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(11,25,24,.90) 0%, rgba(11,25,24,.55) 42%, rgba(11,25,24,.1) 66%, transparent 84%),
    linear-gradient(to top,   rgba(11,25,24,.75) 0%, rgba(11,25,24,.22) 46%, transparent 72%);
}
.hero-content {
  position: absolute;
  top: clamp(5.5rem, 16vh, 9rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(44vw, 540px);
  z-index: 10;
}
.hero-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1.1rem;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 3.4rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.1rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.5), 0 1px 8px rgba(0,0,0,.35);
}
.hero-h1 em { font-style: italic; color: var(--accent-light); display: block; }
.hero-sub {
  font-size: .88rem; line-height: 1.75;
  color: rgba(255,255,255,.82); margin-bottom: 1.6rem;
  max-width: 400px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero-actions .btn { padding: .78rem 1.6rem; font-size: .72rem; }
.hero-actions .btn-primary {
  background: var(--white); color: var(--primary);
}
.hero-actions .btn-primary:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 24px rgba(255,255,255,.25);
}
.hero-microcopy {
  margin-top: 1.2rem;
  font-size: .62rem; letter-spacing: .12em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .56rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--accent-light);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, #0b1918 0%, #17302f 50%, #214140 100%);
  padding: 1.1rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 52s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.marquee-content .dot { color: var(--accent-light); font-size: .4rem; opacity: .7; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── MANIFESTO ──────────────────────────── */
.manifesto-section {
  background: linear-gradient(160deg, #2c5654 0%, #214140 55%, #17302f 100%);
  text-align: center;
}
.manifesto-section .label { color: var(--accent-light); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: rgba(255,255,255,.96);
  margin: 1.2rem 0 1.6rem;
}
.manifesto-sub {
  font-size: .95rem; color: rgba(255,255,255,.7);
  max-width: 620px; margin: 0 auto 2.4rem;
}

/* ─── ÁREAS DE ATUAÇÃO (cards) ───────────── */
.experiencias-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.experiencias-section .label { color: var(--accent); }
.experiencias-section h2 { max-width: 600px; margin-top: .5rem; color: var(--dark); }
.experiencias-section .section-intro { color: var(--muted); }
.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  max-width: 1040px;
  margin-top: 2.5rem;
}
.modalidade-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--primary);
  border: 1px solid rgba(33,65,64,.14);
  box-shadow: var(--shadow-md);
}
.modalidade-card > img {
  width: 100%;
  height: clamp(230px, 28vw, 360px);
  object-fit: cover;
}
.modalidade-body {
  display: flex;
  min-height: 270px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  flex-direction: column;
}
.modalidade-body .modalidade-label {
  margin-bottom: .65rem;
  color: var(--accent-light);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.modalidade-body h3 {
  margin-bottom: .75rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 400;
}
.modalidade-body > p:not(.modalidade-label) {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}
.modalidade-body a {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--accent-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.modalidade-body a:hover { color: var(--white); }
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.experiencia-card {
  background: var(--light);
  border: 1px solid rgba(33,65,64,.2);
  border-radius: 0;
  padding: clamp(1.6rem,2.8vw,2.4rem);
  min-height: 235px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1rem;
  row-gap: 1.35rem;
  align-items: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.experiencia-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent 75%);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.experiencia-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(33,65,64,.5); }
.experiencia-card:hover::before { transform: scaleX(1); }
.experiencia-card--wide { grid-column: span 2; }
.experiencia-icon {
  width: 52px; height: 52px; border-radius: 0;
  background: rgba(33,65,64,.08);
  border: 1px solid rgba(33,65,64,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.experiencia-card h3 {
  font-size: .9rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .055em;
}
.experiencia-card p {
  grid-column: 1 / -1;
  align-self: start;
  font-size: .84rem;
  color: var(--muted);
}

/* ─── MODALIDADES (cards com imagem) ─────── */
.destinos-section {
  background: linear-gradient(160deg, #2c5654 0%, #214140 55%, #17302f 100%);
}
.destinos-section .label { color: var(--accent-light); }
.destinos-section h2 { color: rgba(255,255,255,.96); max-width: 600px; margin-top: .5rem; }
.destinos-section .section-intro { color: rgba(255,255,255,.68); }
.destinos-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 1.4rem;
}
.destino-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.destino-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(0,0,0,.35); border-color: rgba(201,211,207,.35); }
.destino-img-wrap {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.destino-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.destino-card:hover .destino-img-wrap img { transform: scale(1.06); }
.destino-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11,25,24,.55) 0%, transparent 55%);
}
.destino-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.destino-region {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-light);
}
.destino-body h3 {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 400; color: rgba(255,255,255,.96);
}
.destino-body > p { font-size: .84rem; color: rgba(255,255,255,.68); flex: 1; }
.destino-cta {
  margin-top: .6rem;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-light);
  transition: color .25s, transform .2s;
  align-self: flex-start;
}
.destino-cta:hover { color: #fff; transform: translateX(3px); }

/* ─── CUIDADO NOS DETALHES (featured) ────── */
.hoteis-section { background: var(--light); }
.hoteis-section h2 { max-width: 640px; margin-top: .5rem; }
.hotel-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 1rem;
}
.hotel-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/3;
}
.hotel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
  transition: transform .7s cubic-bezier(.25,.8,.25,1);
}
.hotel-img-wrap:hover img { transform: scale(1.04); }
.hotel-location {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .6rem;
}
.hotel-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400; color: var(--dark); margin-bottom: 1rem;
}
.hotel-content p + p { margin-top: .9rem; }
.hotel-detail { font-size: .84rem; }
.hotel-content .btn { margin-top: 1.6rem; }

/* ─── SOBRE ──────────────────────────────── */
.sobre-section {
  background: linear-gradient(160deg, #2c5654 0%, #214140 55%, #17302f 100%);
}
.sobre-section .label { color: var(--accent-light); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 5rem; align-items: center;
}
.sobre-img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 3/4;
}
.sobre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  border-radius: 20px; display: block;
  box-shadow: var(--shadow-md);
}
.sobre-text h2 { color: rgba(255,255,255,.96); margin-bottom: 1.2rem; margin-top: .4rem; }
.sobre-text p { color: rgba(255,255,255,.72); }
.sobre-text p + p { margin-top: .9rem; }
.sobre-highlight {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem;
  border: 1px solid rgba(201,211,207,.25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(201,211,207,.08) 100%);
  position: relative; overflow: hidden;
}
.sobre-highlight strong {
  display: block; font-family: var(--serif); font-size: 1.15rem;
  font-weight: 400; color: var(--accent-light); margin-bottom: .3rem;
}
.sobre-highlight span { display: block; font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.sobre-text .btn { margin-top: .5rem; }
.sobre-text .btn-primary { background: var(--white); color: var(--primary); }
.sobre-text .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(255,255,255,.2); }

/* ─── ATENDIMENTO / CONTATO ──────────────── */
.local-section { background: var(--white); border-top: 1px solid var(--light-mid); }
.local-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
}
.local-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: .5rem; margin-bottom: 1.2rem;
}
.local-address {
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.local-address-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.4rem;
  background: rgba(33,65,64,.04);
  border: 1px solid rgba(33,65,64,.12);
  border-radius: 12px;
  font-size: .88rem; color: var(--dark);
  font-weight: 500;
  transition: border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.local-address-item:hover { border-color: rgba(33,65,64,.4); background: rgba(33,65,64,.07); }
.local-address-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.local-address-item span { line-height: 1.6; }
.local-address-item a { transition: color .25s; }
.local-address-item a:hover { color: var(--primary); }

/* ─── AGENDA / CALENDÁRIO ────────────────── */
.agenda-section { background: var(--light); border-top: 1px solid var(--light-mid); }
.agenda-section h2 { max-width: 640px; margin-top: .5rem; }

.agenda-modalidade {
  display: inline-flex; gap: .4rem;
  padding: .35rem;
  background: rgba(33,65,64,.06);
  border: 1px solid rgba(33,65,64,.12);
  border-radius: 100px;
  margin-bottom: 2.4rem;
}
.modalidade-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.3rem;
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: background .25s, color .25s, box-shadow .25s;
}
.modalidade-btn svg { flex-shrink: 0; }
.modalidade-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(33,65,64,.28);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Calendar */
.agenda-calendar {
  background: #fff;
  border: 1px solid rgba(33,65,64,.12);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-month {
  font-family: var(--serif);
  font-size: 1.2rem; color: var(--primary);
  text-transform: capitalize; letter-spacing: .01em;
}
.cal-nav {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: rgba(33,65,64,.06);
  transition: background .2s, color .2s;
}
.cal-nav:hover { background: var(--primary); color: #fff; }
.cal-nav:disabled { opacity: .3; pointer-events: none; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: .3rem; margin-bottom: .5rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .64rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  padding: .3rem 0;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: .3rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 12px;
  font-size: .9rem; font-weight: 500;
  color: var(--dark);
  background: transparent;
  transition: background .2s, color .2s, transform .15s;
}
.cal-day.empty { pointer-events: none; }
.cal-day.available { color: var(--primary); font-weight: 600; }
.cal-day.available::after {
  content: ''; position: absolute; bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}
.cal-day.available:hover { background: rgba(33,65,64,.1); transform: translateY(-1px); }
.cal-day.unavailable { color: rgba(33,65,64,.28); pointer-events: none; }
.cal-day.past { color: rgba(33,65,64,.2); pointer-events: none; }
.cal-day.selected {
  background: var(--primary); color: #fff;
}
.cal-day.selected::after { background: #fff; }

.cal-legend {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(33,65,64,.1);
}
.legend-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--muted);
}
.legend-item i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.legend-item .dot-free { background: var(--primary); }
.legend-item .dot-sel  { background: var(--accent); }
.legend-item .dot-none { background: rgba(33,65,64,.22); }

/* Slots (à lateral no desktop) */
.agenda-slots {
  background: #fff;
  border: 1px solid rgba(33,65,64,.12);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: sticky; top: 90px;
}
.slots-head {
  font-family: var(--serif);
  font-size: 1.15rem; color: var(--primary);
  margin-bottom: .3rem;
}
.slots-sub {
  font-size: .8rem; color: var(--muted);
  margin-bottom: 1.2rem;
}
.slots-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
  min-height: 40px;
}
.slot-btn {
  padding: .7rem .5rem;
  border-radius: 12px;
  border: 1px solid rgba(33,65,64,.16);
  background: rgba(33,65,64,.03);
  font-size: .88rem; font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, background .2s, color .2s, transform .15s;
}
.slot-btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.slot-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-btn.taken {
  color: rgba(33,65,64,.3);
  text-decoration: line-through;
  pointer-events: none;
  background: rgba(33,65,64,.02);
  border-style: dashed;
}
.slots-empty {
  grid-column: 1 / -1;
  font-size: .84rem; color: var(--muted);
  padding: .6rem 0;
}
.slots-summary {
  margin-top: 1.2rem; padding: .9rem 1rem;
  background: rgba(33,65,64,.05);
  border: 1px solid rgba(33,65,64,.12);
  border-radius: 12px;
  font-size: .84rem; color: var(--dark); line-height: 1.7;
}
.slots-summary strong { color: var(--primary); font-weight: 600; }
.agenda-confirm {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; margin-top: 1.2rem;
  padding: .95rem 1.2rem;
  border-radius: 100px;
  background: #25D366; color: #fff;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .3s, transform .2s, box-shadow .3s, opacity .2s;
}
.agenda-confirm:hover:not(:disabled) {
  background: #1fb355; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
}
.agenda-confirm:disabled { opacity: .4; pointer-events: none; }
.slots-note {
  font-size: .68rem; color: var(--muted);
  text-align: center; margin-top: .9rem; letter-spacing: .02em;
}

/* ─── DORES / IDENTIFICAÇÃO ──────────────── */
.problemas-section { background: var(--white); }
.problemas-showcase {
  position: relative;
  min-height: 760px;
}
.problemas-route {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 0;
  width: 31%;
  height: 28%;
  border-top: 2px dashed rgba(33,65,64,.38);
  border-left: 2px dashed rgba(33,65,64,.38);
  border-bottom: 2px dashed rgba(33,65,64,.38);
}
.problemas-route::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -8px;
  border-left: 13px solid rgba(33,65,64,.5);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.problemas-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(58%, 690px);
  height: 82%;
  overflow: hidden;
}
.problemas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.problemas-side-label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 4%;
  width: 68px;
  height: 300px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problemas-side-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .16em;
  white-space: nowrap;
}
.problemas-card {
  position: absolute;
  z-index: 1;
  left: 2%;
  bottom: 0;
  width: min(56%, 680px);
  padding: clamp(2rem,3.2vw,3.3rem);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(33,65,64,.13);
}
.problemas-card h2 {
  max-width: 580px;
  margin-top: .35rem;
  font-size: clamp(1.8rem,3vw,2.9rem);
}
.ponte-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem,1.55vw,1.25rem);
  color: var(--primary);
  text-align: left;
  max-width: 600px;
  margin: 1.35rem 0 2rem;
  line-height: 1.5;
}
.problemas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .78rem;
}
.problemas-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--muted);
}
.problemas-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .03rem;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(33,65,64,.48);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .68rem;
  line-height: 1;
}
/* ─── BENEFÍCIOS / TRANSFORMAÇÃO ─────────── */
.beneficios-section {
  background: linear-gradient(160deg, #2c5654 0%, #214140 55%, #17302f 100%);
  overflow: hidden;
}
.beneficios-stage {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
}
.beneficios-image {
  position: absolute;
  left: 0;
  top: 0;
  width: min(38%, 430px);
  height: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 18px;
}
.beneficios-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.beneficios-card {
  position: relative;
  z-index: 1;
  width: min(68%, 760px);
  margin-left: 30%;
  padding: clamp(2.2rem,4vw,3.6rem);
  background: linear-gradient(160deg, #2c5654 0%, #214140 55%, #17302f 100%);
  border-radius: 42px 0 0 0;
  box-shadow: none;
}
.beneficios-card .label { color: var(--accent-light); }
.beneficios-card h2 {
  color: rgba(255,255,255,.96);
  max-width: 610px;
  margin-top: .35rem;
  font-size: clamp(1.85rem,3.2vw,3rem);
}
.beneficios-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .72rem 2rem;
  margin: 1.8rem 0 2rem;
}
.beneficios-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.beneficios-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-light);
  font-weight: 700;
  font-size: .78rem;
}
.beneficios-section .btn-primary { background: var(--white); color: var(--primary); }
.trajeto-list {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: trajeto;
}
.trajeto-list li {
  padding-left: 2.6rem;
  counter-increment: trajeto;
}
.trajeto-list li::before {
  content: counter(trajeto, decimal-leading-zero);
  top: .05rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}
.trajeto-list strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
}
.trajeto-list p {
  color: rgba(255,255,255,.74);
  font-size: .82rem;
  line-height: 1.65;
}
.beneficios-section .btn-primary:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(255,255,255,.2); }
/* ─── DEPOIMENTOS ────────────────────────── */
.depoimentos-section {
  background: var(--light);
  border-top: 1px solid var(--light-mid);
  overflow: hidden;
}
.depoimentos-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.depoimentos-section h2 { margin-top: .5rem; }
.depoimentos-section .section-intro { max-width: 620px; }
.google-rating {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: .7rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(33,65,64,.1);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(21,48,47,.08);
}
.google-wordmark {
  grid-row: 1 / 3;
  font: 600 1.28rem/1 Arial, sans-serif;
  letter-spacing: -.09em;
  padding-right: .08em;
}
.google-wordmark b { font-weight: 600; }
.google-wordmark b:nth-child(1), .google-wordmark b:nth-child(4) { color: #4285f4; }
.google-wordmark b:nth-child(2), .google-wordmark b:nth-child(6) { color: #ea4335; }
.google-wordmark b:nth-child(3) { color: #fbbc05; }
.google-wordmark b:nth-child(5) { color: #34a853; }
.rating-score { font-size: 1rem; font-weight: 700; color: var(--dark); }
.rating-stars, .card-rating { color: #f5aa18; letter-spacing: .1em; }
.rating-stars { font-size: .75rem; }
.google-rating small {
  grid-column: 1 / -1;
  margin-top: .5rem;
  color: var(--muted);
  font-size: .62rem;
  text-align: right;
}
.google-review-link {
  grid-column: 1 / -1;
  margin-top: .75rem;
  padding: .65rem .9rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.google-review-link:hover { background: var(--primary-light); transform: translateY(-1px); }
.depoimentos-carousel {
  width: 100%;
  overflow: hidden;
  padding: .8rem 0 1.8rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.depoimentos-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: depoimentos-marquee 42s linear infinite;
  will-change: transform;
}
.depoimentos-carousel:hover .depoimentos-track { animation-play-state: paused; }
.depoimentos-group { display: flex; gap: 1rem; }
.depoimento-card {
  width: clamp(280px, 30vw, 380px);
  min-height: 220px;
  background: #fff;
  border: 1px solid rgba(33,65,64,.1);
  border-radius: 18px;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 14px 36px rgba(21,48,47,.09);
}
.card-rating { font-size: .82rem; }
.depoimento-texto {
  flex: 1;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}
.depoimento-autor {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
}
@keyframes depoimentos-marquee {
  to { transform: translateX(calc(-50% - .5rem)); }
}
@media (prefers-reduced-motion: reduce) {
  .depoimentos-track { animation: none; }
  .depoimentos-carousel { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}
/* ─── FAQ ────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section h2 { margin-top: .5rem; }
.faq-list { max-width: 780px; margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid rgba(33,65,64,.14);
  padding: 1.3rem 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .96rem; font-weight: 600; color: var(--dark);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 1.3rem; font-weight: 400; color: var(--primary);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--primary); }
.faq-item p {
  margin-top: .9rem; font-size: .88rem; line-height: 1.8;
  color: var(--muted); max-width: 680px;
}

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background: linear-gradient(145deg, #0b1918 0%, #214140 45%, #17302f 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,211,207,.16), transparent 65%);
  pointer-events: none;
}
.cta-final .label { color: rgba(255,255,255,.6); }
.cta-final h2 { color: var(--white); max-width: 700px; margin: .5rem auto 1.2rem; }
.cta-final > .container > p { color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 2.8rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-final .btn-outline { border-color: rgba(255,255,255,.4); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: linear-gradient(145deg, #071211 0%, #0b1918 60%, #17302f 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: clamp(4rem,7vw,7rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before,
footer::after {
  content: '';
  position: absolute;
  bottom: 3rem;
  width: 280px;
  height: 180px;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(201,211,207,.8) 1.5px, transparent 1.7px);
  background-size: 13px 13px;
  pointer-events: none;
}
footer::before { left: -70px; transform: rotate(-12deg); }
footer::after { right: -70px; transform: rotate(12deg); }
footer > .container { position: relative; z-index: 1; }
.footer-statement {
  margin-bottom: clamp(3.5rem,7vw,6rem);
  overflow: hidden;
  width: 100%;
  margin-left: 0;
}
.footer-statement-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: footerStatementScroll 24s linear infinite;
}
.footer-statement span {
  display: block;
  flex-shrink: 0;
  padding-right: clamp(3rem,7vw,8rem);
  font-family: var(--serif);
  font-size: clamp(2.4rem,5.2vw,5rem);
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -.025em;
  white-space: nowrap;
  color: rgba(255,255,255,.09);
}
@keyframes footerStatementScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .75fr 1fr;
  gap: clamp(2rem,4vw,4.5rem);
  align-items: start;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.7); max-width: 280px; line-height: 1.78; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; background: #25D366; color: var(--white);
  padding: .65rem 1.25rem; border-radius: 100px; font-size: .76rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .67rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
  margin-bottom: 1.35rem;
}
.footer-col a,
.footer-col address span {
  font-size: .82rem; color: rgba(255,255,255,.7);
  display: block; line-height: 2; font-style: normal; transition: color .25s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: .5rem;
}
.footer-credit {
  color: rgba(255,255,255,.42);
  transition: color .25s;
}
.footer-credit:hover { color: rgba(255,255,255,.78); }

/* ─── BOTÃO FLUTUANTE BOT ────────────────── */
#float-bot {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s, box-shadow .3s;
  pointer-events: none; outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 16px rgba(16,34,31,.35);
}
#float-bot.vis  { opacity: 1; transform: translateY(0); pointer-events: all; }
#float-bot.hide { opacity: 0 !important; transform: translateY(16px) !important; pointer-events: none !important; }
#float-bot:hover { transform: translateY(-3px) !important; }
.bot-avatar {
  width: 34px; height: 34px; min-width: 34px; min-height: 34px;
  border-radius: 0;
  object-fit: contain;
  display: block; pointer-events: none; position: relative; z-index: 2;
}
#float-bot::before, #float-bot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--primary); opacity: 0;
  animation: radar-pulse 2.4s ease-out infinite; pointer-events: none; z-index: 1;
}
#float-bot::after { animation-delay: 1.2s; }
@keyframes radar-pulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(2.2);opacity:0} }

/* ─── WEBCHAT WIDGET ─────────────────────── */
#kore-btn { display: none !important; }

/* ─── SPLASH CURSOR CANVAS ───────────────── */
#fluid {
  position: fixed; inset: 0; z-index: 9999;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}

/* ─── MAGIC BENTO BORDER GLOW ───────────── */
.experiencia-card,
.destino-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight,
.destino-img-wrap {
  --mouse-x: -999px;
  --mouse-y: -999px;
}
.experiencia-card,
.hotel-img-wrap,
.sobre-img-wrap,
.local-address-item,
.sobre-highlight { position: relative; }

/* Glow claro/pedra para cards de vidro escuro */
.destino-card::after,
.sobre-img-wrap::after,
.sobre-highlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(226, 233, 230, 1)  0%,
    rgba(201, 211, 207, .5) 42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* Glow verde para cards de fundo claro */
.experiencia-card::after,
.hotel-img-wrap::after,
.local-address-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: radial-gradient(
    336px circle at var(--mouse-x) var(--mouse-y),
    rgba(44, 86, 84, .9)   0%,
    rgba(33, 65, 64, .45)  42%,
    transparent             66%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 2;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px) {
  .experiencia-card--wide { grid-column: span 2; }
}

@media(max-width:1100px) {
  .hotel-featured { grid-template-columns: 1fr; gap: 3rem; }
  .local-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media(max-width:1024px) {
  .experiencias-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main { grid-row: span 2; }
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(56vw,480px); top: clamp(5rem,14vh,8rem); }
  /* Agenda: horários abaixo do calendário no tablet/móvel */
  .agenda-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .agenda-slots { position: static; }
  .beneficios-stage { min-height: 650px; }
  .beneficios-image { width: 43%; }
  .beneficios-card { width: 72%; margin-left: 26%; }
  .beneficios-list { gap: .72rem 1.4rem; }
  .problemas-showcase { min-height: 790px; }
  .problemas-image { width: 64%; height: 72%; }
  .problemas-card { left: 2%; width: 74%; }
  .problemas-list { gap: .78rem; }
}

@media(max-width:768px) {
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { padding: 0 1.2rem; gap: .8rem; }
  .logo-light, .logo-dark { height: 36px; }
  .header-cta { padding: .6rem 1rem; font-size: .68rem; }
  .hamburger { flex-shrink: 0; }

  .hero-sequence { height: 180vh; }
  .hero-content { top: auto; bottom: clamp(3.5rem,7vh,6rem); left: 1.2rem; right: 1.2rem; max-width: 100%; }
  .hero-label { font-size: .55rem; }
  .hero-h1 { font-size: clamp(1.8rem,6vw,2.4rem); }
  .hero-sub { font-size: .84rem; }
  .hero-actions { gap: .6rem; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: .68rem 1.3rem; font-size: .68rem; }

  .experiencias-grid, .destinos-grid, .modalidades-grid { grid-template-columns: 1fr; }
  .experiencia-card--wide { grid-column: span 1; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-wrap { aspect-ratio: 4/5; width: 100%; max-width: 320px; margin: 0 auto; }
  .hotel-featured { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  #float-bot { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .bot-avatar { width: 30px; height: 30px; min-width: 30px; min-height: 30px; }
  .agenda-calendar, .agenda-slots { padding: 1.2rem; }
  .depoimentos-heading { align-items: flex-start; flex-direction: column; }
  .google-rating { width: 100%; max-width: 320px; }
  .depoimento-card { width: min(85vw, 340px); }
  
  .beneficios-stage {
    min-height: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }
  .beneficios-image {
    position: relative;
    width: 100%;
    height: clamp(240px, 45vw, 320px);
    border-radius: 20px 20px 0 0;
    margin-bottom: -24px;
    z-index: 1;
  }
  .beneficios-card {
    position: relative;
    width: 100%;
    margin-left: 0;
    padding: clamp(1.8rem, 5vw, 2.5rem) clamp(1.2rem, 4vw, 1.8rem);
    border-radius: 24px 24px 0 0;
    z-index: 2;
  }
  .beneficios-list { grid-template-columns: 1fr; gap: .72rem; }
  .footer-statement { margin-bottom: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .footer-main { grid-column: 1 / -1; grid-row: auto; }
  
  .problemas-showcase {
    min-height: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }
  .problemas-route { display: none; }
  .problemas-image {
    position: relative;
    width: 100%;
    height: clamp(240px, 45vw, 320px);
    border-radius: 20px 20px 0 0;
    margin-bottom: -24px;
    z-index: 1;
  }
  .problemas-side-label {
    display: none;
  }
  .problemas-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-left: 0;
    padding: clamp(1.8rem, 5vw, 2.5rem) clamp(1.2rem, 4vw, 1.8rem);
    border-radius: 24px;
    z-index: 2;
  }
  .problemas-card h2 { font-size: clamp(1.75rem,5.5vw,2.4rem); }
  .problemas-list { gap: .9rem; }
  .ponte-quote { margin: 1.1rem 0 1.6rem; }
  .faq-item summary { font-size: .9rem; }
}

@media(max-width:540px) {
  .header-cta { display: none; }
  .hero-actions .btn { padding: .6rem 1rem; font-size: .64rem; }
  .experiencia-card { padding: 1.6rem 1.4rem; }
  .destino-body { padding: 1.3rem 1.3rem 1.5rem; }
  .agenda-modalidade { width: 100%; }
  .modalidade-btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media(max-width:420px) {
  .hero-content { left: 1rem; right: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .experiencia-card { padding: 1.4rem 1.2rem; }
  h2 { font-size: clamp(1.6rem,5vw,2.2rem); }
  .container { padding: 0 1rem; }
  .slots-list { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:360px) {
  .slots-list { grid-template-columns: 1fr; }
  .cal-days { gap: 1px; }
  .cal-day { font-size: .78rem; border-radius: 6px; }
  .hero-h1 { font-size: 1.65rem; }
  .btn { padding: .75rem 1.2rem; font-size: .66rem; }
}

@media(prefers-reduced-motion:reduce) {
  .footer-statement-track { animation: none; }
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════
   ASSISTENTE MATHEUS VELHO — Chat widget
══════════════════════════════════════════════════════ */
#vip-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: min(360px, calc(100vw - 2rem));
  max-height: 520px;
  background: var(--green-950);
  border: 1px solid rgba(201,211,207,.3);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(201,211,207,.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}
#vip-chat.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
#vip-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem .9rem 1.1rem;
  background: linear-gradient(135deg, #17302f 0%, #214140 100%);
  border-bottom: 1px solid rgba(201,211,207,.22);
  flex-shrink: 0;
}
#vip-chat-identity { display: flex; align-items: center; gap: .7rem; }
#vip-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,211,207,.35);
  flex-shrink: 0;
}
#vip-chat-name {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
}
#vip-chat-status {
  font-size: .68rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .1rem;
}
#vip-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 6px #4ade80;
}
#vip-chat-close {
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.8);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
#vip-chat-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Messages */
#vip-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,211,207,.3) transparent;
}
#vip-chat-msgs::-webkit-scrollbar { width: 4px; }
#vip-chat-msgs::-webkit-scrollbar-thumb { background: rgba(201,211,207,.3); border-radius: 4px; }

.fcm-row {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  gap: .4rem;
}
.fcm-bot { align-self: flex-start; }
.fcm-user { align-self: flex-end; }

.fcm-bubble {
  padding: .65rem .85rem;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.6;
  word-break: break-word;
}
.fcm-bot .fcm-bubble {
  background: #17302f;
  color: #e7edeb;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.fcm-user .fcm-bubble {
  background: linear-gradient(135deg, #214140, #17302f);
  border: 1px solid rgba(201,211,207,.3);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
}

/* Typing indicator */
.fcm-typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .7rem .9rem !important;
}
.fcm-typing-bubble span {
  width: 7px; height: 7px;
  background: #7d8a85;
  border-radius: 50%;
  animation: fcm-bounce .9s infinite;
}
.fcm-typing-bubble span:nth-child(2) { animation-delay: .15s; }
.fcm-typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes fcm-bounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

/* CTA button inside chat */
.fcm-cta {
  background: rgba(201,211,207,.12);
  border: 1px solid rgba(201,211,207,.4);
  color: var(--accent-light);
  font-size: .74rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
  align-self: flex-start;
  letter-spacing: .01em;
}
.fcm-cta:hover { background: rgba(201,211,207,.28); color: #fff; }

/* Input area */
#vip-chat-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #071211;
  flex-shrink: 0;
}
#vip-chat-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .82rem;
  color: #e7edeb;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s;
}
#vip-chat-input::placeholder { color: #56645f; }
#vip-chat-input:focus { border-color: rgba(201,211,207,.6); }
#vip-chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(160deg, #2c5654 0%, #214140 55%, #17302f 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
#vip-chat-send:hover { background: var(--primary-light); transform: scale(1.05); }
#vip-chat-send:active { transform: scale(.95); }

/* Mobile overlay backdrop */
#vip-chat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 598;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#vip-chat-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media(max-width:600px) {
  #vip-chat {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: min(85vh, 580px);
    max-height: calc(100vh - 40px);
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid rgba(201,211,207,.3);
    box-shadow: 0 -8px 40px rgba(0,0,0,.6);
    transform: translateY(100%);
    opacity: 1;
    transition: transform .35s cubic-bezier(.32,1,.23,1);
    z-index: 599;
  }
  #vip-chat.open {
    transform: translateY(0);
    opacity: 1;
  }
  #vip-chat::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    margin: .65rem auto .1rem;
    flex-shrink: 0;
  }
  #vip-chat-header {
    padding: .65rem 1rem .75rem;
  }
  #vip-chat-avatar {
    width: 36px;
    height: 36px;
  }
  #vip-chat-name { font-size: .9rem; }
  #vip-chat-msgs {
    padding: .85rem 1rem;
    gap: .55rem;
  }
  .fcm-bubble { font-size: .84rem; padding: .6rem .8rem; }
  #vip-chat-form {
    padding: .65rem .9rem;
    padding-bottom: max(.65rem, env(safe-area-inset-bottom));
  }
  #vip-chat-input { font-size: 16px; padding: .6rem .75rem; }
  #vip-chat-send { width: 42px; height: 42px; flex-shrink: 0; }
  .fcm-row { max-width: 90%; }
  #vip-chat-backdrop { display: block; }
}
