:root {
  --brand: #A06FBD;
  --accent: #F7A8B8;
  --bg: #F9F6FB;
  --ink: #1E1E2F;
  --muted: #6B6B7A;
  --radius: 16px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem
}



h1,
h2,
h3,
h4 {
  color: var(--brand);
  line-height: 1.25;
  margin: 0 0 .6rem 0
}

h1 {
  font-size: 2.2rem;
  font-weight: 700
}

h2 {
  font-size: 2rem;
  font-weight: 700
}

h3 {
  font-size: 1.6rem;
  font-weight: 700
}

h4 {
  font-size: 1.1rem;
  font-weight: 600
}

p {
  margin: 0 0 1rem 0
}

.lead {
  font-size: 1.08rem;
  color: var(--muted)
}

.big {
  font-size: 1.12rem
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
  padding-block: .35rem
}

/* menos espaço branco */

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-name {
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--brand);
  font-size: 1.05rem
}

.brand-tag {
  font-size: .75rem;
  color: var(--muted)
}

.nav {
  display: flex;
  gap: .8rem;
  align-items: center
}

.nav a,
.nav .tab {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: .4rem .7rem;
  border-radius: 10px;
  white-space: nowrap
}

.nav .tab[aria-pressed="true"],
.nav a:hover {
  background: #f0e8f8;
  color: #5c3a7d
}

/* CTA + idiomas alinhados à direita */
.header-cta {
  display: flex;
  align-items: center;
  gap: .6rem
}

.btn-book {
  padding: .55rem 1rem
}

/* Idiomas */
.lang-switch {
  display: flex;
  gap: .25rem;
  align-items: center
}

.lang-switch .lang {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: .2rem .5rem;
  font-weight: 700;
  border-radius: 8px
}

.lang-switch .lang[aria-current="true"] {
  color: #fff;
  background: var(--brand)
}

/* --- Desktop language switch emphasis --- */
.lang-switch .lang {
  border: 1.6px solid #b79adf;
  background: #f6f0ff;
  color: #4a2d79;
  font-weight: 800;
  padding: .34rem .72rem;
  border-radius: 11px;
  box-shadow: 0 2px 4px rgba(183, 145, 214, .18) inset;
}

.lang-switch .lang:hover {
  background: #ebdbff;
  border-color: #a57ed9;
}

.lang-switch .lang[aria-current="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 2px 6px rgba(126, 71, 176, .32);
}

/* === Hamburguer (mobile) === */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:first-child {
  transform: translateY(6px) rotate(45deg)
}

.hamburger.open span:last-child {
  transform: translateY(-6px) rotate(-45deg)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .75rem 1.3rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, transform .12s ease, box-shadow .2s ease;
  box-shadow: 2px 5px 6px 0px rgb(0 0 0);
}

.btn-primary {
  background: var(--brand);
  color: #fff
}

.btn-primary:hover {
  background: #9053b7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(160, 111, 189, .28)
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand)
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff
}

.hero {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff, #9053b7a3)
}

.hero-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch
}

.hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  overflow: hidden;
  padding: 1.2rem
}

.hero-media img {
  border-radius: 14px;
  margin-bottom: 1rem
}

.hero-copy .cta-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin: .6rem 0
}

.hero-bullets {
  color: #7a7685;
  padding-left: 1.1rem;
  margin: .5rem 0 0
}

.hero-bullets li {
  margin: .2rem 0
}

.hero-grad {
  position: absolute;
  left: 0;
  right: 0;
  height: 460px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(160, 111, 189, .25) 0%, rgba(160, 111, 189, 0) 60%),
    radial-gradient(60% 60% at 50% 100%, rgba(160, 111, 189, .15) 0%, rgba(160, 111, 189, 0) 60%);
  z-index: -1
}

.hero-grad h1,
h2 {
  margin: 8px 0 6px;
}

/* Chip com brilho */
.chip {
  font-size: 12px;
  color: #5f3f73;
  background: linear-gradient(180deg, rgba(160, 111, 189, .12), rgba(160, 111, 189, .08));
  border: 1px solid rgba(160, 111, 189, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65), 0 6px 18px rgba(160, 111, 189, .12);
  padding: 6px 12px;
  border-radius: 999px
}

/* ===== Destaque para o título principal do Hero ===== */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: var(--brand);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 40%);
}

#hero h2 {
  font-size: clamp(2.5rem, 5vw, 2rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: var(--brand);
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#hero h3 {
  font-weight: 400;
  text-align: center;
}

.story {
  display: grid;
  gap: 12px;
  margin: 16px 0 8px;
}

.story .card {
  display: grid;
  gap: 8px;
}

.card.reveal {
  background: var(--card);
  border: 1px solid var(--brand);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(2, 6, 23, .04), 0 8px 24px rgba(2, 6, 23, .05)
}

.card-media {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0e0f7, #fbe7f1);
  border: 1px solid #fff;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .05);
  margin-bottom: 10px
}

.card-media img {
  height: 100%;
}


.detail {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  margin: 2rem 0
}

.detail.active {
  display: block;
  opacity: 1;
  transform: none
}

.detail-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 1rem
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 1.4rem
}

.gallery img {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  cursor: zoom-in
}

.grid {
  display: grid;
  gap: 1.2rem
}

.benefits {
  grid-template-columns: repeat(3, 1fr)
}

.benefit {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06)
}

.steps {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0 1.5rem
}

.steps li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: .4rem .8rem
}

.cards {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1rem
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(160, 111, 189, .08);
  padding: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 4px solid transparent
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(160, 111, 189, .18);
  border-top-color: var(--accent)
}

.card.highlight {
  border: 2px solid var(--brand);
  box-shadow: 0 1px 2px rgb(2 6 23), 5px 7px 24px rgb(2 6 23 / 78%);
}

.card .badge {
  background: var(--brand);
  color: #fff;
  font-size: .8rem;
  padding: .2rem .6rem;
  border-radius: 8px;
  margin-bottom: .4rem;
  /*display: inline-block;*/
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.view-price-list {
  display: none;
}

.xnav,
.view-price-list.active {
  display: flex;
  justify-content: center;
  margin-top: .5rem
}


.price-list {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  margin: 2rem 0
}

.price-list.active {
  display: block;
  opacity: 1;
  transform: none
}

.price-list .card{
  text-align: justify;
}

.price-list .card h4{
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
}

.price-list .card h5{
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--brand);
  margin:unset;
  
}

.price-list .card p{
  color: #000000ab;
}

.price-list .card ul{
  margin:unset;
  text-align: left;
}

.price-list .card .package_quote{
  margin:20px;
}

.combo-price{
  background: var(--brand);
    color: #fff;
    font-size: .8rem;
    padding: .2rem .6rem;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: .4rem;
    /* display: inline-block; */
    text-align: center;
}

.show-price-list {
  display: inline-flex;
}


.price-row {
  margin: .5rem 0 0;
  color: #6b6575;
  text-align: center ;
  margin-top: 20px;
}

.price-row strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand);
  text-align: center !important;
}

.bullets {
  padding-left: 1.1rem;
  color: #6b6575
}

.bullets li {
  margin: .3rem 0
}

.muted {
  color: #7a7685
}



.section {
  padding: 2.5rem 0
}

.section.alt {
  background: #fff
}

.testimonials {
  grid-template-columns: repeat(3, 1fr)
}

.tcard {
  background: #fff;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 1rem 1rem 1rem 1.2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06)
}

.ig-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-top: 1rem
}

#faq{
  background: linear-gradient(180deg, #a06fbd, #a06fbd26);
}

#faq h3 {
  color: #fff !important;
  text-shadow: 12px 12px 20px rgb(0 0 0) !important;
}

.faq details {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: .8rem 1rem;
  margin: .5rem 0
}

.faq summary {
  cursor: pointer;
  font-weight: 700
}

.contact {
  text-align: center
}

.contact-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  color: #7a7685;
  margin-top: .75rem
}

.contact .ig {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #1E1E2F;
  text-decoration: none
}

.contact .ig:hover {
  color: var(--brand)
}

.footer {
  background: #fff;
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid #eee
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap
}

.footer .ig {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700
}

.footer .ig:hover {
  color: var(--brand)
}

.wa-sticky {
  position: fixed;
  bottom: 4.2rem;
  right: 1.2rem;
  background: #25D366;
  color: #fff;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
  transition: transform .2s ease, opacity .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  z-index: 60
}

.wa-sticky:hover {
  transform: scale(1.05)
}

.wa-icon {
  display: block
}

.to-top {
  position: fixed;
  bottom: 1.2rem;
  right: 3.2rem;
  background: #fff;
  color: var(--ink);
  padding: .6rem .8rem;
  border-radius: 999px;
  border: 1px solid #e9e1f2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  cursor: pointer;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 60
}

.to-top.show {
  opacity: 1;
  pointer-events: auto
}

.to-top:hover {
  transform: translateY(-2px)
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  z-index: 80
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  flex: 1
}

.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.cookie-banner .btn {
  padding: .6rem 1rem
}

.cookie-banner .btn-outline {
  color: #1E1E2F;
  border-color: #d1c6e6
}



.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 70
}

.lb-backdrop.show {
  opacity: 1;
  pointer-events: auto
}

.lb-frame {
  background: #000;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden
}

.lb-img {
  max-width: 100%;
  max-height: 85vh;
  display: block
}

.lb-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: .5rem .75rem;
  font-size: .9rem
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .9);
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.lb-prev {
  left: 8px
}

.lb-next {
  right: 8px
}

.lb-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  font-size: 18px;
  cursor: pointer
}







/* Normalize nav link styles */
.nav a,
.nav .tab,
.nav .tab-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: .4rem .7rem;
  border-radius: 10px;
  white-space: nowrap
}

.nav .tab-link[aria-current="page"],
.nav a:hover {
  background: #f0e8f8;
  color: #5c3a7d
}




/* --- Nav visual consistency (desktop) --- */
.nav a,
.nav .tab-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: transparent;
  padding: .4rem .7rem;
  border-radius: 8px;
}

.nav a:hover,
.nav .tab-link:hover {
  color: #5c3a7d;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav .tab-link[aria-current="page"] {
  color: #7a4db1;
  text-decoration: underline;
  text-underline-offset: 6px;
}





/* === Anchor scrolling robustness === */
#sleepover,
#balloons,
#reviews,
#faq,
#contact {
  scroll-margin-top: 84px;
}

/* === Uniform nav styles (no special pill for Sleepovers/Balloons) === */
.nav a,
.nav .tab-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: transparent;
  padding: .4rem .7rem;
  border-radius: 8px;
}

.nav a:hover,
.nav .tab-link:hover {
  color: #5c3a7d;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav a[aria-current="page"],
.nav .tab-link[aria-current="page"] {
  color: #7a4db1;
  text-decoration: underline;
  text-underline-offset: 6px;
  background: transparent;
}

/* Anchor offsets for sticky header */
#sleepover,
#balloons,
#reviews,
#faq,
#contact {
  scroll-margin-top: 84px;
}

.separator {
  border: none;
  border-top: 2px solid #a06fbd69;
  margin: 60px auto;
  width: 50%;
  box-shadow: 1px 1px 13px 10px #a06fbd30;
}

/* === Gallery Slider Styles === */


.gallery-slider h3,
.price-list h3,
.testimonials h3,
#faq h3,
#contact h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: var(--brand);
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.gallery-slider p,
.price-list p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.gallery-slider .container {
  padding: 0px;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
}

.slides {
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  padding: 10px;
}

.slide .ph,
.slide-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0e0f7, #fbe7f1);
  border: 1px solid #fff;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .05);
  object-fit: cover;
  display: block;
}

/* Controles */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 6px 18px rgba(2, 6, 23, .12);
  font-size: 22px;
  line-height: 1;
  color: var(--brand);
  z-index: 10;
}

.slider-btn:hover {
  background: #fff
}

.slider-btn.prev {
  left: 15px
}

.slider-btn.next {
  right: 15px
}

/* Dots */
.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(160, 111, 189, .35);
}

.dot.active {
  background: var(--brand);
}

/* ===== Secção de Testemunhos ===== */
.testimonials {
  padding: 4rem 1.5rem;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--brand);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials blockquote {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  font-style: italic;
}

.testimonials footer {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--muted);
}



/* ===== Testemunhos: cartão com avatar e rating ===== */
.testimonials-grid {
  align-items: stretch
}

.testimonial-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-areas:
    "avatar quote"
    "avatar meta";
  gap: 0.75rem 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
}

.testimonial-card .avatar {
  grid-area: avatar;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.testimonial-card blockquote {
  grid-area: quote;
  margin: 0;
  font-style: italic;
}

.testimonial-card figcaption {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: space-between;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--muted)
}

.rating span {
  font-size: 1rem;
  line-height: 1
}

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



.testimonials {
  background: #fafafa;
  border-top: 1px solid rgba(2, 6, 23, 0.06);
}

/* ===== Fixes de formatação da secção de Testemunhos ===== */
.testimonial-card {
  position: relative;
}

.testimonial-card .avatar {
  width: 64px;
  height: 64px;
  align-self: start;
}

.testimonial-card blockquote {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.testimonial-card blockquote p {
  margin: 0;
}

.testimonial-card figcaption {
  margin-top: .25rem;
}

.testimonial-card .rating {
  display: flex;
  align-items: center;
  gap: .25rem;
  letter-spacing: 1px;
}

.testimonial-card .author {
  margin-left: auto;
}



/* ===== Novo layout dos Testemunhos (foto maior, rating em cima, texto e nome em baixo) ===== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card .rating {
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  letter-spacing: 1px;
}

.testimonial-card .testimonial-photo {
  width: 100%;
  max-width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #eee;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card .testimonial-text {
  font-style: italic;
  color: #333;
  margin-bottom: .75rem;
}

.testimonial-card .testimonial-author {
  font-weight: 600;
  color: var(--muted);
}

/* Garantir que antigos estilos não interferem */
.testimonial-card blockquote,
.testimonial-card .avatar {
  display: none !important;
}



/* ===== Estrelas do rating (dinâmico) ===== */
.rating {
  display: flex;
  justify-content: center;
  gap: 2px;
  font-size: 1.2rem;
}

.rating .star {
  transition: color .3s ease;
}

.rating .star.filled {
  color: #F6B400;
}

/* dourado */
.rating .star.empty {
  color: #D0D0D0;
}



/* ===== Half-star rendering with overlay and hover color change ===== */
.rating {
  display: flex;
  justify-content: center;
  gap: 2px;
  font-size: 1.2rem;
  line-height: 1;
}

.rating .star {
  position: relative;
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
}

.rating .star::before {
  content: '★';
  position: absolute;
  inset: 0;
  color: #D0D0D0;
}

.rating .star::after {
  content: '★';
  position: absolute;
  inset: 0;
  width: var(--p, 0%);
  overflow: hidden;
  color: #F6B400;
}

.testimonial-card:hover .rating .star::after,
.rating:hover .star::after {
  color: var(--brand);
}

/* ===== Imagens consistentes (testemunhos + story cards) ===== */
.card-media,
.testimonial-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* proporção visual padronizada */
  object-fit: cover;
  /* mantém proporção e corta excessos */
  border-radius: 12px;
  background: #eee;
  /* cor neutra de fundo */
  display: block;
  overflow: hidden;
}

/* Um pouco de sombra e suavização em hover */
.card-media:hover,
.testimonial-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-photo.vertical {
  aspect-ratio: 3 / 4;
  /* proporção vertical */
  height: unset;
}

/* ===============================
   QUOTE BLOCK – Freudentipis style
   =============================== */
.quote-block {
  background: linear-gradient(135deg, #f7f3ff 0%, #ffffff 100%);
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: "“";
  font-size: 12rem;
  color: rgba(123, 77, 177, 0.05);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  pointer-events: none;
}

.quote-inner {
  max-width: 800px;
}

p.quote-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--brand, #3a2a4f) !important;
  margin-bottom: 1rem;
}

.quote-author {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a4db1;
}

#sleep-price-list .cards{
  max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-block {
    padding: 3rem 1rem;
  }
  .quote-text {
    font-size: 1.2rem;
  }
}
/* === Reduced Motion Preference === */

@media (prefers-reduced-motion: reduce) {

  .btn,
  .card,
  .hero-media img,
  .wa-sticky,
  .to-top,
  .lb-backdrop,
  .detail {
    transition: none
  }
}

/* === Media Queries === */
@media (min-width: 680px) {
  .story {
    grid-template-columns: 1fr 1fr;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
  }

  .slider.balloon .slide-img {
    aspect-ratio: 16/9;
    height: 690px;
    max-width: 620px;
    margin-bottom: 10px;
  }

  .slide-img {
    aspect-ratio: 4/3;
    margin-bottom: 10px;
  }

  .galalery-slider .slider.balloon {
    max-width: 620px;
    height: 720px;
  }
}

@media (min-width:760px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    max-width: 520px
  }
}

@media (min-width: 920px) {

  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 24px
  }

  .hero-grad {
    inset: 0;
    height: auto;
  }



  .grid-2 .cta {
    flex-direction: column;
    gap: 12px;
  }

  .grid-2 .cta .btn {
    width: 100%;
  }


  .gallery-slider .container {
    max-width: 980px;
    margin-inline: auto;
  }

  .gallery-slider .slider {
    max-width: 820px;
    margin: 8px auto 0;
  }

  .gallery-slider .slider.balloon {
    max-width: 620px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    grid-template-columns: 48px 1fr;
    border-radius: 10px;
  }

  .testimonial-card .avatar {
    width: 48px;
    height: 48px
  }

  .slider.balloon .slides .slide-img{
    aspect-ratio: 9/16;
  }
}

@media(max-width:600px) {
  .gallery {
    grid-template-columns: 1fr
  }
}

@media(max-width:700px) {
  .hero-card {
    grid-template-columns: 1fr;
    gap: .8rem
  }

  .hero-equal {
    grid-template-columns: 1fr
  }
}

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

  .cards {
    grid-template-columns: 1fr
  }

  .testimonials {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr 1fr
  }
}

/* === Responsivo: colapsar para drawer simples === */
@media(max-width:980px) {
  .nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #eee;
    transform: translateY(-120%);
    transition: transform .2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
  }

  .nav.open {
    transform: translateY(0)
  }

  .hamburger {
    display: inline-flex
  }

  .header-inner {
    gap: .6rem
  }

  .brand-name {
    font-size: 1rem
  }

  .brand-tag {
    font-size: .72rem
  }

  .header-cta {
    gap: .4rem
  }

  .btn-book {
    padding: .5rem .9rem
  }

  .brand {
    order: 1;
    flex: 1;
  }

  .header-cta {
    order: 2;
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  .btn-book {
    order: 2;
    padding: .55rem 1.1rem;
    font-weight: 800;
    font-size: .75rem;
    color: #fff;
    border-radius: 24px;
    background: linear-gradient(180deg, #a373d1, #8b5bb7);
    box-shadow: 0 8px 22px rgba(143, 90, 184, .28);
  }

  .hamburger {
    order: 3;
    margin-right: .25rem;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
  }

  /* Floating dropdown aligned right */
  .nav {
    position: fixed;
    top: 72px;
    right: 1rem;
    left: auto;
    width: min(320px, calc(100vw - 2rem));
    max-height: min(78vh, 520px);
    overflow: auto;
    padding: .6rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    z-index: 1001;
  }

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

  .nav a,
  .nav .tab-link {
    display: block;
    text-align: center;
    padding: .75rem 1rem;
    font-weight: 800;
  }

  /* Language switch only inside menu on mobile */
  .header-cta .lang-switch {
    display: none !important;
  }

  .nav .lang-switch {
    display: flex;
    justify-content: center;
    gap: .35rem;
    border-top: 1px dashed #eee;
    margin-top: .45rem;
    padding-top: .6rem;
  }
}

/* HAMBURGER STACK v2 */
@media(max-width:980px) {
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px
  }
}

/* FLOATING MENU RIGHT v2 */
@media(max-width:980px) {
  .nav {
    position: fixed;
    top: 72px;
    right: 1rem;
    left: auto;
    width: min(320px, calc(100vw - 2rem));
    max-height: min(78vh, 520px);
    overflow: auto;
    padding: .6rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    z-index: 1001
  }

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

  .nav a,
  .nav .tab-link {
    display: block;
    text-align: center;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-weight: 800
  }

  .nav .lang-switch {
    justify-content: center;
    border-top: 1px dashed #eee;
    margin-top: .4rem;
    padding-top: .6rem
  }
}

