/* ============================================
   KEREN SOARES — Psicóloga | Especialista em TCC
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --primary:   #30445C;
  --secondary: #A9BAC8;
  --accent:    #46627E;
  --white:     #FFFFFF;
  --soft-bg:   #F5F1EC;
  --text:      #172537;
  --muted:     #5F6C78;
  --card:      #FFFFFF;
  --gold-soft: #E1E7EC;
  --pink-soft: #E9E4DE;
  --blue-soft: #EEF2F5;
  --border:    rgba(48,68,92,.22);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Manrope', system-ui, sans-serif;
  --shadow:    0 2px 12px rgba(23,37,55,.08);
  --shadow-md: 0 6px 28px rgba(23,37,55,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--soft-bg);
  color: var(--text);
  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; }
select { font-family: inherit; }

/* ─── Skip link ───────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent); color: var(--white);
  padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  font-size: .8rem; font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--text);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
p { font-size: .93rem; line-height: 1.78; 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; }

/* ─── 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;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(177,139,58,.32);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-soft);
  background: rgba(177,139,58,.18);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(circle at 50% 18%, rgba(233,221,190,.34), transparent 34%),
    linear-gradient(145deg, #30445C 0%, #46627E 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img { width: 120px; opacity: .9; filter: brightness(0) invert(1); }
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(233,221,190,.25);
  position: relative; overflow: hidden;
}
.loading-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: rgba(255,255,255,.7); transition: width .08s;
}
.loading-pct { font-size: .68rem; color: rgba(233,221,190,.7); letter-spacing: .1em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background:
    radial-gradient(circle at 50% 18%, rgba(233,221,190,.34), transparent 34%),
    linear-gradient(145deg, #30445C 0%, #46627E 100%);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img { display: none; }

/* ─── 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;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(245,249,254,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: .85rem 0;
  border-color: var(--border);
}
/* Fallback para navegadores sem backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  #header.scrolled { background: rgba(245,249,254,.99); }
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-light { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo-dark  { height: 38px; 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.2rem; }
nav.header-nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
nav.header-nav a:hover,
nav.header-nav a[aria-current="page"] { color: var(--gold-soft); }
#header .btn-primary { white-space: nowrap; }
#header.scrolled nav.header-nav a { color: var(--muted); }
#header.scrolled nav.header-nav a:hover { color: var(--primary); }
#header.scrolled .btn-primary { background: var(--accent); }

.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(--text); }
.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(--text);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
  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(2rem,5vw,2.8rem);
  font-weight: 300; color: var(--white); transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold-soft); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent); color: var(--white);
  padding: .8rem 2rem; border-radius: 100px; margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 800vh; }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#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(169,186,200,.72) 0%, rgba(194,168,141,.34) 42%, rgba(233,228,222,.18) 68%, transparent 85%),
    linear-gradient(to top,   rgba(169,186,200,.58) 0%, rgba(194,168,141,.18) 45%, transparent 70%);
}

.hero-content {
  position: absolute;
  bottom: clamp(5rem, 10vh, 9rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(38vw, 500px);
  z-index: 10;
}

.hero-label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: #30445C; margin-bottom: 1.4rem;
}
.hero-label::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: #30445C; flex-shrink: 0;
}
.hero-label { text-shadow: 0 1px 10px rgba(255,255,255,.55); }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -.01em;
  color: #26384C; margin-bottom: 1rem;
  text-shadow: 0 1px 14px rgba(255,255,255,.72);
}
.hero-h1 em { font-style: italic; display: block; color: #30445C; }

.hero-sub {
  font-size: .9rem; line-height: 1.75;
  color: rgba(23,37,55,.92); margin-bottom: .6rem;
  max-width: 340px;
  text-shadow: 0 1px 10px rgba(255,255,255,.65);
}
.hero-micro {
  font-size: .68rem; letter-spacing: .14em;
  color: rgba(48,68,92,.82); text-transform: uppercase;
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 8px rgba(255,255,255,.65);
}

.hero-actions {
  display: flex; align-items: center;
  gap: .75rem; flex-wrap: nowrap;
}
.hero-actions .btn {
  padding: .7rem 1.5rem;
  font-size: .7rem; letter-spacing: .1em;
  white-space: nowrap;
}
.hero-actions .btn-outline {
  border-color: rgba(48,68,92,.58);
  color: #26384C;
  background: rgba(255,255,255,.22);
}
.hero-actions .btn-outline:hover {
  border-color: #30445C;
  background: rgba(255,255,255,.42);
  color: #30445C;
}

.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(48,68,92,.65); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(48,68,92,.28); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold-soft);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: #30445C;
  padding: 1.2rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(52,46,42,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 0 -18px 40px rgba(52,46,42,.13);
}
.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 42s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.92); }
.marquee-content .dot { color: rgba(233,221,190,.6); font-size: .45rem; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── INTRODUÇÃO EMOCIONAL ───────────────── */
.atend-section { background: var(--white); }
.atend-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.atend-text .label { margin-bottom: 1rem; }
.atend-text h2 { margin-bottom: 1.4rem; }
.atend-text p + p { margin-top: .9rem; }
.impact-phrase {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic; color: var(--primary);
  margin: 1.8rem 0; line-height: 1.5;
}
.atend-cta { margin-top: 2rem; }
.atend-img {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  box-shadow: var(--shadow-md);
  background: var(--soft-bg);
}
.atend-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ─── COMO POSSO AJUDAR ──────────────────── */
.proc-section {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #F5F1EC 0%, #E9E4DE 100%);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}
.proc-photo {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  height: clamp(340px, 47vw, 560px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(48,68,92,.18);
}
.proc-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48,68,92,.04), rgba(48,68,92,.22));
}
.proc-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.proc-section > .container {
  position: relative;
  z-index: 3;
  margin-top: clamp(-190px, -15vw, -125px);
}
.proc-intro {
  width: min(620px, 78%);
  margin: 0 0 1.25rem clamp(0rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 12px;
  box-shadow: 0 20px 55px rgba(48,68,92,.2);
}
.proc-intro .label { margin-bottom: .8rem; color: var(--accent); }
.proc-intro h2 { max-width: 520px; margin-bottom: .8rem; }
.proc-intro > p:last-child { max-width: 530px; margin: 0; }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  position: relative;
}
.proc-card {
  background: linear-gradient(145deg, #E1E7EC 0%, #A9BAC8 100%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 16px;
  padding: 1.75rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(48,68,92,.2), inset 0 1px 0 rgba(255,255,255,.45);
}
.proc-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  top: -72px;
  right: -55px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.proc-card:hover {
  transform: none;
  box-shadow: 0 16px 35px rgba(48,68,92,.2), inset 0 1px 0 rgba(255,255,255,.45);
  border-color: rgba(255,255,255,.48);
}
.proc-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  color: #46627E;
  box-shadow: 0 6px 16px rgba(48,68,92,.11);
}
.proc-card h3 { margin-bottom: .05rem; color: #26384C; }
.proc-card p { font-size: .83rem; color: rgba(23,37,55,.84); flex: 1; }
.proc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.2rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(48,68,92,.28); color: #30445C;
  background: rgba(255,255,255,.45); transition: background .25s, color .25s;
  align-self: flex-start; margin-top: .3rem;
}
.proc-btn:hover { background: #30445C; color: var(--white); border-color: #30445C; }
.firefly-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.firefly-layer span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFF4B5;
  box-shadow: 0 0 7px #FFF4B5, 0 0 15px rgba(255,226,112,.9), 0 0 28px rgba(255,226,112,.5);
  opacity: 0;
  animation: fireflyGlow 4.8s ease-in-out infinite, fireflyFloat 8s ease-in-out infinite;
}
.firefly-layer span:nth-child(1)  { left: 7%;  top: 25%; animation-delay: -.5s, -1s; }
.firefly-layer span:nth-child(2)  { left: 18%; top: 58%; animation-delay: -2.2s, -3.7s; transform: scale(.75); }
.firefly-layer span:nth-child(3)  { left: 29%; top: 17%; animation-delay: -3.1s, -5.2s; }
.firefly-layer span:nth-child(4)  { left: 41%; top: 69%; animation-delay: -1.4s, -2.6s; transform: scale(.65); }
.firefly-layer span:nth-child(5)  { left: 52%; top: 31%; animation-delay: -4s, -6.1s; }
.firefly-layer span:nth-child(6)  { left: 63%; top: 62%; animation-delay: -2.7s, -.8s; transform: scale(.7); }
.firefly-layer span:nth-child(7)  { left: 74%; top: 20%; animation-delay: -1.1s, -4.4s; }
.firefly-layer span:nth-child(8)  { left: 86%; top: 49%; animation-delay: -3.6s, -2s; transform: scale(.8); }
.firefly-layer span:nth-child(9)  { left: 93%; top: 73%; animation-delay: -2s, -6.8s; }
.firefly-layer span:nth-child(10) { left: 12%; top: 82%; animation-delay: -4.5s, -3s; transform: scale(.6); }
.firefly-layer span:nth-child(11) { left: 57%; top: 84%; animation-delay: -.8s, -5.5s; }
.firefly-layer span:nth-child(12) { left: 80%; top: 88%; animation-delay: -3.3s, -1.7s; transform: scale(.65); }
.firefly-layer span:nth-child(13) { left: 4%;  top: 44%; animation-delay: -1.8s, -5.8s; transform: scale(.55); }
.firefly-layer span:nth-child(14) { left: 23%; top: 38%; animation-delay: -4.2s, -2.3s; transform: scale(.85); }
.firefly-layer span:nth-child(15) { left: 34%; top: 91%; animation-delay: -.9s, -7.1s; transform: scale(.6); }
.firefly-layer span:nth-child(16) { left: 46%; top: 12%; animation-delay: -2.9s, -4.9s; }
.firefly-layer span:nth-child(17) { left: 68%; top: 42%; animation-delay: -3.8s, -1.2s; transform: scale(.55); }
.firefly-layer span:nth-child(18) { left: 90%; top: 28%; animation-delay: -1.3s, -6.4s; transform: scale(.75); }
.firefly-layer span:nth-child(19) { left: 15%; top: 68%; animation-delay: -3.5s, -4.1s; }
.firefly-layer span:nth-child(20) { left: 38%; top: 51%; animation-delay: -2.1s, -7.4s; transform: scale(.7); }
.firefly-layer span:nth-child(21) { left: 59%; top: 73%; animation-delay: -4.6s, -3.2s; transform: scale(.8); }
.firefly-layer span:nth-child(22) { left: 72%; top: 95%; animation-delay: -1.6s, -5.1s; transform: scale(.55); }
.firefly-layer span:nth-child(23) { left: 84%; top: 64%; animation-delay: -3s, -7.7s; }
.firefly-layer span:nth-child(24) { left: 97%; top: 40%; animation-delay: -.6s, -2.9s; transform: scale(.65); }
.firefly-layer span:nth-child(25) { left: 2%;  top: 12%; animation-delay: -2.4s, -4.8s; transform: scale(.7); }
.firefly-layer span:nth-child(26) { left: 9%;  top: 57%; animation-delay: -4.1s, -1.6s; }
.firefly-layer span:nth-child(27) { left: 20%; top: 8%;  animation-delay: -1.7s, -6.2s; transform: scale(.55); }
.firefly-layer span:nth-child(28) { left: 27%; top: 77%; animation-delay: -3.9s, -3.3s; transform: scale(.8); }
.firefly-layer span:nth-child(29) { left: 33%; top: 29%; animation-delay: -.7s, -5.7s; }
.firefly-layer span:nth-child(30) { left: 43%; top: 43%; animation-delay: -2.6s, -7.2s; transform: scale(.6); }
.firefly-layer span:nth-child(31) { left: 49%; top: 94%; animation-delay: -4.4s, -2.1s; transform: scale(.75); }
.firefly-layer span:nth-child(32) { left: 55%; top: 7%;  animation-delay: -1.2s, -4.3s; }
.firefly-layer span:nth-child(33) { left: 62%; top: 52%; animation-delay: -3.4s, -6.9s; transform: scale(.55); }
.firefly-layer span:nth-child(34) { left: 69%; top: 78%; animation-delay: -2s, -3.6s; transform: scale(.85); }
.firefly-layer span:nth-child(35) { left: 76%; top: 34%; animation-delay: -4.7s, -1.4s; }
.firefly-layer span:nth-child(36) { left: 82%; top: 11%; animation-delay: -.9s, -5.4s; transform: scale(.65); }
.firefly-layer span:nth-child(37) { left: 88%; top: 83%; animation-delay: -3.2s, -7.5s; }
.firefly-layer span:nth-child(38) { left: 95%; top: 17%; animation-delay: -1.5s, -2.8s; transform: scale(.55); }
.firefly-layer span:nth-child(39) { left: 31%; top: 61%; animation-delay: -4.3s, -4.6s; transform: scale(.7); }
.firefly-layer span:nth-child(40) { left: 71%; top: 58%; animation-delay: -2.8s, -6.5s; transform: scale(.6); }
.firefly-layer .cursor-firefly {
  width: var(--cursor-size, 7px);
  height: var(--cursor-size, 7px);
  opacity: 1;
  animation: cursorFirefly 1.45s ease-out forwards;
}
@keyframes cursorFirefly {
  0% { opacity: 0; translate: 0 0; scale: .35; }
  20% { opacity: 1; scale: 1; }
  100% { opacity: 0; translate: var(--drift-x, 18px) var(--drift-y, -55px); scale: .2; }
}
@keyframes fireflyGlow {
  0%, 100% { opacity: .08; filter: brightness(.8); }
  45%, 60% { opacity: .95; filter: brightness(1.3); }
}
@keyframes fireflyFloat {
  0%, 100% { translate: 0 0; }
  30% { translate: 14px -20px; }
  65% { translate: -10px -35px; }
}
/* ─── SEÇÃO VISUAL DE IMPACTO ────────────── */
.toque-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(109,135,161,.48), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(70,98,126,.42), transparent 34%),
    linear-gradient(145deg, #22364D 0%, #30445C 52%, #1E3146 100%);
  box-shadow: inset 0 28px 70px rgba(17,34,51,.16), inset 0 -30px 80px rgba(17,34,51,.2);
}
.toque-inner .label { color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.toque-inner h2 { color: var(--white); max-width: 720px; margin-bottom: 1.4rem; }
.toque-inner h2 em { color: var(--gold-soft); font-style: italic; }
.toque-p { color: rgba(255,255,255,.9); max-width: 540px; margin-bottom: 3rem; }

.toque-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  max-height: 520px;
}
.mosaic-item { border-radius: 14px; overflow: hidden; min-height: 0; background: rgba(255,255,255,.1); }
.mosaic-large { grid-row: 1 / 3; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── COMO FUNCIONA A PSICOTERAPIA ──────── */
.steps-section {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #F5F1EC 0%, #E9E4DE 100%);
}
.steps-section > .container { position: relative; z-index: 3; }
.steps-section .label { margin-bottom: 1rem; color: var(--accent); }
.steps-section h2 { max-width: 620px; margin-bottom: 1rem; }
.steps-section > .container > p { max-width: 560px; margin-bottom: 2.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.step-card {
  min-height: 100%;
  background: linear-gradient(145deg, #E1E7EC 0%, #A9BAC8 100%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 16px;
  padding: 1.8rem 1.55rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(48,68,92,.2), inset 0 1px 0 rgba(255,255,255,.45);
}
.step-card::before {
  content: '';
  position: absolute;
  width: 125px;
  height: 125px;
  top: -76px;
  right: -58px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.step-card:hover {
  transform: none;
  box-shadow: 0 16px 35px rgba(48,68,92,.2), inset 0 1px 0 rgba(255,255,255,.45);
}
.step-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(48,68,92,.3);
  line-height: 1;
  margin-bottom: .65rem;
  display: block;
}
.step-card h3 { font-size: .95rem; margin-bottom: .55rem; color: #26384C; }
.step-card p { font-size: .85rem; color: rgba(23,37,55,.84); }
/* ─── SOBRE MIM ──────────────────────────── */
.sobre-section {
  position: relative;
  overflow: clip;
  background-color: #E9E4DE;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.22), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(48,68,92,.13), transparent 28%),
    radial-gradient(circle, transparent 20px, rgba(255,255,255,.12) 21px 23px, transparent 24px);
  background-size: auto, auto, 132px 132px;
  box-shadow: inset 0 24px 70px rgba(48,68,92,.08), inset 0 -28px 80px rgba(48,68,92,.1);
}
.sobre-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255,255,255,.1), transparent 38%, rgba(48,68,92,.05));
}
.sobre-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .78fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(48,68,92,.2), 0 2px 8px rgba(48,68,92,.08);
}
.sobre-text { order: 1; }
.sobre-img-wrap {
  order: 2;
  position: relative;
  border-radius: 6px;
  overflow: visible;
  aspect-ratio: 3/4;
  max-height: 480px;
  background: var(--soft-bg);
  box-shadow: 0 16px 36px rgba(48,68,92,.14);
}
.sobre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 6px;
  display: block;
}
.sobre-badge {
  position: absolute;
  bottom: 1rem; left: -1.15rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(169,186,200,.32);
  border-radius: 8px;
  padding: .8rem 1rem;
  box-shadow: 0 10px 26px rgba(48,68,92,.15);
  display: flex; flex-direction: column; gap: .12rem;
  backdrop-filter: blur(8px);
}
.sobre-badge-name {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 500;
  color: var(--text); display: block;
}
.sobre-badge-role {
  font-size: .65rem; color: var(--muted);
  letter-spacing: .04em; display: block;
}
.sobre-badge-crn {
  font-size: .65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
  display: block;
}
.sobre-text .label { margin-bottom: .8rem; color: var(--accent); }
.sobre-text h2 { margin-bottom: 1.2rem; }
.sobre-text p + p { margin-top: .8rem; }
.sobre-highlight {
  margin: 1.15rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(169,186,200,.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #F5F1EC 0%, #E9E4DE 100%);
}
.sobre-highlight strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: .2rem;
}
.sobre-highlight span {
  display: block;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--muted);
}
.sobre-quote {
  font-family: var(--serif);
  font-size: clamp(.98rem, 1.45vw, 1.18rem);
  font-style: italic;
  color: var(--accent);
  border-left: 2px solid #E9E4DE;
  padding-left: 1.1rem;
  margin: 1.5rem 0;
  line-height: 1.55;
}
.sobre-text .btn { margin-top: .25rem; }
/* ─── FAQ ────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section .label { margin-bottom: 1rem; }
.faq-section h2 { max-width: 500px; margin-bottom: 2.5rem; }
.faq-list { max-width: 740px; display: flex; flex-direction: column; gap: .6rem; }
details.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
details.faq-item[open] { border-color: rgba(177,139,58,.4); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .25s;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
details.faq-item[open] summary { background: rgba(177,139,58,.05); }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item summary:hover { background: rgba(177,139,58,.05); }
.faq-answer {
  padding: 0 1.5rem 1.4rem;
  font-size: .88rem;
  line-height: 1.78;
  color: var(--muted);
}

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background:
    radial-gradient(circle at 18% 16%, rgba(86,116,146,.42), transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(61,86,112,.52), transparent 36%),
    linear-gradient(145deg, #1C2F44 0%, #30445C 52%, #233A52 100%);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: inset 0 30px 80px rgba(13,29,45,.18), inset 0 -35px 90px rgba(13,29,45,.24);
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(70,98,126,.28) 0%, transparent 64%);
  pointer-events: none;
}
.cta-final .label { color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.cta-final h2 { color: var(--white); max-width: 620px; margin: 0 auto 1.4rem; }
.cta-final p { color: rgba(255,255,255,.92); max-width: 460px; margin: 0 auto 2.5rem; }
.cta-microcopy {
  font-size: .68rem; color: rgba(255,255,255,.72);
  margin-top: .8rem; letter-spacing: .08em;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.cta-microcopy::before {
  content: ''; display: inline-block;
  width: 16px; height: 1px; background: rgba(255,255,255,.5);
}

/* ─── CALENDAR / CONTATO ─────────────────── */
.calendar-section {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #F5F1EC 0%, #E9E4DE 100%);
}
.calendar-section > .container { position: relative; z-index: 3; }
.calendar-section .label { margin-bottom: 1rem; }
.calendar-section h2 { max-width: 500px; margin-bottom: 1rem; }
.calendar-section > .container > p { max-width: 500px; margin-bottom: 2.5rem; }
.cal-wrapper { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.4rem; align-items: stretch; }
.cal-box {
  background: linear-gradient(145deg, #E1E7EC 0%, #A9BAC8 100%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 16px; padding: 1.8rem;
  box-shadow: 0 16px 35px rgba(48,68,92,.2), inset 0 1px 0 rgba(255,255,255,.45);
}
.cal-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.cal-month { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--text); }
.cal-nav {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--soft-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: var(--muted); cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
}
.cal-nav:hover { border-color: var(--primary); color: var(--primary); background: rgba(177,139,58,.08); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: .3rem; }
.cal-wd { text-align: center; font-size: .6rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); padding: .3rem 0; text-transform: uppercase; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 500; border-radius: 8px; transition: all .2s;
  min-height: 36px;
}
.cal-day.empty { cursor: default; }
.cal-day.avail { background: var(--soft-bg); border: 1px solid var(--border); cursor: pointer; color: var(--text); }
.cal-day.avail:hover { border-color: var(--primary); background: rgba(177,139,58,.1); }
.cal-day.last { background: rgba(177,139,58,.12); border: 1px solid rgba(177,139,58,.4); color: var(--text); cursor: pointer; font-style: italic; }
.cal-day.last:hover { border-color: var(--primary); }
.cal-day.busy { color: rgba(109,100,96,.35); cursor: not-allowed; text-decoration: line-through; }
.cal-day.sel { background: var(--accent); border-color: var(--accent); color: var(--white); transform: scale(1.06); box-shadow: 0 2px 10px rgba(138,104,42,.35); }
.cal-legend { display: flex; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }
.cal-leg { display: flex; align-items: center; gap: .35rem; font-size: .65rem; color: var(--muted); }
.cal-dot { width: 7px; height: 7px; border-radius: 50%; }
.cal-dot.a { background: var(--primary); }
.cal-dot.l { background: rgba(177,139,58,.5); }
.cal-dot.b { background: rgba(109,100,96,.3); }
.slots-wrap { margin-top: 1.4rem; display: none; }
.slots-wrap.vis {
  display: block;
  margin-top: 1rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, #E1E7EC 0%, #A9BAC8 100%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(48,68,92,.16);
}
.slots-lbl { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; }
.slot {
  padding: .65rem .4rem; border-radius: 8px; font-size: .78rem; font-weight: 500;
  text-align: center; border: 1px solid var(--border);
  background: var(--white); cursor: pointer; transition: all .2s; color: var(--text);
}
.slot:hover:not(.s-busy) { border-color: var(--primary); background: rgba(177,139,58,.08); }
.slot.s-busy { color: rgba(109,100,96,.35); cursor: not-allowed; text-decoration: line-through; }
.slot.s-last { color: var(--text); border-color: rgba(177,139,58,.4); font-style: italic; }
.slot.s-sel { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* Booking form */
.book-wrap {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.8rem;
  background: linear-gradient(145deg, #E1E7EC 0%, #A9BAC8 100%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 16px;
  box-shadow: 0 16px 35px rgba(48,68,92,.2), inset 0 1px 0 rgba(255,255,255,.45);
}
.book-wrap h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: .2rem; }
.book-wrap > p { margin-bottom: .5rem; }
.book-summary {
  background: rgba(177,139,58,.08); border: 1px solid rgba(177,139,58,.28);
  border-radius: 10px; padding: 1.1rem 1.3rem; font-size: .83rem; display: none;
}
.book-summary.vis { display: block; }
.book-summary strong { color: var(--accent); }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: .68rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: .82rem 1rem; border: 1px solid var(--border);
  border-radius: 10px; background: var(--white);
  font-family: var(--sans); font-size: .88rem;
  color: var(--text); outline: none; transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none; appearance: none;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236D6460' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(177,139,58,.12);
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #46627E;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(109,100,96,.45); }
.field-opt { font-weight: 400; letter-spacing: 0; text-transform: none; opacity: .7; font-size: .65rem; }
.consent-field {
  display: flex; align-items: flex-start; gap: .75rem;
}
.consent-field input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: .1rem;
  accent-color: var(--accent);
  -webkit-appearance: auto; appearance: auto;
}
.consent-field label {
  font-size: .78rem; color: var(--muted);
  text-transform: none; letter-spacing: 0; font-weight: 400; line-height: 1.55;
}
.form-notice {
  font-size: .72rem; color: var(--muted);
  background: rgba(177,139,58,.06); border: 1px solid var(--border);
  border-radius: 8px; padding: .8rem 1rem; line-height: 1.6;
}
.honeypot-field { display: none !important; visibility: hidden; }

/* Tipo de Atendimento toggle */
.tipo-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: .3rem;
  background: var(--soft-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: .3rem;
}
.tipo-btn {
  padding: .7rem 1rem; border-radius: 8px; font-size: .78rem;
  font-weight: 600; letter-spacing: .04em; border: none;
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all .22s;
}
.tipo-btn.active {
  background: var(--white); color: var(--text);
  box-shadow: 0 1px 5px rgba(0,0,0,.09);
}
.tipo-btn:not(.active):hover { color: var(--text); }
.tipo-btn.active[data-tipo="Online"] { color: var(--primary); }

.book-btn {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; padding: 1rem 2rem;
  background: var(--accent); color: var(--white);
  border-radius: 100px; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .3s, transform .2s, box-shadow .3s;
  width: 100%; margin-top: .3rem;
}
.book-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(177,139,58,.32); }
.book-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.book-success {
  background: rgba(177,139,58,.07); border: 1px solid rgba(177,139,58,.28);
  border-radius: 14px; padding: 1.8rem; text-align: center; display: none;
}
.book-success.vis { display: block; }
.booking-success-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.book-success h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--primary); margin-bottom: .4rem; }
.book-success p { font-size: .83rem; }
.book-success .wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem; background: var(--accent); color: var(--white);
  padding: .75rem 1.6rem; border-radius: 100px; font-size: .8rem; font-weight: 600;
  transition: background .3s;
}
.book-success .wa-btn:hover { background: var(--primary); }
.book-micro { font-size: .68rem; color: var(--muted); margin-top: .5rem; opacity: .7; }
.cal-box.cal-loading { opacity: .55; pointer-events: none; transition: opacity .3s; }
.book-error {
  background: rgba(48,68,92,.07); border: 1px solid rgba(48,68,92,.22);
  border-radius: 10px; padding: .85rem 1.1rem;
  font-size: .8rem; color: #30445C; display: none; line-height: 1.4;
}
.book-error.vis { display: block; }

/* ─── AVISO DE EMERGÊNCIA ────────────────── */
.emergency-notice {
  background: rgba(177,139,58,.06);
  border-top: 1px solid rgba(177,139,58,.15);
  padding: 1.4rem 0;
}
.emergency-notice .container {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.emergency-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--primary);
  margin-top: .05rem;
}
.emergency-notice p {
  font-size: .78rem;
  line-height: 1.65;
  color: var(--muted);
}
.emergency-notice a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(255,255,255,.18), transparent 28%),
    radial-gradient(circle at 85% 100%, rgba(52,46,42,.18), transparent 34%),
    linear-gradient(135deg, #30445C 0%, #A9BAC8 52%, #46627E 100%);
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 3.5rem 0 2rem;
  box-shadow: inset 0 26px 60px rgba(52,46,42,.12);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.footer-logo-img { height: 52px; width: auto; margin-bottom: 1rem; opacity: .9; filter: brightness(0) invert(1); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.82); max-width: 260px; line-height: 1.7; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.2rem; background: #25D366; color: var(--white);
  padding: .6rem 1.2rem; border-radius: 100px; font-size: .75rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
}
.footer-col a, .footer-col address {
  font-size: .8rem; color: rgba(255,255,255,.82);
  display: block; line-height: 1.8; font-style: normal; transition: color .25s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .7rem; color: rgba(255,255,255,.66); flex-wrap: wrap; gap: .5rem;
}

/* ─── FLOATING CTA ───────────────────────── */
#float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
#float-cta.vis { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex; align-items: center; gap: .6rem;
  background: var(--accent); color: var(--white);
  padding: .82rem 1.5rem; border-radius: 100px;
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(138,104,42,.45);
  transition: background .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.float-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(177,139,58,.42); }

@media(min-width:769px){
  .sobre-section {
    min-height: 165vh;
    background-position: 0 0, 0 0, 0 0;
  }
  .sobre-section .container {
    position: sticky;
    top: clamp(1.5rem, 6vh, 4rem);
    width: 100%;
  }
}
/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1024px){
  .atend-grid, .cal-wrapper, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(55vw, 480px); }
  .sobre-grid { gap: 3rem; }
  .proc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proc-intro { width: min(620px, 86%); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:768px){
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { gap: .65rem; padding: 0 1rem; }
  .header-inner > a:first-child { flex: 0 0 82px; }
  .logo-light,
  .logo-dark {
    width: 82px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
  }
  #header .btn-primary {
    padding: .65rem 1rem;
    font-size: .62rem;
    letter-spacing: .08em;
    flex: 0 1 auto;
  }
  .hamburger { width: 24px; flex-shrink: 0; }

  .hero-sequence { height: 260vh; }

  .hero-content {
    bottom: clamp(4.5rem, 8vh, 7rem);
    left: 1.5rem; right: 1.5rem;
    max-width: 100%;
  }
  .hero-label { font-size: .58rem; letter-spacing: .2em; margin-bottom: .8rem; }
  .hero-h1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); margin-bottom: .8rem; line-height: 1.14; }
  .hero-sub { display: none; }
  .hero-micro { font-size: .6rem; margin-bottom: 1.2rem; }
  .hero-actions { flex-wrap: nowrap; gap: .5rem; }
  .hero-actions .btn { padding: .62rem .95rem; font-size: .62rem; letter-spacing: .07em; }

  .proc-grid, .steps-grid { grid-template-columns: 1fr; }
  .proc-photo { width: calc(100% - 2rem); height: 360px; }
  .proc-section > .container { margin-top: -90px; }
  .proc-intro { width: 100%; margin-left: 0; padding: 1.5rem; }
  .proc-card { padding: 1.5rem 1.3rem; }
  .info-box { grid-template-columns: 1fr 1fr; }

  /* Sobre mim mobile */
  .sobre-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .sobre-img-wrap { order: 1; aspect-ratio: 4/5; width: 100%; max-width: 340px; margin: 0 auto; }
  .sobre-text { order: 2; }
  .sobre-badge { left: 1rem; right: auto; bottom: 1rem; }
  .toque-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; max-height: none; }
  .mosaic-large { grid-row: auto; height: 260px; }
  .mosaic-item { height: 200px; }

  .local-btns { flex-direction: column; }

  .slots-grid { grid-template-columns: repeat(3,1fr); }
  #float-cta { bottom: 1rem; right: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }

  .emergency-notice .container { flex-direction: column; gap: .5rem; }
}

@media(max-width:480px){
  #header .btn-primary { padding: .6rem .9rem; font-size: .58rem; }
  .header-inner > a:first-child { flex-basis: 76px; }
  .logo-light,
  .logo-dark { width: 76px; }
  .hero-actions .btn { padding: .58rem .72rem; font-size: .58rem; }
  .slots-grid { grid-template-columns: repeat(2,1fr); }
  .atend-grid { gap: 2rem; }
  .proc-card { padding: 1.5rem 1.3rem; }
  .info-box { grid-template-columns: 1fr; gap: 1.2rem; }
  .step-card { padding: 1.6rem 1.4rem; }
}

/* ─── Focus visible ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ─── Reduced motion ─────────────────────── */
@media(prefers-reduced-motion:reduce){
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  details.faq-item summary::after { transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Identidade Marcos Ramos: profundidade sem blocos de cor chapada */
body{background:radial-gradient(circle at 12% 8%,rgba(169,186,200,.22),transparent 28%),linear-gradient(135deg,#f7f4f0 0%,#e9e4de 55%,#f3efea 100%)}.hero-gradient{background:linear-gradient(90deg,rgba(18,34,52,.88),rgba(48,68,92,.48) 55%,rgba(48,68,92,.06)),linear-gradient(0deg,rgba(23,37,55,.5),transparent 50%)}.proc-section,.steps-section,.calendar-section{background-image:radial-gradient(circle at 15% 20%,rgba(169,186,200,.16),transparent 30%),linear-gradient(145deg,#263b53,#3f5872)}.proc-card{background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.045));backdrop-filter:blur(10px)}.sobre-section{background-color:#e9e4de;background-image:radial-gradient(circle at 82% 15%,rgba(70,98,126,.14),transparent 34%),linear-gradient(135deg,rgba(255,255,255,.48),rgba(233,228,222,.72))}

/* Ajuste cromático solicitado: crema, azul y arena; sin rosa */
.marquee-section {
  background: linear-gradient(110deg, #b89a7e 0%, #c2a88d 48%, #d0bca8 100%);
  border-color: rgba(48,68,92,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), inset 0 -18px 40px rgba(48,68,92,.1);
}
.marquee-content span { color: #26384c; }
.marquee-content .dot { color: #f5f1ec; }

#loading-screen,
#reveal-overlay {
  background: radial-gradient(circle at 50% 18%, rgba(194,168,141,.28), transparent 35%), linear-gradient(145deg, #f6f1eb 0%, #e9e4de 100%);
  color: #30445c;
}
.loading-bar-track { background: rgba(48,68,92,.14); }
.loading-bar-fill { background: linear-gradient(90deg,#30445c,#c2a88d); }
.loading-pct { color: #30445c; }

#header,
#header.scrolled {
  background: linear-gradient(105deg, rgba(246,241,235,.97), rgba(233,228,222,.94));
  border-color: rgba(48,68,92,.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
#header .logo-light { display:none; }
#header .logo-dark { display:block; }
#header nav.header-nav a,
#header.scrolled nav.header-nav a { color:#30445c; }
#header .hamburger span,
#header.scrolled .hamburger span { background:#30445c; }
#header .btn-primary,
#header.scrolled .btn-primary { background:linear-gradient(135deg,#30445c,#46627e); color:#fff; }
.mobile-nav { background:radial-gradient(circle at 20% 15%,rgba(194,168,141,.26),transparent 32%),linear-gradient(145deg,#f5f1ec,#e9e4de); }
.mobile-nav a { color:#30445c; }
.mobile-nav a:hover { color:#8c735c; }
.mobile-nav .mobile-cta { background:linear-gradient(135deg,#30445c,#46627e);color:#fff; }

.sobre-section {
  background-color:#aeb6bf;
  background-image:url('../pattern.png');
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
}
.sobre-section::before { background:none; }

footer {
  background:radial-gradient(circle at 15% 0%,rgba(194,168,141,.2),transparent 30%),linear-gradient(135deg,#f5f1ec 0%,#e9e4de 56%,#ddd4ca 100%);
  border-color:rgba(48,68,92,.16);
  color:#30445c;
  box-shadow:inset 0 20px 55px rgba(48,68,92,.06);
}
.footer-logo-img { filter:none; }
.footer-tagline,.footer-col a,.footer-col address,.footer-bottom { color:rgba(48,68,92,.78); }
.footer-col h4 { color:#30445c; }
.footer-col a:hover { color:#172537; }
.footer-bottom { border-color:rgba(48,68,92,.16); }
/* Ajuste solicitado: sección blanca, cards azules y CTAs arena */
.proc-section {
  background:#ffffff !important;
  background-image:none !important;
}
.proc-card {
  background:linear-gradient(145deg,#30445c 0%,#46627e 100%) !important;
  border-color:rgba(255,255,255,.22);
  box-shadow:0 16px 35px rgba(48,68,92,.18),inset 0 1px 0 rgba(255,255,255,.18);
}
.proc-card::before { background:rgba(194,168,141,.13); }
.proc-card h3,.proc-card p { color:#ffffff; }
.proc-card p { color:rgba(255,255,255,.78); }
.proc-icon { background:rgba(255,255,255,.14); color:#ffffff; }

.btn-primary,
.proc-btn,
.float-btn,
.mobile-nav .mobile-cta,
#header .btn-primary,
#header.scrolled .btn-primary,
.book-success .wa-btn,
#booking-btn,
.booking-btn,
.tipo-btn.active {
  background:#c2a88d !important;
  border-color:#c2a88d !important;
  color:#26384c !important;
}
.btn-primary:hover,
.proc-btn:hover,
.float-btn:hover,
.mobile-nav .mobile-cta:hover,
#header .btn-primary:hover,
.book-success .wa-btn:hover,
#booking-btn:hover,
.booking-btn:hover {
  background:#b3987d !important;
  border-color:#b3987d !important;
  color:#172537 !important;
}
.cal-day.sel,.slot.s-sel { background:#c2a88d; border-color:#c2a88d; color:#26384c; }
/* Sobre mim: la tarjeta permanece fija; solo el patrón se desplaza verticalmente */
@media(min-width:769px){.sobre-section .container{position:sticky;top:clamp(1.5rem,6vh,4rem);transform:none}.sobre-grid{transform:none}}

/* Como funciona: fondo blanco y cards azules */
.steps-section {
  background:#ffffff !important;
  background-image:none !important;
  color:#172537;
}
.steps-section .label { color:#30445c; }
.steps-section > .container > h2 { color:#172537; }
.steps-section > .container > p { color:#5f6c78; }
.step-card {
  background:linear-gradient(145deg,#30445c 0%,#46627e 100%) !important;
  border-color:rgba(48,68,92,.16);
  box-shadow:0 16px 34px rgba(48,68,92,.18),inset 0 1px 0 rgba(255,255,255,.16);
}
.step-card::before { background:rgba(194,168,141,.13); }
.step-card .step-number { color:#c2a88d; }
.step-card h3 { color:#ffffff; }
.step-card p { color:rgba(255,255,255,.78); }
/* Hero: secuencia horizontal en escritorio y tipografía crema */
.hero-label,
.hero-h1,
.hero-h1 em,
.hero-sub,
.hero-micro,
.hero-scroll-hint { color:#f5f1ec; text-shadow:0 2px 16px rgba(17,34,51,.72); }
.hero-label::before { background:#f5f1ec; }
.hero-actions .btn-outline {
  border-color:rgba(245,241,236,.62);
  color:#f5f1ec;
  background:rgba(245,241,236,.08);
}
.hero-actions .btn-outline:hover {
  border-color:#f5f1ec;
  background:rgba(245,241,236,.92);
  color:#30445c;
}
.scroll-line { background:rgba(245,241,236,.38); }
.scroll-line::after { background:#f5f1ec; }
/* Calendario y agendamiento: azul profundo, títulos crema y paneles legibles */
.calendar-section {
  background:
    radial-gradient(circle at 14% 12%,rgba(86,116,146,.38),transparent 30%),
    radial-gradient(circle at 88% 86%,rgba(61,86,112,.5),transparent 35%),
    linear-gradient(145deg,#1b2e43 0%,#30445c 52%,#21384f 100%) !important;
  color:#f5f1ec;
}
.calendar-section .label,
.calendar-section > .container > h2 { color:#f5f1ec; text-shadow:0 2px 14px rgba(13,29,45,.35); }
.calendar-section > .container > p { color:rgba(245,241,236,.82); }
.cal-box,
.slots-wrap.vis,
.book-wrap {
  background:linear-gradient(145deg,#ffffff 0%,#eef2f5 100%);
  border-color:rgba(255,255,255,.62);
  box-shadow:0 18px 38px rgba(13,29,45,.26),inset 0 1px 0 rgba(255,255,255,.8);
  color:#172537;
}
.cal-month,.book-wrap h3 { color:#172537; }
.book-wrap > p,.cal-leg,.slots-lbl,.form-field label,.consent-field label,.form-notice,.book-micro { color:#5f6c78; }
.calendar-section .book-btn {
  background:#c2a88d !important;
  border-color:#c2a88d !important;
  color:#26384c !important;
}
.calendar-section .book-btn:hover {
  background:#b3987d !important;
  border-color:#b3987d !important;
  color:#172537 !important;
}

#float-bot {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: transparent; 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;
}
#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: 54px; height: 54px; min-width: 54px; min-height: 54px;
  border-radius: 50%; object-fit: cover; object-position: center 20%;
  display: block; pointer-events: none; position: relative; z-index: 2;
  border: 2px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
#float-bot::before, #float-bot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #c2a88d; 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} }
#vip-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: min(360px, calc(100vw - 2rem));
  max-height: 520px;
  background: #0a0a1c;
  border: 1px solid rgba(200,180,138,.35);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(200,180,138,.12);
  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, #111127 0%, #1a1a40 100%);
  border-bottom: 1px solid rgba(200,180,138,.25);
  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: cover;
  object-position: center 20%;
  border: 2px solid rgba(224,210,174,.45);
  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(200,180,138,.3) transparent;
}
#vip-chat-msgs::-webkit-scrollbar { width: 4px; }
#vip-chat-msgs::-webkit-scrollbar-thumb { background: rgba(200,180,138,.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: #16162e;
  color: #e2e8f0;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.fcm-user .fcm-bubble {
  background: linear-gradient(135deg, #1a1a40, #111127);
  border: 1px solid rgba(200,180,138,.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: #64748b;
  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(200,180,138,.15);
  border: 1px solid rgba(200,180,138,.45);
  color: #d7c4b0;
  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(200,180,138,.35); 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: #07071a;
  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: #e2e8f0;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s;
}
#vip-chat-input::placeholder { color: #475569; }
#vip-chat-input:focus { border-color: rgba(200,180,138,.6); }
#vip-chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #c2a88d;
  border: none;
  color: #111127;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
#vip-chat-send:hover { background: #d7c4b0; 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: 88vh;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    border: none;
    border-top: 1px solid rgba(200,180,138,.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; }
}
/* Adaptação do assistente à identidade de Marcos */
#float-bot { left:auto; right:2rem; bottom:2rem; opacity:1; transform:none; pointer-events:auto; z-index:700; }
#float-bot:hover { transform:translateY(-3px) !important; }
#float-bot::before,#float-bot::after { background:#c2a88d; }
.bot-avatar { border-color:#f5f1ec; box-shadow:0 5px 18px rgba(23,37,55,.32); }
#vip-chat { left:auto; right:2rem; bottom:6rem; background:#f5f1ec; border-color:rgba(194,168,141,.6); box-shadow:0 24px 60px rgba(23,37,55,.36); transform-origin:bottom right; }
#vip-chat-header { background:linear-gradient(135deg,#30445c,#46627e); border-color:rgba(194,168,141,.4); }
#vip-chat-avatar { border-color:#c2a88d; }
#vip-chat-msgs { background:linear-gradient(145deg,#f5f1ec,#e9eef2); scrollbar-color:rgba(48,68,92,.3) transparent; }
#vip-chat-msgs::-webkit-scrollbar-thumb { background:rgba(48,68,92,.3); }
.fcm-bot .fcm-bubble { background:#ffffff; color:#172537; border-color:rgba(48,68,92,.1); box-shadow:0 4px 14px rgba(48,68,92,.08); }
.fcm-user .fcm-bubble { background:linear-gradient(135deg,#30445c,#46627e); border-color:rgba(194,168,141,.45); color:#f5f1ec; }
.fcm-cta { background:#c2a88d; border-color:#c2a88d; color:#26384c; }
.fcm-cta:hover { background:#b3987d; color:#172537; }
#vip-chat-form { background:#f5f1ec; border-color:rgba(48,68,92,.12); }
#vip-chat-input { background:#ffffff; border-color:rgba(48,68,92,.18); color:#172537; }
#vip-chat-input::placeholder { color:#7b8792; }
#vip-chat-input:focus { border-color:#c2a88d; }
#vip-chat-send { background:#c2a88d; color:#26384c; }
#vip-chat-send:hover { background:#b3987d; }
@media(max-width:600px){#float-bot{left:auto;right:1rem;bottom:1rem}#vip-chat{left:0;right:0;bottom:0}}
/* Crédito discreto */
.kore-credit { font-size:.66rem; color:rgba(48,68,92,.58); letter-spacing:.025em; transition:color .2s,opacity .2s; }
.kore-credit:hover { color:#30445c; }
@media(max-width:768px){.footer-bottom{align-items:flex-start}.kore-credit{width:100%;margin-top:.2rem}}
/* Preloader: símbolo azul visible */
.loading-logo-img,
#reveal-overlay img {
  display:block;
  width:120px;
  height:auto;
  opacity:1;
  filter:none;
}

/* ─── MODALIDADES DE ATENDIMENTO ──────────── */
.modal-section { background:#ffffff; position:relative; }
.modal-header { text-align:center; max-width:680px; margin:0 auto clamp(2.5rem,4vw,3.5rem); }
.modal-header .label { margin-bottom:.8rem; color:var(--accent); }
.modal-header h2 { margin-bottom:.9rem; }
.modal-intro-p { max-width:520px; margin:0 auto; }

.modal-layout {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:clamp(1.5rem,3vw,2.5rem);
  align-items:start;
}
.modal-photo {
  position:relative;
  border-radius:18px;
  overflow:hidden;
  aspect-ratio:3/4;
  box-shadow:0 24px 60px rgba(48,68,92,.22);
}
.modal-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.modal-photo-wrap { min-width:0; }
.modal-photo-caption {
  display:inline-flex;
  margin:0 0 .8rem 1rem;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  border-radius:8px;
  padding:.45rem .85rem;
  font-size:.65rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent);
  box-shadow:0 4px 14px rgba(48,68,92,.14);
}
.modal-cards { display:flex; flex-direction:column; gap:1.1rem; }

.modal-card {
  background:linear-gradient(145deg,#30445c 0%,#46627e 100%);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:clamp(1.4rem,2.5vw,2rem);
  display:flex; flex-direction:column; gap:.8rem;
  box-shadow:0 14px 34px rgba(48,68,92,.2),inset 0 1px 0 rgba(255,255,255,.14);
  position:relative; overflow:hidden;
}
.modal-card::before {
  content:''; position:absolute;
  width:120px; height:120px;
  top:-68px; right:-52px;
  border-radius:50%;
  background:rgba(194,168,141,.12);
}
.modal-card-alt {
  background:linear-gradient(145deg,#f5f1ec 0%,#e9e4de 100%);
  border-color:rgba(48,68,92,.14);
  box-shadow:0 14px 34px rgba(48,68,92,.1),inset 0 1px 0 rgba(255,255,255,.6);
}
.modal-card-alt .modal-card-icon { background:rgba(48,68,92,.1); color:var(--accent); }
.modal-card.modal-card-alt h3 { color:var(--text); }
.modal-card.modal-card-alt > p { color:var(--muted); }
.modal-card.modal-card-alt .modal-list li { color:var(--muted); }
.modal-card.modal-card-alt .modal-list svg { color:var(--accent); }

.modal-card-icon {
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  box-shadow:0 4px 12px rgba(48,68,92,.15);
  flex-shrink:0;
}
.modal-card h3 { color:#fff; font-size:1.05rem; }
.modal-card > p { color:rgba(255,255,255,.82); font-size:.88rem; flex:1; }
.modal-list { list-style:none; display:flex; flex-direction:column; gap:.45rem; margin:0; padding:0; }
.modal-list li { display:flex; align-items:center; gap:.5rem; font-size:.82rem; color:rgba(255,255,255,.8); }
.modal-list svg { flex-shrink:0; color:#c2a88d; }
.modal-btn { align-self:flex-start; margin-top:.2rem; }

@media(max-width:1024px){
  .modal-layout { grid-template-columns:1fr; }
  .modal-photo { aspect-ratio:16/9; max-height:360px; }
}
@media(max-width:768px){
  .modal-header { text-align:left; }
  .modal-photo { aspect-ratio:4/3; }
}

/* ─── LOCALIZAÇÃO ────────────────────────── */
.local-section { background:linear-gradient(180deg,#F5F1EC 0%,#E9E4DE 100%); }
.local-section .label { margin-bottom:.8rem; color:var(--accent); }
.local-section h2 { max-width:560px; margin-bottom:.9rem; }
.local-section > .container > p { max-width:480px; margin-bottom:2.5rem; }

.local-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:clamp(1.5rem,3vw,2.5rem);
  align-items:start;
}
.local-map-wrap {
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(48,68,92,.2);
}
.local-map-wrap iframe { display:block; width:100%; }

.local-info-col { display:flex; flex-direction:column; gap:1rem; }
.local-info-card {
  background:rgba(255,255,255,.97);
  border:1px solid rgba(169,186,200,.28);
  border-radius:12px;
  padding:1.1rem 1.25rem;
  display:flex; align-items:flex-start; gap:.9rem;
  box-shadow:0 6px 20px rgba(48,68,92,.09);
}
.local-info-icon {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg,#E1E7EC,#A9BAC8);
  display:flex; align-items:center; justify-content:center;
  color:var(--accent); flex-shrink:0;
}
.local-info-card h4 {
  font-size:.68rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent); margin-bottom:.3rem;
}
.local-info-card address,
.local-info-card p { font-size:.83rem; color:var(--muted); font-style:normal; line-height:1.65; }
.local-btns { display:flex; gap:.7rem; flex-wrap:wrap; margin-top:.4rem; }

@media(max-width:1024px){ .local-grid { grid-template-columns:1fr; } }
@media(max-width:768px){ .local-map-wrap iframe { height:280px; } }

/* Sobre mim: patrón específico para móvil */
@media(max-width:768px){
  .sobre-section {
    background-color:#aeb6bf;
    background-image:url('../pattercelular.png');
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center top;
  }
}