:root {
  --purple: #6C2D8C;
  --purple-dark: #4A1D63;
  --purple-deep: #2E1240;
  --orange: #F2803D;
  --orange-dark: #D8641F;
  --lime: #A4C639;
  --lime-dark: #86A82C;
  --gold: #F4C33D;
  --gold-soft: #FCE9B8;
  --cream: #FBF1DC;
  --ink: #33163F;
  --ink-soft: #6B5578;
  --white: #ffffff;
  --off-white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 16px 36px rgba(46, 18, 64, 0.14);
  --font-heading: 'Baloo 2', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 .5em;
  line-height: 1.15;
  color: var(--purple-dark);
}
p { margin: 0 0 1em; line-height: 1.6; color: var(--ink-soft); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-accent { display: flex; flex-direction: column; gap: 4px; width: 70px; margin: 0 auto 14px; }
.section-accent span { display: block; height: 4px; border-radius: 4px; }
.section-accent span:first-child { background: var(--lime); width: 100%; }
.section-accent span:last-child { background: var(--purple); width: 60%; margin: 0 auto; }

.eyebrow {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  color: var(--white); background: rgba(244, 195, 61, .22);
  border: 1px solid rgba(244, 195, 61, .55);
  padding: 6px 16px; border-radius: 999px; font-size: .82rem; margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .75em 1.5em; border-radius: 8px; font-weight: 800;
  font-family: var(--font-body); font-size: .92rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: .95em 1.9em; font-size: 1rem; }
.btn-primary { background: var(--gold); color: var(--purple-deep); box-shadow: 0 10px 22px rgba(244,195,61,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(244,195,61,.5); }
.btn-outline { background: transparent; color: var(--purple-dark); border: 2px solid var(--purple-dark); }
.btn-outline:hover { background: var(--purple-dark); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }

/* CTA com pulso sutil — só nos 1-2 pontos-chave de conversão (ver .btn-cta-pulse) */
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 22px rgba(244,195,61,.4); }
  50% { transform: scale(1.045); box-shadow: 0 12px 28px rgba(244,195,61,.65); }
}
.btn-cta-pulse { animation: cta-pulse 2.6s ease-in-out infinite; }
.btn-cta-pulse:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .btn-cta-pulse { animation: none; }
}

/* ===== HEADER fixo ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(120deg, var(--purple-deep) 0%, var(--purple-dark) 100%);
  box-shadow: 0 4px 20px rgba(46,18,64,.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 1.08rem; color: var(--white); white-space: nowrap; }
.logo-mark { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(244,195,61,.5); flex-shrink: 0; }
.logo-word span { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-weight: 700; font-size: .92rem; color: rgba(255,255,255,.82); transition: color .2s; }
.main-nav a:hover { color: var(--gold); }
.main-nav-logo { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 3px; border-radius: 2px; background: var(--white); }

/* ===== HERO grande com slideshow ===== */
.hero { position: relative; min-height: 92vh; overflow: hidden; display: flex; align-items: center; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease;
  background-color: var(--purple-dark);
  background-image: linear-gradient(135deg, var(--purple), var(--purple-deep));
  background-size: cover !important; background-position: center !important;
  background-repeat: no-repeat;
  touch-action: pan-y;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, rgba(46,18,64,.92) 0%, rgba(46,18,64,.55) 32%, rgba(46,18,64,.25) 60%, rgba(46,18,64,.35) 100%),
    linear-gradient(100deg, rgba(46,18,64,.55) 0%, transparent 55%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 90px; }
.hero-copy { max-width: 680px; }
.hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); color: var(--white); margin-bottom: .4em; }
.text-accent { color: var(--gold); }
.hero-lead { font-size: 1.12rem; color: rgba(255,255,255,.9); max-width: 50ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 34px; }

.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.78); font-weight: 600; max-width: 16ch; }

.hero-dots {
  position: absolute; z-index: 3; bottom: 26px; right: 34px;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45);
  border: none; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.hero-dot.is-active { background: var(--gold); transform: scale(1.25); }

/* ===== FILEIRA DE ICONES ===== */
.diferenciais { padding: 46px 0; background: var(--white); border-bottom: 1px solid rgba(46,18,64,.06); }
.icon-row { display: flex; justify-content: space-between; }
.icon-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 0 10px; position: relative;
}
.icon-item + .icon-item::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px;
  background: rgba(46,18,64,.1);
}
.icon-item svg { width: 34px; height: 34px; }
.icon-item span { font-family: var(--font-heading); font-size: .78rem; font-weight: 600; color: var(--purple-dark); line-height: 1.25; max-width: 110px; }

/* ===== DESTAQUES ===== */
.destaques {
  padding: 80px 0; background: var(--cream);
  background-image:
    radial-gradient(rgba(108,45,140,.07) 1.5px, transparent 1.5px),
    radial-gradient(rgba(108,45,140,.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
}
.destaques-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.card-destaque {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  border-top: 5px solid var(--orange);
}
.card-destaque:nth-child(2) { border-top-color: var(--lime); }
.ph-destaque { aspect-ratio: 16/10; }
.card-destaque-body { padding: 24px 26px 28px; }
.card-destaque h3 { font-size: 1.2rem; margin-bottom: .4em; }
.card-destaque p { font-size: .92rem; margin-bottom: .8em; }
.card-destaque .link-arrow { font-size: .88rem; }

.destaques-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 44px;
}

.link-arrow { display: inline-flex; font-weight: 700; color: var(--purple); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.link-arrow:hover { color: var(--purple-dark); }

/* ===== SOBRE O ESPAÇO ===== */
.sobre { padding: 90px 0; background: var(--white); }
.sobre-inner { display: grid; grid-template-columns: .85fr 1fr; gap: 56px; align-items: center; }
.sobre-photo {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden;
}
.sobre-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center;
}
.sobre-text .eyebrow { color: var(--purple-dark); background: rgba(108,45,140,.08); border-color: rgba(108,45,140,.25); }
.section-title-alt { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.sobre-list { list-style: none; margin: 20px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sobre-list li { position: relative; padding-left: 32px; color: var(--ink-soft); font-weight: 700; font-size: .96rem; }
.sobre-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime-dark); color: var(--white);
  font-size: .72rem; display: flex; align-items: center; justify-content: center;
}

/* ===== INFORMAÇÕES E RESERVA ===== */
.info-reserva { padding: 80px 0; background: var(--cream); }
.info-reserva-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.info-reserva-item {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  padding: 28px 24px; text-align: center; border-top: 4px solid var(--gold);
}
.info-reserva-item:nth-child(2) { border-top-color: var(--orange); }
.info-reserva-item:nth-child(3) { border-top-color: var(--lime); }
.info-reserva-item:nth-child(4) { border-top-color: var(--purple); }
.info-reserva-item svg { width: 34px; height: 34px; margin-bottom: 14px; }
.info-reserva-item h3 { font-size: 1.02rem; margin-bottom: .5em; }
.info-reserva-item p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ===== FIL INFO ===== */
.fil-info { background: var(--lime); }
.fil-info-inner { display: flex; align-items: stretch; gap: 0; min-height: 60px; }
.fil-info-label {
  flex-shrink: 0; background: var(--purple-deep); color: var(--white);
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; gap: 8px; padding: 0 26px;
}
.fil-info-label svg { width: 18px; height: 18px; flex-shrink: 0; }
.fil-info-text {
  flex: 1; display: flex; align-items: center; padding: 0 24px;
  font-weight: 700; color: var(--purple-deep); font-size: .96rem;
}
.fil-info-arrows { flex-shrink: 0; display: flex; align-items: center; gap: 8px; padding: 0 20px; }
.fil-info-arrows button {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--purple-deep);
  background: transparent; color: var(--purple-deep); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.fil-info-arrows button:hover { background: var(--purple-deep); color: var(--white); }

/* ===== GALERIA ===== */
.galeria { padding: 90px 0; background: var(--white); }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-galeria {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .35s ease;
  aspect-ratio: 1/1;
}
.card-galeria:hover { transform: scale(1.03); }
.card-galeria::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46,18,64,.85) 100%);
}
.card-galeria h3 {
  position: absolute; z-index: 2; left: 16px; bottom: 14px; right: 16px;
  color: var(--white); font-size: .92rem; margin: 0;
}
.card-galeria--soft .card-galeria-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: blur(.6px) contrast(1.03) saturate(1.05);
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative; overflow: hidden; text-align: center; padding: 90px 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}
.cta-final h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-final p { max-width: 52ch; margin: 0 auto 30px; color: rgba(255,255,255,.85); }

/* ===== FOOTER ===== */
.site-footer {
  position: relative; background: var(--purple-deep); color: rgba(255,255,255,.85);
  padding: 70px 0 26px; overflow: hidden;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.5px),
    radial-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
}
.footer-shape-a, .footer-shape-b {
  position: absolute; z-index: 0; background: rgba(255,255,255,.05);
}
.footer-shape-a { width: 60%; height: 220%; top: -60%; left: -18%; transform: rotate(18deg); background: rgba(164,198,57,.07); }
.footer-shape-b { width: 40%; height: 200%; top: -50%; left: 10%; transform: rotate(12deg); background: rgba(242,128,61,.05); }

.footer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col h4 { color: var(--white); font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col p, .footer-col a { display: block; font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-col .btn { margin-top: 10px; }

.horario-lista { display: flex; flex-direction: column; gap: 6px; }
.horario-row { display: flex; justify-content: space-between; font-size: .86rem; gap: 12px; }
.horario-row span:first-child { color: rgba(255,255,255,.6); }
.footer-muted { font-style: italic; color: rgba(255,255,255,.5); }

.footer-signature { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-signature img { width: 96px; height: 96px; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg path { stroke: var(--purple-deep); }

.footer-bottom { position: relative; z-index: 1; padding-top: 22px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-photo { order: -1; }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .info-reserva-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-signature { grid-column: span 2; align-items: flex-start; }
  .icon-row { flex-wrap: wrap; row-gap: 24px; }
  .icon-item { flex: 1 1 33%; }
  .icon-item + .icon-item::before { display: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: var(--purple-dark); flex-direction: column; padding: 40px 32px; gap: 6px; align-items: flex-start;
    transition: right .3s ease; z-index: 99;
  }
  .main-nav.is-open { right: 0; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
  .main-nav-logo { display: block; width: 64px; height: 64px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,.3); margin-bottom: 20px; }
  .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .logo span { display: none; }

  .hero { min-height: 60vh; }
  .hero-inner { padding-top: 88px; padding-bottom: 36px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-stats { display: none; }

  .hero-slide:nth-child(2) { background-position: 25% center !important; }
  .hero-slide:nth-child(3) { background-position: 75% center !important; }
  .hero-slide:nth-child(4) { background-position: 75% center !important; }

  .destaques-grid { grid-template-columns: 1fr; }
  .destaques-controls { flex-direction: column; gap: 12px; }
  .destaques-controls .btn { width: 100%; max-width: 320px; }

  .galeria-grid { grid-template-columns: repeat(2, 1fr); }

  .info-reserva-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-signature { grid-column: auto; }

  .fil-info-inner { flex-direction: column; align-items: stretch; min-height: 0; }
  .fil-info-label { padding: 10px 16px; justify-content: center; }
  .fil-info-text {
    flex: none; padding: 14px 16px; text-align: center;
    height: 100px; line-height: 1.4; overflow: hidden;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
    align-items: center;
  }
  .fil-info-arrows { justify-content: center; padding: 0 16px 16px; }
}
