/* ============================================
   Pousadinha da Praça — Design System
   Identidade: azul-céu, amarelo-flor, creme,
   barro. Música, aconchego, interior.
============================================ */

:root {
  /* Brand palette — derived from logo + fachada */
  --sky:        #7AB6DE;     /* azul fachada/logo */
  --sky-deep:   #5B98C4;     /* azul mais saturado p/ hover */
  --sky-soft:   #DBEBF6;     /* azul lavado p/ blocos */
  --sky-tint:   #F1F7FB;     /* azul fantasma */

  --sun:        #F5C84C;     /* amarelo flor */
  --sun-soft:   #FBE9A8;
  --sun-deep:   #DDA82E;

  --terra:      #C97D5D;     /* telha de barro */
  --terra-soft: #EFD4C6;

  --cream:      #F5F5F1;     /* off-white levemente neutro */
  --cream-deep: #ECECE7;
  --paper:      #FCFCFB;     /* branco quase puro */

  --ink:        #1F2A36;     /* texto principal */
  --ink-soft:   #4B5A6B;     /* texto secundário */
  --ink-mute:   #8896A3;     /* texto fraco */
  --line:       #E4E4DE;     /* linhas e divisores */

  /* Type */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body:    "Open Sans", system-ui, sans-serif;
  --font-script:  "Caveat", "Poppins", cursive;

  /* Layout */
  --container: 1240px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(31,42,54,.04), 0 4px 14px -8px rgba(31,42,54,.08);
  --shadow-md: 0 2px 6px rgba(31,42,54,.06), 0 18px 40px -22px rgba(31,42,54,.18);
  --shadow-lg: 0 8px 18px rgba(31,42,54,.08), 0 30px 60px -28px rgba(31,42,54,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 251, 0.97);
  /* sem backdrop-filter: ele tornava o header o containing block do
     .mobile-menu (position:fixed) e quebrava o overlay de tela cheia */
  border-bottom: 1px solid rgba(228, 228, 222, 0.7);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 60px;
  width: auto;
}
.brand-meta {
  display: none;
  font-family: var(--font-script);
  color: var(--sky-deep);
  font-size: 20px;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: width .3s ease, left .3s ease;
}
.nav a:hover, .nav a.active {
  color: var(--ink);
}
.nav a:hover::after, .nav a.active::after {
  width: 22px;
  left: calc(50% - 11px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--sky);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 0 var(--sky-deep), 0 14px 30px -10px rgba(91, 152, 196, 0.55);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
  background: var(--sky-deep);
  transform: translateY(-1px);
  box-shadow: 0 2px 0 var(--sky-deep), 0 18px 36px -10px rgba(91, 152, 196, 0.7);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: none;
}
.btn--sun {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(0,0,0,0.08), 0 14px 30px -10px rgba(0,0,0,0.25);
}
.btn--sun:hover {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(0,0,0,0.08), 0 18px 36px -10px rgba(0,0,0,0.35);
}
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn .wa {
  width: 18px; height: 18px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--sky-deep);
}
.script {
  font-family: var(--font-script);
  color: var(--sky-deep);
  font-weight: 500;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 0;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 40% 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(245, 200, 76, 0.10), transparent 55%),
    radial-gradient(ellipse at 0% 50%, rgba(122, 182, 222, 0.14), transparent 55%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { padding: 24px 0 64px; }
.hero h1 {
  font-size: clamp(44px, 5.4vw, 78px);
  margin: 22px 0 24px;
}
.hero h1 .accent {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent .underline {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -6px;
  height: 14px;
  pointer-events: none;
}
.hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--sky-deep);
  font-weight: 500;
  letter-spacing: 0;
}
.hero-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-note .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4FAE6B;
  box-shadow: 0 0 0 3px rgba(79, 174, 107, 0.18);
}

.hero-figure {
  position: relative;
  padding: 36px 0 64px;
}
.hero-figure .photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  transform: rotate(0.6deg);
}
.hero-figure .photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-figure .card-praca {
  position: absolute;
  left: -36px;
  bottom: 24px;
  width: 230px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
}
.hero-figure .card-praca .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-figure .card-praca .text {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  font-size: 15px;
}
.hero-figure .card-rating {
  position: absolute;
  right: -28px;
  top: 60px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transform: rotate(2deg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-figure .card-rating .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.hero-figure .card-rating .meta {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.3;
}
.hero-figure .card-rating .stars {
  color: var(--sun-deep);
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--sky);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--sky-deep);
  border-bottom: 1px solid var(--sky-deep);
}
.strip-inner {
  display: flex;
  gap: 56px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.strip span::after {
  content: "•";
  color: rgba(255,255,255,0.65);
  font-size: 20px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
section { padding: 110px 0; position: relative; }
section.cream { background: var(--cream); }
section.sky-soft { background: var(--sky-tint); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  margin-top: 18px;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
}
.section-head.center p { max-width: 600px; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sky);
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature:hover::before { transform: translateX(0); }

.feature .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sky-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--sky-deep);
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Rooms ---------- */
.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.room {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.room:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.room .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.room .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.room:hover .img-wrap img { transform: scale(1.04); }
.room .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.room .body { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.room h3 { font-size: 26px; margin-bottom: 4px; }
.room .sub {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.room .desc {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 22px;
}
.room .specs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--ink-soft);
}
.room .specs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.room .specs svg { color: var(--sky-deep); }
.room .footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room .footer .price {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 14px;
}
.room .footer .price b {
  font-size: 24px;
  margin-right: 4px;
}
.room .more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--sky-deep);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1.5px solid var(--sky-deep);
  padding-bottom: 2px;
}

/* ---------- Breakfast / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split .img-stack {
  position: relative;
  aspect-ratio: 4 / 5;
}
.split .img-stack .main {
  position: absolute;
  inset: 0 14% 14% 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split .img-stack .main img { width: 100%; height: 100%; object-fit: cover; }
.split .img-stack .frame {
  position: absolute;
  right: 0; bottom: 0;
  width: 38%; aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: var(--sky);
  color: white;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
}
.split .img-stack .frame .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: white;
  line-height: 1;
}
.split .img-stack .frame .lbl {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  margin-top: 6px;
  font-weight: 600;
}
.split h2 { font-size: clamp(34px, 4vw, 52px); margin: 18px 0 22px; }
.split p { font-size: 17px; color: var(--ink-soft); }
.split p + p { margin-top: 16px; }
.split .signoff {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--sky-deep);
  margin-top: 28px;
  display: block;
}

/* ---------- Location list ---------- */
.list-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 36px;
  display: grid;
  gap: 16px;
}
.list-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
}
.list-points li .bullet {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky-deep);
  display: grid; place-items: center;
  margin-top: 1px;
}

/* ---------- Experience gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.gallery .gi {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery .gi img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g1 { grid-column: span 7; aspect-ratio: 16/10; }
.gallery .g2 { grid-column: span 5; aspect-ratio: 16/10; }
.gallery .gi .caption {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(31, 42, 54, 0.78);
  color: var(--cream);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Testimonial / quote ---------- */
.quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote .mark {
  font-family: var(--font-display);
  color: var(--sky);
  font-size: 80px;
  line-height: 0.7;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  margin: 18px 0 30px;
  letter-spacing: -0.01em;
}
.quote .author {
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--sky);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta::before {
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.08);
  top: -160px; right: -120px;
}
.cta::after {
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.10);
  bottom: -120px; left: -60px;
}
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta h2 {
  color: white;
  font-size: clamp(36px, 4.4vw, 60px);
  margin-bottom: 22px;
}
.cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream);
  color: var(--ink);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer .brand-block img {
  height: 70px;
  opacity: 1;
  margin-bottom: 18px;
  filter: none;
}
.site-footer .brand-block p {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 290px;
}
.site-footer h4 {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.site-footer .col a {
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer .col a:hover { color: var(--sky-deep); }
.site-footer .bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ---------- Float WA ---------- */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,.18);
  transition: transform .25s ease;
}
.float-wa:hover { transform: scale(1.06); }

/* ---------- Responsive ---------- */
/* ---------- Mobile menu ---------- */
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--ink);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--paper);
  z-index: 49;
  padding: 32px 28px;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.active { color: var(--sky-deep); }
.mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
  font-size: 16px;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { order: 2; padding: 8px 0 56px; }
  .hero-figure { order: 1; padding: 8px 0 0; }
  .hero-figure .photo { aspect-ratio: 4/3; transform: none; }
  .hero-figure .card-praca, .hero-figure .card-rating { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .rooms, .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse > :first-child { order: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g1, .gallery .g2 { grid-column: span 12; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-menu { display: flex; }
  section { padding: 72px 0; }
  .hero { padding: 20px 0 0; }
  h1 { font-size: clamp(34px, 8vw, 56px) !important; }
  .container { padding: 0 20px; }
  .site-header .row { height: 72px; }
  .brand img { height: 50px; }
  .mobile-menu { inset: 72px 0 0 0; }
}
@media (max-width: 540px) {
  .features { grid-template-columns: 1fr; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .site-footer .bottom { flex-direction: column; gap: 10px; }
}
