:root {
  --whatsapp: #20c875
}
.contact-actions .btn-ghost:hover {
  background: linear-gradient(135deg,#feda75 0%,#fa7e1e 35%,#d62976 62%,#4f5bd5 100%);
  color: #fff
}
.footer-cta .eyebrow {
  color: #e9c77e
}
.footer-button {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(32,200,117,.24)
}
.footer-button:hover {
  background: #18ae64!important;
  border-color: #18ae64!important;
  color: #fff!important;
  box-shadow: 0 12px 28px rgba(32,200,117,.34)
}
.photo-stamp-image {
  width: 78%!important;
  height: 78%!important;
  object-fit: contain!important;
  border-radius: 0!important;
  box-shadow: none!important
}
.about-photo .photo-stamp {
  background: transparent;
  box-shadow: none;
  transform: none
}
.about-photo .photo-stamp:before {
  display: none
}
.photo-stamp:before {
  display: none
}
.header-actions {
  margin-left: auto
}
.header-actions {
  gap: 12px
}
.whatsapp-button {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(32,200,117,.24)
}
.whatsapp-button:hover {
  background: #18ae64;
  box-shadow: 0 12px 28px rgba(32,200,117,.34)
}
.photo-stamp {
  font-size: 0
}
.photo-stamp:before {
  content: "";
  width: 78%;
  height: 78%;
  background: url("../components/icon2.png") center/contain no-repeat
}
.photo-stamp br {
  display: none
}
.contact-actions .btn-ghost {
  background: linear-gradient(135deg,#feda75 0%,#fa7e1e 35%,#d62976 62%,#4f5bd5 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 24px rgba(214,41,118,.2)
}
.ticker-track {
  min-width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0)
}
.instagram-button {
  background: linear-gradient(135deg,#feda75 0%,#fa7e1e 35%,#d62976 62%,#4f5bd5 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214,41,118,.2)
}
.instagram-button:hover {
  box-shadow: 0 12px 28px rgba(214,41,118,.32)
}
.instagram-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.ticker-set {
  flex: 0 0 max-content
}
:root {
  --ink: #241b33;
  --ink-soft: #665b77;
  --primary: #5c3d8c;
  --primary-dark: #352052;
  --deep: #24153b;
  --soft: #f5effa;
  --cream: #fcfaf7;
  --white: #fff;
  --gold: #e7a43a;
  --gold-dark: #bd7817;
  --line: #e8deef;
  --container: 1180px;
  --display: "Fraunces",Georgia,serif;
  --body: "DM Sans",sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 16px 50px rgba(36,27,51,.10);
  --shadow-lg: 0 30px 90px rgba(36,27,51,.18)
}
*,*:before,*:after {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}
img {
  display: block;
  max-width: 100%
}
a {
  color: inherit;
  text-decoration: none
}
button {
  font: inherit
}
.container {
  width: min(var(--container),calc(100% - 48px));
  margin: auto
}
h1,h2,h3 {
  font-family: var(--display);
  line-height: 1.08;
  color: var(--deep);
  margin: 0
}
p {
  margin: 0 0 1rem
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 1000
}
.skip-link:focus {
  left: 10px
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,250,247,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .35s var(--ease)
}
.site-header.scrolled {
  background: rgba(252,250,247,.97);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(36,27,51,.07)
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08
}
.brand-copy strong {
  font: 600 1.08rem var(--display);
  color: var(--deep)
}
.brand-copy small {
  font-size: .68rem;
  color: var(--ink-soft);
  margin-top: 4px
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1
}
.site-nav a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0
}
.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--gold);
  transition: right .3s var(--ease)
}
.site-nav a:hover,.site-nav a.active {
  color: var(--primary)
}
.site-nav a:hover:after,.site-nav a.active:after {
  right: 0
}
.header-actions {
  display: flex;
  align-items: center
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  cursor: pointer;
  border-radius: 12px
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--gold);
  margin: 5px auto;
  border-radius: 3px;
  transition: .3s var(--ease)
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease)
}
.btn:hover {
  transform: translateY(-2px)
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(92,61,140,.2)
}
.btn-primary:hover {
  background: var(--primary-dark)
}
.btn-accent {
  background: var(--gold);
  color: #291b0c;
  box-shadow: 0 12px 28px rgba(231,164,58,.25)
}
.btn-accent:hover {
  background: #f0b14d
}
.btn-ghost {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent
}
.btn-ghost:hover {
  background: var(--soft)
}
.btn-glass {
  color: #fff;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px)
}
.btn-glass:hover {
  background: rgba(255,255,255,.18)
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.42);
  color: #fff;
  background: transparent
}
.btn-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: .82rem
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 13px
}
.eyebrow-light {
  color: #f3c56e
}
.contact-ticker {
  height: 38px;
  background: var(--gold);
  color: var(--deep);
  overflow: hidden
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite
}
.ticker-set {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 700
}
.ticker-set i {
  font-style: normal;
  color: var(--deep)
}
.contact-ticker:hover .ticker-track {
  animation-play-state: paused
}
@keyframes ticker {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}
.hero {
  position: relative;
  min-height: clamp(650px,calc(100vh - 116px),850px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep)
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../components/Clinica.jpg") center 57%/cover no-repeat;
  transform: scale(1.015)
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(30,17,47,.94),rgba(35,19,55,.82) 38%,rgba(35,19,55,.38) 68%,rgba(35,19,55,.18))
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: 70px;
  align-items: center;
  padding: 82px 0 105px
}
.hero-copy {
  max-width: 670px;
  color: #fff
}
.hero h1 {
  font-size: clamp(3rem,5vw,5.5rem);
  color: #fff;
  letter-spacing: -.035em;
  margin-bottom: 24px
}
.hero h1 em {
  font-style: italic;
  color: #f1bd5b
}
.hero-copy>p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 600px
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 700
}
.hero-proof b {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(231,164,58,.2);
  color: #f3c56e;
  margin-right: 5px
}
.hero-side {
  display: flex;
  justify-content: flex-end
}
.hero-photo-card {
  position: relative;
  width: min(100%,400px);
  border: 1px solid rgba(255,255,255,.28);
  padding: 10px;
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(7px);
  transform: rotate(1.5deg)
}
.hero-photo-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 20px
}
.photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(31,18,47,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 11px 13px;
  font-size: .72rem;
  font-weight: 800;
  backdrop-filter: blur(12px)
}
.caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold)
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em
}
.scroll-cue b {
  font-size: 1.05rem;
  color: #fff;
  animation: bounce 1.8s ease-in-out infinite
}
@keyframes bounce {
  0%,100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(5px)
  }
}
.section {
  padding: 105px 0
}
.section-white {
  background: var(--white)
}
.section-soft {
  background: var(--soft)
}
.section-head {
  max-width: 760px;
  margin-bottom: 46px
}
.section-head h2,.about-copy h2,.feature-copy h2,.contact-copy h2 {
  font-size: clamp(2.15rem,3.7vw,3.5rem);
  letter-spacing: -.025em
}
.section-head>p:last-child {
  color: var(--ink-soft);
  max-width: 700px
}
.split-head {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 80px;
  align-items: end;
  max-width: none
}
.split-head p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.75
}
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 100px;
  align-items: center
}
.about-photo {
  position: relative
}
.about-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg)
}
.photo-stamp {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--gold);
  color: var(--deep);
  font: 600 .9rem/1.05 var(--display);
  box-shadow: 0 15px 35px rgba(231,164,58,.28);
  transform: rotate(-8deg)
}
.about-copy>p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 58ch
}
.about-points {
  margin: 28px 0 26px;
  border-top: 1px solid var(--line)
}
.about-points>div {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line)
}
.about-points span {
  font: 600 .78rem var(--display);
  color: var(--gold-dark)
}
.about-points strong,.about-points small {
  display: block
}
.about-points strong {
  font-size: .9rem
}
.about-points small {
  font-size: .76rem;
  color: var(--ink-soft);
  margin-top: 2px
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: .86rem;
  font-weight: 800
}
.text-link span {
  transition: transform .25s var(--ease)
}
.text-link:hover span {
  transform: translateX(4px)
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 110px;
  align-items: center
}
.feature-copy p {
  color: var(--ink-soft);
  max-width: 55ch
}
.mini-quote {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px
}
.mini-quote>span {
  font: 700 3rem/.7 var(--display);
  color: var(--gold)
}
.mini-quote p {
  font: 500 1.05rem/1.5 var(--display);
  color: var(--deep);
  margin: 0
}
.feature-photo img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg)
}
.section-gallery {
  background: var(--deep);
  color: #fff
}
.gallery-head h2 {
  color: #fff
}
.gallery-head p {
  color: rgba(255,255,255,.62)
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-auto-rows: 240px;
  gap: 14px
}
.gallery-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  min-width: 0
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease)
}
.gallery-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 45%,rgba(20,10,30,.72));
  pointer-events: none
}
.gallery-card:hover img {
  transform: scale(1.05)
}
.gallery-large,.gallery-tall {
  grid-row: span 2
}
.gallery-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-align: left
}
.gallery-label b {
  font-size: 1rem
}
.testimonials-wrap {
  max-width: 1000px
}
.google-review-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow)
}
.google-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f3f5f8;
  color: #4285f4;
  font: bold 1.55rem Arial
}
.review-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dark);
  font-size: .64rem;
  font-weight: 800;
  margin-bottom: 8px
}
.review-main h3 {
  font-size: 1.7rem;
  margin-bottom: 8px
}
.review-main p {
  color: var(--ink-soft);
  font-size: .85rem;
  max-width: 600px
}
.review-main .btn {
  margin-top: 5px
}
.review-side {
  min-width: 180px;
  padding-left: 28px;
  border-left: 1px solid var(--line)
}
.stars {
  display: block;
  color: #f2ae3d;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 6px
}
.review-side strong {
  display: block;
  font-size: .82rem
}
.review-side small {
  display: block;
  color: var(--ink-soft);
  font-size: .7rem;
  line-height: 1.5;
  margin-top: 4px
}
.cta-section {
  padding-top: 0;
  background: var(--soft)
}
.cta-card {
  background: linear-gradient(110deg,var(--primary-dark),var(--primary));
  border-radius: 30px;
  padding: 52px 60px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  box-shadow: var(--shadow-lg);
  overflow: hidden
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(2rem,3.3vw,3rem);
  max-width: 650px
}
.cta-card p {
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 600px
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 90px;
  align-items: center
}
.contact-copy>p:not(.eyebrow) {
  color: var(--ink-soft)
}
.contact-list {
  border-top: 1px solid var(--line);
  margin: 30px 0 25px
}
.contact-list>a,.contact-list>div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line)
}
.contact-list>a>span,.contact-list>div>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 900
}
.contact-list small,.contact-list strong {
  display: block
}
.contact-list small {
  font-size: .66rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800
}
.contact-list strong {
  font-size: .84rem
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}
.map-card {
  position: relative;
  height: 510px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #e8e0ed
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.82)
}
.map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,.1)
}
.map-badge span {
  color: var(--primary);
  margin-right: 5px
}
.site-footer {
  background: #1e1430;
  color: #fff
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .7fr .8fr 1fr;
  gap: 50px;
  padding: 64px 0
}
.footer-brand .brand-copy strong {
  color: #fff
}
.footer-brand .brand-copy small {
  color: rgba(255,255,255,.54)
}
.footer-brand>p {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  max-width: 260px;
  margin: 18px 0 0
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px
}
.footer-column h3 {
  font: 800 .7rem var(--body);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #e9c77e;
  margin: 5px 0 10px
}
.footer-column a,.footer-column span {
  font-size: .77rem;
  color: rgba(255,255,255,.68)
}
.footer-column a:hover {
  color: #fff
}
.footer-cta strong {
  font: 600 1.35rem var(--display);
  margin-bottom: 5px
}
.footer-button {
  display: inline-flex!important;
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 13px;
  border-radius: 999px!important;
  color: #fff!important
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.42);
  font-size: .66rem
}
.footer-bottom .container {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px
}
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 15px 35px rgba(22,125,77,.28)
}
.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  position: relative;
  z-index: 2
}
.pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(32,200,117,.45);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite
}
@keyframes pulse {
  0% {
    transform: scale(.9);
    opacity: .8
  }
  70%,100% {
    transform: scale(1.25);
    opacity: 0
  }
}
.mobile-cta {
  display: none
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(18,10,27,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 35px
}
.lightbox.open {
  display: flex
}
.lightbox img {
  max-width: min(1100px,94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px
}
.lightbox-close {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer
}
.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease),transform .75s var(--ease)
}
.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none
}
@media(max-width:1050px) {
  .site-nav {
    gap: 17px
  }
  .site-nav a {
    font-size: .79rem
  }
  .hero-inner {
    grid-template-columns: 1fr .65fr;
    gap: 35px
  }
  .hero-photo-card img {
    height: 410px
  }
  .about-grid,.feature-grid {
    gap: 55px
  }
  .footer-main {
    grid-template-columns: 1.2fr .7fr .8fr
  }
  .footer-cta {
    grid-column: 3
  }
}
@media(max-width:820px) {
  .header-inner {
    min-height: 70px
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    flex-direction: column;
    gap: 0;
    background: rgba(252,250,247,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 8px;
    box-shadow: var(--shadow)
  }
  .site-nav.open {
    display: flex
  }
  .site-nav a {
    padding: 12px 13px
  }
  .site-nav a:after {
    display: none
  }
  .nav-toggle {
    display: block
  }
  .header-actions .btn {
    display: none
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 75px
  }
  .hero-side {
    display: none
  }
  .hero {
    min-height: 680px
  }
  .about-grid,.feature-grid,.contact-grid {
    grid-template-columns: 1fr
  }
  .about-grid {
    gap: 45px
  }
  .about-photo img {
    height: 500px
  }
  .feature-grid {
    gap: 40px
  }
  .feature-photo {
    max-width: 480px
  }
  .specialty-grid {
    grid-template-columns: repeat(2,1fr)
  }
  .split-head {
    grid-template-columns: 1fr;
    gap: 15px
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px
  }
  .gallery-large,.gallery-tall {
    grid-row: span 2
  }
  .google-review-card {
    grid-template-columns: auto 1fr
  }
  .review-side {
    grid-column: 2;
    border-left: 0;
    padding: 0
  }
  .cta-card {
    padding: 45px 38px;
    flex-direction: column;
    align-items: flex-start
  }
  .contact-grid {
    gap: 50px
  }
  .footer-main {
    grid-template-columns: 1fr 1fr
  }
  .footer-cta {
    grid-column: auto
  }
}
@media(max-width:560px) {
  .container {
    width: min(var(--container),calc(100% - 32px))
  }
  .contact-ticker {
    height: 34px
  }
  .ticker-set {
    height: 34px;
    font-size: .66rem;
    gap: 12px
  }
  .section {
    padding: 76px 0
  }
  .hero {
    min-height: 720px
  }
  .hero-inner {
    padding: 58px 0 85px
  }
  .hero h1 {
    font-size: clamp(2.65rem,13vw,4.1rem)
  }
  .hero-copy>p:not(.eyebrow) {
    font-size: .95rem
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column
  }
  .hero-actions .btn {
    width: 100%
  }
  .hero-proof {
    gap: 9px;
    flex-direction: column
  }
  .about-photo img {
    height: 430px
  }
  .photo-stamp {
    right: 14px;
    bottom: 16px;
    width: 94px;
    height: 94px;
    font-size: .76rem
  }
  .specialty-grid {
    grid-template-columns: 1fr
  }
  .specialty-card {
    min-height: 210px
  }
  .feature-photo img {
    height: 420px
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px
  }
  .gallery-large,.gallery-tall {
    grid-row: span 1
  }
  .google-review-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .review-side {
    grid-column: auto;
    min-width: 0;
    width: 100%;
    padding: 0;
    border-left: 0;
  }
  .review-side small {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .cta-card {
    padding: 35px 26px;
    border-radius: 22px
  }
  .cta-actions {
    width: 100%;
    flex-direction: column
  }
  .cta-actions .btn {
    width: 100%
  }
  .map-card {
    height: 380px
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0
  }
  .footer-bottom .container {
    min-height: 70px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
  }
  .whatsapp-float {
    right: 10px;
    bottom: 72px;
    width: 54px;
    height: 54px
  }
  .mobile-cta {
    display: grid;
    position: fixed;
    z-index: 85;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 48px;
    grid-template-columns: 1fr 1.35fr;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(20,10,30,.2)
  }
  .mobile-cta a {
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    border-right: 1px solid var(--line)
  }
  .mobile-cta a:last-child {
    background: #1fbf70;
    color: #fff;
    border: 0
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  *,*:before,*:after {
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important
  }
  .ticker-track {
    animation: none
  }
}
/* === Ajustes visuais solicitados — Recanto Girassol === */ /* CTA do cabeçalho: mantém o dourado original, com texto branco */ .header-appointment {
  color: #fff!important
}
.header-appointment:hover {
  color: #fff!important
}
/* Ticker: loop contínuo, sem salto ou faixa vazia no retorno */ .contact-ticker {
  position: relative;
  overflow: hidden;
  isolation: isolate
}
.contact-ticker:before,.contact-ticker:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 2;
  pointer-events: none
}
.contact-ticker:before {
  left: 0;
  background: linear-gradient(90deg,var(--gold),rgba(231,164,58,0))
}
.contact-ticker:after {
  right: 0;
  background: linear-gradient(270deg,var(--gold),rgba(231,164,58,0))
}
.ticker-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: ticker 30s linear infinite
}
.ticker-set {
  flex: 0 0 auto;
  width: max-content
}
@keyframes ticker {
  from {
    transform: translate3d(0,0,0)
  }
  to {
    transform: translate3d(-50%,0,0)
  }
}
/* Estrutura: laranja do sistema + título branco */ .gallery-eyebrow {
  color: #f1bd5b!important
}
.gallery-head h2 {
  color: #fff
}
.gallery-head p {
  color: rgba(255,255,255,.68)
}
/* Google: G integrado ao botão, sem marcador flutuante */ .google-review-card {
  grid-template-columns: 1fr auto
}
.google-review-button {
  margin-top: 5px!important;
  background: #fff!important;
  color: #3c4043!important;
  border: 1px solid #dadce0;
  box-shadow: 0 5px 16px rgba(60,64,67,.14);
  font-weight: 800
}
.google-review-button:hover {
  background: #f8f9fa!important;
  border-color: #c9cdd1;
  box-shadow: 0 9px 22px rgba(60,64,67,.18)
}
.google-g-icon {
  font: 900 1.18rem/1 Arial,sans-serif;
  background: conic-gradient(from -45deg,#4285f4 0 25%,#34a853 25% 50%,#fbbc05 50% 75%,#ea4335 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.google-arrow {
  color: #5f6368;
  margin-left: 2px
}
.google-review-button .google-g-icon {
  margin-right: 2px
}
/* Vamos conversar: substitui o bloco roxo/azulado pelo dourado do site */ .cta-section {
  background: var(--soft)
}
.cta-card {
  background: linear-gradient(115deg,#bd7817 0%,#d99329 48%,#e7a43a 100%);
  box-shadow: 0 30px 80px rgba(189,120,23,.22)
}
.cta-card p {
  color: rgba(255,255,255,.86)
}
.cta-card .eyebrow-light {
  color: #fff7df
}
.cta-actions .whatsapp-button {
  background: #fff;
  color: var(--deep);
  box-shadow: 0 10px 24px rgba(36,27,51,.16)
}
.cta-actions .whatsapp-button:hover {
  background: #fff7e8;
  color: var(--deep);
  box-shadow: 0 13px 28px rgba(36,27,51,.2)
}
.cta-actions .whatsapp-button:last-child {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: none
}
.cta-actions .whatsapp-button:last-child:hover {
  background: rgba(255,255,255,.24);
  color: #fff
}
/* Acessibilidade: respeita redução de movimento também nos novos efeitos */ @media(prefers-reduced-motion:reduce) {
  .ticker-track {
    animation: none
  }
  .specialty-card .icon,.specialty-card:hover .icon {
    transform: none
  }
}
/* A seção "Conheça o espaço" assume a paleta quente do Recanto */ .section-gallery {
  background: linear-gradient(135deg,#9f6417 0%,#c9821f 52%,#e2a33c 100%)
}
.gallery-eyebrow {
  color: #fff!important
}
.gallery-head h2 {
  color: #fff
}
.gallery-head p {
  color: rgba(255,255,255,.84)
}
/* === Refinos finais: responsividade, imagens ampliáveis e CTAs === */ html,body {
  max-width: 100%;
  overflow-x: hidden
}
.image-zoom {
  position: relative;
  cursor: zoom-in
}
.image-zoom img {
  cursor: zoom-in
}
.image-zoom:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
  border-radius: 30px
}
.image-zoom-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31,18,47,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  pointer-events: none;
  backdrop-filter: blur(8px)
}
.about-photo.image-zoom .photo-stamp {
  pointer-events: none
}
.about-photo.image-zoom:after {
  content: "↗";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31,18,47,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  pointer-events: none;
  backdrop-filter: blur(8px)
}
.gallery-note {
  color: #1f1830!important
}
.cta-actions .whatsapp-button,.cta-actions .whatsapp-button:last-child,.cta-actions .call-button {
  background: var(--whatsapp)!important;
  color: #fff!important;
  border: 1px solid var(--whatsapp)!important;
  box-shadow: 0 10px 24px rgba(32,200,117,.24)!important
}
.cta-actions .whatsapp-button:hover,.cta-actions .whatsapp-button:last-child:hover,.cta-actions .call-button:hover {
  background: #18ae64!important;
  border-color: #18ae64!important;
  color: #fff!important;
  box-shadow: 0 12px 28px rgba(32,200,117,.34)!important
}
.location-button {
  background: var(--gold)!important;
  color: #fff!important;
  border-color: var(--gold)!important;
  box-shadow: 0 12px 28px rgba(231,164,58,.25)!important
}
.location-button:hover {
  background: #f0b14d!important;
  color: #fff!important;
  border-color: #f0b14d!important
}
@media(max-width:820px) {
  .container {
    width: calc(100% - 32px);
    max-width: 100%
  }
  .section,.site-header,.contact-ticker,main,footer {
    max-width: 100%;
    overflow-x: clip
  }
  .cta-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box
  }
  .about-photo,.feature-photo {
    width: 100%;
    max-width: 100%
  }
  .about-photo img,.feature-photo img {
    max-width: 100%
  }
}
@media(max-width:560px) {
  .cta-card {
    padding-left: 22px;
    padding-right: 22px
  }
  .cta-actions .btn {
    min-width: 0
  }
  .image-zoom-hint,.about-photo.image-zoom:after {
    width: 38px;
    height: 38px;
    right: 12px;
    bottom: 12px
  }
  .about-photo.image-zoom:after {
    top: 12px;
    bottom: auto
  }
}

/* === Especialidades: quatro frentes === */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 561px) {
  .specialty-grid > .specialty-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    margin-inline: auto;
  }
}

.specialty-card {
  --card-color: #5c3d8c;
  position: relative;
  min-height: 350px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, var(--card-color) 30%, var(--line));
  border-radius: 22px;
  background: #241b33;
  box-shadow: 0 12px 30px rgba(36, 21, 59, 0.08);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-color) 55%, var(--line));
  box-shadow: var(--shadow-lg);
}

.specialty-card.is-open {
  border-color: color-mix(in srgb, var(--card-color) 65%, #fff 5%);
}

.specialty-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
}

.specialty-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 31, 0.04) 8%,
    rgba(20, 14, 31, 0.12) 34%,
    color-mix(in srgb, var(--card-color) 58%, rgba(20, 14, 31, 0.9)) 100%
  );
  transition: opacity 0.35s var(--ease);
}

.specialty-card:hover .specialty-image,
.specialty-card.is-open .specialty-image {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.specialty-card:hover .specialty-overlay,
.specialty-card.is-open .specialty-overlay {
  opacity: 0.95;
}

.specialty-card .number {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-color) 88%, #fff 12%);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(20, 14, 31, 0.2);
}

.specialty-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.specialty-trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.specialty-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  transition: bottom 0.35s var(--ease);
}

.specialty-card.is-open .specialty-content {
  bottom: 164px;
}

.specialty-title {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.specialty-title small {
  display: block;
  margin-top: 3px;
  font: 600 0.75em/1.15 var(--body);
  letter-spacing: 0;
  opacity: 0.92;
}

.specialty-cta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(20, 14, 31, 0.2);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.specialty-detail {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  max-height: 138px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(20, 14, 31, 0.72);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transform: translateY(120%);
  transition:
    opacity 0.35s var(--ease),
    transform 0.45s var(--ease);
  pointer-events: none;
}

.specialty-detail[hidden] {
  display: block;
}

.specialty-card.is-open .specialty-detail:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.specialty-detail p {
  margin: 0;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.specialty-dependence {
  --card-color: #4d8d4f;
}

.specialty-alcohol {
  --card-color: #a35b36;
}

.specialty-gambling {
  --card-color: #7b4c9e;
}

@media (max-width: 820px) {
  .specialty-card {
    min-height: 330px;
  }

  .specialty-card.is-open .specialty-content {
    bottom: 158px;
  }

  .specialty-detail {
    max-height: 132px;
  }
}

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

  .specialty-card {
    min-height: 340px;
  }

  .specialty-card.is-open {
    min-height: 370px;
  }

  .specialty-card.is-open .specialty-content {
    bottom: 164px;
  }

  .specialty-detail {
    max-height: 142px;
    padding: 14px 15px;
  }

  .specialty-detail p {
    font-size: 0.8rem;
  }
}

/* === Ticker premium: ícones 3D + loop sem sobra lateral === */
.contact-ticker { position: relative; overflow: hidden; isolation: isolate; }
.contact-ticker:before, .contact-ticker:after { content: ""; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 3; pointer-events: none; }
.contact-ticker:before { left: 0; background: linear-gradient(90deg, var(--gold) 0%, rgba(231,164,58,0) 100%); }
.contact-ticker:after { right: 0; background: linear-gradient(270deg, var(--gold) 0%, rgba(231,164,58,0) 100%); }
.ticker-track { display: flex; width: max-content; min-width: max-content; will-change: transform; animation: ticker 30s linear infinite; }
.ticker-set { flex: 0 0 auto; width: max-content; height: 38px; display: flex; align-items: center; gap: 18px; padding-right: 18px; white-space: nowrap; font-size: .72rem; font-weight: 700; }
.ticker-item { display: inline-flex; align-items: center; gap: 7px; line-height: 1; }
.ticker-icon { width: 26px; height: 26px; flex: 0 0 26px; display: inline-grid; place-items: center; filter: drop-shadow(0 3px 2px rgba(76, 42, 8, .22)); transform: translateY(-.5px); }
.ticker-icon svg { width: 100%; height: 100%; display: block; overflow: visible; }
.ticker-set i { font-style: normal; color: var(--deep); }
.contact-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(calc(-1 * var(--ticker-shift, 0px)), 0, 0); } }
@media (max-width: 560px) { .ticker-set { height: 34px; font-size: .66rem; gap: 12px; } .ticker-icon { width: 22px; height: 22px; flex-basis: 22px; } .ticker-item { gap: 5px; } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; transform: none; } }

/* Ícones de contato: SVGs visuais no mesmo padrão do ticker superior */
.contact-list>a>span.contact-icon,.contact-list>div>span.contact-icon {
  background: transparent;
  color: inherit;
  padding: 0;
}
.contact-list .contact-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 3px 2px rgba(76, 42, 8, .18));
}
@media (max-width:820px) {
  .google-review-card .stars {
    transform: translateX(-10px);
  }
}
