/* ============================================================
   SJPII CASA DE RETIRO — DESIGN SYSTEM v5
   Cores e fontes conforme manual de marca oficial
   Onda Criative · ondacreative.com.br
   ============================================================ */

/*
  FONTES PERSONALIZADAS — Manual de Marca
  Coloque os arquivos de fonte na pasta: assets/fonts/
  Formatos necessários: .woff2 e .woff

  Candelize     → candelize.woff2 / candelize.woff
  Aloevera Display → aloevera-display.woff2 / aloevera-display.woff
*/
/* FONTES CUSTOM DESATIVADAS TEMPORARIAMENTE
@font-face_DISABLED {
  font-family: 'Candelize';
  src: url('../fonts/candelize.woff2') format('woff2'),
       url('../fonts/candelize.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* FONTES CUSTOM DESATIVADAS TEMPORARIAMENTE
@font-face_DISABLED {
  font-family: 'Aloevera Display';
  src: url('../fonts/aloevera-display.woff2') format('woff2'),
       url('../fonts/aloevera-display.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Google Fonts como fallback legível enquanto as fontes custom não estão */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Raleway:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  /* === CORES OFICIAIS DO MANUAL DE MARCA === */
  --terra:       #d48c46;   /* Acolhimento */
  --terra-dark:  #b8742a;
  --terra-light: #fdf3e0;
  --teal:        #347281;   /* Virgem Maria */
  --teal-dark:   #265a6a;
  --teal-light:  #e6f3f5;

  /* Complementares */
  --green:       #2d5a3d;
  --sand:        #F5EFE0;
  --sand-dark:   #E8DFCA;
  --cream:       #FDFAF5;
  --white:       #ffffff;
  --ink:         #1E1A14;
  --mid:         #5A5040;
  --muted:       #9A9080;
  --border:      #E0D8C8;

  /* === FONTES DO MANUAL === */
  --font-display: 'Cormorant Garamond', Georgia, serif;          /* Titulo principal */
  --font-alt:     'Cormorant Garamond', Georgia, serif;   /* Subtitulos e destaques */
  --font-ui:      'Raleway', sans-serif;                  /* Interface */
  --font-body:    'Lato', sans-serif;                     /* Texto corrido */

  --radius:    6px;
  --radius-lg: 14px;
  --shadow:    0 4px 24px rgba(30,20,10,0.08);
  --shadow-lg: 0 12px 48px rgba(30,20,10,0.14);
  --max-w:     1180px;
  --pad:       96px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* TIPOGRAFIA */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: normal; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: normal; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: normal; }
p  { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 10px;
}

.section-intro { font-size: 1.1rem; color: var(--mid); max-width: 600px; line-height: 1.85; }
.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

/* BOTOES */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius);
  transition: all 0.25s; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark) !important; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); padding: 12px 28px; }
.btn-ghost:hover { background: var(--terra); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0 24px; transition: all 0.35s ease;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 104px;
}

.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-family: var(--font-ui); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.site-header.scrolled .site-nav a { color: var(--mid); }
.site-header.scrolled .site-nav a:hover { color: var(--terra); }
.nav-cta {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius); font-size: 0.7rem !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.site-header.scrolled .site-nav a.nav-cta { color: var(--white) !important; }
.site-header.scrolled .site-nav a.nav-cta:hover { color: var(--white) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.25s; border-radius: 2px; }
.site-header.scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-aerial.png');
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(20,14,8,0.72) 0%,rgba(52,114,129,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 130px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 6px 18px; font-family: var(--font-ui); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); margin-bottom: 28px;
}
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--terra); }
.hero h1 { color: var(--white); max-width: 700px; margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.7); }
.hero-sub {
  font-family: var(--font-alt);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px; margin-bottom: 16px;
  font-weight: normal; line-height: 1.6;
}

/* BADGES HERO — preco e Booking */
.hero-badges-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-price-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); border-radius: 100px;
  padding: 8px 20px; font-family: var(--font-ui);
  font-size: 0.75rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.06em;
}
.hero-price-badge strong { font-size: 1.05rem; }
.hero-booking-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #003580; border-radius: 100px;
  padding: 8px 20px; font-family: var(--font-ui);
  font-size: 0.75rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.06em;
}
.hero-booking-badge .score {
  background: white; color: #003580;
  border-radius: 4px; padding: 2px 7px;
  font-size: 0.9rem; font-weight: 700;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-family: var(--font-ui);
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2.2s infinite; z-index: 2;
}
.hero-scroll::after { content:''; display:block; width:1px; height:40px; background:rgba(255,255,255,0.25); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* URGENCY BADGE */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF3CD; border: 1px solid #F0C040;
  border-radius: 100px; padding: 6px 16px;
  font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; color: #7A5800;
  margin-bottom: 16px; text-transform: uppercase;
}

/* DESTAQUES STRIP */
.destaques-strip { background: var(--terra); padding: 0 24px; }
.destaques-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.destaque-item { padding: 26px 20px; border-right: 1px solid rgba(255,255,255,0.15); text-align: center; }
.destaque-item:last-child { border-right: none; }
.destaque-item .icon { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; height: 32px; }
.destaque-item strong { display: block; font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.destaque-item span { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

/* BOOKING STRIP */
.booking-rating-strip {
  background: #003580; padding: 16px 24px; text-align: center;
}
.booking-rating-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.booking-score-big {
  background: white; color: #003580;
  font-family: var(--font-ui); font-size: 1.8rem; font-weight: 700;
  border-radius: 8px; padding: 4px 14px; line-height: 1;
}
.booking-rating-text {
  font-family: var(--font-ui); color: white;
}
.booking-rating-text strong { display: block; font-size: 1rem; font-weight: 700; }
.booking-rating-text span { font-size: 0.78rem; opacity: 0.8; }

/* SOCIAL PROOF */
.social-proof { background: var(--sand); padding: 22px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.social-proof-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.social-proof-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; color: var(--mid); letter-spacing: 0.06em; white-space: nowrap; }
.social-proof-item .icon { font-size: 1.1rem; }

/* INTRO BICOLOR */
.intro-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.intro-img { position: relative; min-height: 480px; height: 100%; overflow: hidden; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.intro-text { background: var(--sand); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { color: var(--mid); font-size: 1rem; line-height: 1.85; }
.intro-text .btn { margin-top: 32px; align-self: flex-start; }

/* DIFERENCIAIS */
.features-section { padding: var(--pad); background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: var(--white); padding: 36px 28px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::after {
  content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--teal));
  transform: scaleX(0); transition: transform 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin:0; }

/* GALERIA */
.gallery-section { padding: var(--pad); background: var(--white); }
.gallery-mosaic {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px; gap: 12px; margin-top: 48px;
}
.gallery-mosaic .g-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-mosaic .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-mosaic .g-item:hover img { transform: scale(1.05); }
.gallery-mosaic .g-item:first-child { grid-row: span 2; }
.gallery-placeholder { width:100%; height:100%; background: linear-gradient(135deg,var(--sand-dark),var(--sand)); display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:0.8rem; font-family:var(--font-ui); letter-spacing:0.1em; text-transform:uppercase; }

/* QUARTOS */
.rooms-section { padding: var(--pad); background: var(--sand); }
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.room-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-img { height: 230px; overflow: hidden; }
.room-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.room-card:hover .room-img img { transform: scale(1.04); }
.room-img-placeholder { width:100%; height:100%; background: linear-gradient(135deg,var(--sand-dark),var(--sand)); display:flex; align-items:center; justify-content:center; font-size:3rem; }
.room-body { padding: 28px; }
.room-tag { font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 6px; }
.room-body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.room-body p { font-size: 0.9rem; color: var(--mid); margin-bottom: 20px; }
.room-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { font-family: var(--font-ui); font-size: 0.65rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: var(--teal-light); color: var(--teal); letter-spacing: 0.06em; }
.room-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.room-price .from { font-family: var(--font-ui); font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.room-price .value { font-family: var(--font-display); font-size: 1.6rem; color: var(--terra); font-weight: normal; line-height: 1; }
.room-price .per { font-family: var(--font-ui); font-size: 0.7rem; color: var(--muted); }

/* PRAIA STRIP */
.praia-strip { background: var(--ink); padding: var(--pad); position: relative; overflow: hidden; }
.praia-strip::before { content:''; position:absolute; inset:0; background:url('../images/fachada.jpg') center/cover no-repeat; opacity:0.12; }
.praia-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index:1; }
.praia-inner h2 { color: var(--white); margin-bottom: 16px; }
.praia-inner p { color: rgba(255,255,255,0.72); font-size:1rem; line-height:1.85; }
.praia-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; }
.stat-box .num { font-family: var(--font-display); font-size: 2.8rem; font-weight: normal; color: var(--terra); display: block; line-height: 1; }
.stat-box .label { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; display: block; }

/* CAFE */
.cafe-section { display: grid; grid-template-columns: 1fr 1fr; }
.cafe-img { position:relative; min-height:480px; overflow:hidden; }
.cafe-img img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.cafe-text { background: var(--white); padding: 80px 64px; display: flex; flex-direction:column; justify-content:center; }
.cafe-text h2 { margin-bottom:16px; }
.cafe-text p { color:var(--mid); line-height:1.85; }

/* CTA INLINE */
.cta-inline-strip { background: var(--terra); padding: 36px 24px; text-align: center; }
.cta-inline-strip p { font-family: var(--font-alt); font-size: clamp(1.1rem,2vw,1.5rem); font-weight: normal; color: var(--white); margin-bottom: 20px; }
.cta-inline-strip p strong { font-family: var(--font-ui); font-weight: 700; }

/* FAQ */
.faq-section { padding: var(--pad); background: var(--sand); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width:100%; display:flex; justify-content:space-between; align-items:center; padding:22px 0; text-align:left; font-family:var(--font-ui); font-size:0.95rem; font-weight:600; color:var(--ink); }
.faq-question::after { content:'+'; font-size:1.4rem; color:var(--terra); font-weight:300; transition:transform 0.3s; }
.faq-item.open .faq-question::after { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height:400px; }
.faq-answer-inner { padding:0 0 24px; font-size:0.93rem; color:var(--mid); line-height:1.75; }

/* CTA FINAL */
.cta-section { padding: 100px 24px; text-align:center; background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%); }
.cta-section h2 { margin-bottom:16px; }
.cta-section p { color:var(--mid); margin-bottom:36px; font-size:1.05rem; }

/* PAGE HERO */
.page-hero { background: var(--teal); padding: 140px 24px 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero.with-photo { background: var(--ink); }
.page-hero.with-photo::before { content:''; position:absolute; inset:0; background:url('../images/corredor.jpg') center/cover no-repeat; opacity:0.3; }
.page-hero-content { position:relative; z-index:1; }
.page-hero .eyebrow { color:rgba(255,255,255,0.6); }
.page-hero h1 { color:var(--white); margin-bottom:14px; }
.page-hero p { color:rgba(255,255,255,0.72); max-width:520px; margin:0 auto; font-size:1.05rem; }

/* CONTENT SECTIONS */
.content-section { padding: var(--pad); }
.content-section.bg-sand { background: var(--sand); }
.content-section.bg-white { background: var(--white); }
.content-section.bg-cream { background: var(--cream); }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.two-col.reverse { direction:rtl; }
.two-col.reverse > * { direction:ltr; }
.content-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.content-img img { width:100%; height:100%; object-fit:cover; }
.img-placeholder { width:100%; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--sand-dark),var(--sand)); min-height:300px; border-radius:var(--radius-lg); font-size:0.78rem; font-family:var(--font-ui); color:var(--muted); letter-spacing:0.1em; text-transform:uppercase; }
.icon-list { display:flex; flex-direction:column; gap:14px; margin:20px 0; }
.icon-list li { display:flex; gap:12px; align-items:flex-start; font-size:0.95rem; color:var(--mid); }
.icon-list li::before { content:''; width:20px; height:20px; min-width:20px; border-radius:50%; background:var(--terra-light); background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23d48c46' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; margin-top:2px; }
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.card { background:var(--white); border-radius:var(--radius-lg); padding:32px 24px; border:1px solid var(--border); transition:all 0.3s; }
.card:hover { box-shadow:var(--shadow); border-color:transparent; transform:translateY(-3px); }
.card-icon { font-size:2rem; margin-bottom:14px; display:block; }
.card h3 { font-size:1.1rem; margin-bottom:8px; }
.card p { font-size:0.9rem; color:var(--mid); margin:0; }

/* MAPA */
.map-embed { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); height:380px; }
.map-embed iframe { width:100%; height:100%; border:none; display:block; }
.location-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.location-details { display:flex; flex-direction:column; gap:16px; margin-top:28px; }
.detail-row { display:flex; gap:14px; align-items:flex-start; }
.detail-icon { width:36px; height:36px; border-radius:50%; background:var(--terra-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1rem; }
.detail-row strong { display:block; font-family:var(--font-ui); font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-bottom:2px; }
.detail-row span { font-size:0.95rem; color:var(--ink); }

/* FORMULARIOS */
.form-section { padding: var(--pad); background:var(--sand); }
.form-wrapper { max-width:680px; margin:0 auto; background:var(--white); border-radius:var(--radius-lg); padding:48px; box-shadow:var(--shadow); }
.form-wrapper h2 { margin-bottom:8px; }
.form-wrapper > p { color:var(--mid); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-family:var(--font-ui); font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--mid); margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea { width:100%; border:1.5px solid var(--border); border-radius:var(--radius); padding:12px 14px; font-family:var(--font-body); font-size:0.95rem; color:var(--ink); background:var(--white); outline:none; transition:border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--terra); }
.form-group textarea { min-height:110px; resize:vertical; }
.form-submit { margin-top:8px; }
.form-submit .btn { width:100%; justify-content:center; padding:16px; }
.form-note { text-align:center; font-size:0.78rem; color:var(--muted); margin-top:14px; }
.reservas-box { background:var(--teal-light); border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px; text-align:center; }
.reservas-box h3 { margin-bottom:10px; }
.reservas-box p { color:var(--mid); margin-bottom:20px; font-size:0.95rem; }

/* FOOTER */
.site-footer { background: var(--ink); padding:72px 24px 36px; color:rgba(255,255,255,0.55); }
.footer-inner { max-width:var(--max-w); margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:32px; }
.footer-logo { height:120px; width:auto; margin-bottom:16px; }
.footer-brand p { font-size:0.88rem; line-height:1.7; }
.footer-col h4 { font-family:var(--font-ui); font-size:0.68rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--white); margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:0.88rem; color:rgba(255,255,255,0.5); transition:color 0.2s; }
.footer-col ul a:hover { color:var(--terra); }
.footer-contact-item { display:flex; align-items:center; gap:10px; font-size:0.88rem; margin-bottom:10px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:0.75rem; color:rgba(255,255,255,0.28); }
.footer-bottom a { color:rgba(255,255,255,0.35); transition:color 0.2s; }
.footer-bottom a:hover { color:var(--terra); }

/* WHATSAPP FAB */
.whatsapp-fab { position:fixed; bottom:28px; right:28px; width:58px; height:58px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 24px rgba(37,211,102,0.4); z-index:999; transition:all 0.3s; }
.whatsapp-fab:hover { transform:scale(1.1); }
.whatsapp-fab svg { width:30px; height:30px; fill:white; }

/* STICKY BOOKING BAR */
.booking-bar { position:fixed; bottom:0; left:0; right:0; background:var(--ink); z-index:998; transform:translateY(100%); transition:transform 0.4s ease; box-shadow:0 -4px 24px rgba(0,0,0,0.2); }
.booking-bar.visible { transform:translateY(0); }
.booking-bar-inner { max-width:var(--max-w); margin:0 auto; padding:14px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.booking-bar-text { display:flex; flex-direction:column; }
.booking-bar-text strong { font-family:var(--font-display); font-size:1.1rem; color:var(--white); font-weight:normal; }
.booking-bar-text span { font-family:var(--font-ui); font-size:0.68rem; color:rgba(255,255,255,0.5); letter-spacing:0.1em; text-transform:uppercase; }
.booking-bar-actions { display:flex; gap:12px; align-items:center; flex-shrink:0; }
.booking-bar-close { background:none; border:none; color:rgba(255,255,255,0.3); font-size:1.2rem; cursor:pointer; padding:4px 8px; transition:color 0.2s; }
.booking-bar-close:hover { color:rgba(255,255,255,0.7); }

/* PRIVACIDADE */
.privacy-content { max-width:760px; margin:0 auto; padding:var(--pad); }
.privacy-content h2 { font-size:1.5rem; margin:40px 0 12px; }
.privacy-content h2:first-of-type { margin-top:0; }
.privacy-content p { color:var(--mid); font-size:0.95rem; }

/* ANIMACOES */
.fade-in { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .destaques-inner { grid-template-columns:repeat(2,1fr); }
  .social-proof-inner { justify-content:center; flex-wrap:wrap; }
}
@media (max-width:768px) {
  :root { --pad: 64px 24px; }
  .site-nav { display:none; }
  .menu-toggle { display:flex; }
  .site-nav.open { display:flex; flex-direction:column; align-items:center; position:fixed; inset:0; top:80px; background:var(--white); padding:40px 24px; gap:24px; z-index:999; box-shadow:var(--shadow-lg); }
  .site-nav.open a { color:var(--ink) !important; font-size:1rem; }
  .site-nav.open .nav-cta { align-self:center; }
  .hero-content { padding:110px 20px 80px; }
  .hero h1 { font-size:2.4rem; }
  .hero-sub { font-size:1rem; max-width:100%; }
  .hero-badges-row { gap:8px; }
  .intro-section, .cafe-section { grid-template-columns:1fr; }
  .intro-img, .cafe-img { min-height:280px; }
  .intro-text, .cafe-text { padding:48px 28px; }
  .features-grid { grid-template-columns:1fr; }
  .rooms-grid { grid-template-columns:1fr; }
  .praia-inner { grid-template-columns:1fr; gap:40px; }
  .praia-stats { grid-template-columns:1fr 1fr; }
  .two-col { grid-template-columns:1fr; }
  .two-col.reverse { direction:ltr; }
  .cards-grid { grid-template-columns:1fr; }
  .location-inner { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .form-wrapper { padding:28px 20px; }
  .gallery-mosaic { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .gallery-mosaic .g-item:first-child { grid-row:span 1; grid-column:span 2; }
  .destaques-inner { grid-template-columns:1fr 1fr; }
  .social-proof-inner { gap:16px; flex-wrap:wrap; justify-content:center; }
  .social-proof-item { white-space:normal; font-size:0.72rem; }
  .booking-bar-inner { flex-wrap:wrap; gap:12px; }
  .booking-rating-inner { gap:12px; }
}
@media (max-width:480px) {
  .hero h1 { font-size:2rem; }
  .btn-group { flex-direction:column; }
  .praia-stats { grid-template-columns:1fr; }
  .destaques-inner { grid-template-columns:1fr; }
  .destaque-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .hero-badges-row { flex-direction:column; align-items:flex-start; }
}

/* ── FIXES v5.1 ── */
/* Garantir import do Google Fonts */
/* (já presente no topo do arquivo via @import) */

/* Badge de preco — cor teal conforme solicitado */
.hero-price-badge {
  background: var(--teal) !important;
  border-radius: 100px !important;
}

/* Remover social proof strip */
.social-proof { display: none !important; }

/* Fontes corretas restauradas */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.hero h1, .page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.hero-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
}
.cta-inline-strip p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
}

/* Feature icon — suporte a SVG */
.feature-icon svg {
  display: block;
  margin: 0 auto;
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
}

/* Destaques strip — SVG icons */
.destaque-item .icon svg {
  display: inline-block;
  vertical-align: middle;
}

/* Booking rating strip */
.booking-rating-strip {
  background: #003580;
  padding: 16px 24px;
  text-align: center;
}

/* Hero sub com itálico */
.hero-sub em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

/* ══ FIXES MOBILE + PERFORMANCE ════════════════════════════ */

/* Reset location detail icons */
.detail-icon {
  width: 36px !important;
  height: 36px !important;
  font-size: 1.1rem;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--terra-light) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
}

/* Logo no header */
.site-header.scrolled .site-logo img {
  filter: none;
}

/* ── MOBILE FULL FIX ── */
@media (max-width: 768px) {

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 20px 80px; }
  .hero h1 { font-size: 2rem; word-break: break-word; }
  .hero-sub { font-size: 0.95rem; }
  .hero-badges-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-price-badge, .hero-booking-badge { font-size: 0.72rem; padding: 8px 16px; }

  /* Header */
  .header-inner { height: 104px; }
  .site-logo img { height: 52px !important; }

  /* Destaques strip */
  .destaques-strip { padding: 0; }
  .destaques-inner { grid-template-columns: 1fr 1fr !important; }
  .destaque-item { padding: 18px 12px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .destaque-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1) !important; }

  /* Booking strip */
  .booking-rating-inner { flex-direction: column; gap: 12px; }
  .booking-rating-inner .btn { width: 100%; justify-content: center; }

  /* Intro / cafe bicolor */
  .intro-section, .cafe-section { grid-template-columns: 1fr !important; }
  .cafe-section .cafe-img { min-height: 260px; width: 100%; }
  .cafe-section .cafe-img img { width: 100%; height: 260px; object-fit: cover; }
  .cafe-section .cafe-text { padding: 32px 20px !important; }
  .intro-img, .cafe-img { min-height: 240px !important; }
  .intro-text, .cafe-text { padding: 40px 24px !important; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr !important; }

  /* Two col */
  .two-col, .two-col.reverse { grid-template-columns: 1fr !important; direction: ltr !important; gap: 32px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr !important; }
  .features-grid { grid-template-columns: 1fr !important; }

  /* Gallery */
  .gallery-mosaic { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .gallery-mosaic .g-item:first-child { grid-column: span 2 !important; grid-row: span 1 !important; }

  /* Praia strip */
  .praia-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .praia-stats { grid-template-columns: 1fr 1fr !important; }

  /* Location */
  .location-inner { grid-template-columns: 1fr !important; }
  .map-embed { height: 280px !important; }

  /* Forms */
  .form-row { grid-template-columns: 1fr !important; }
  .form-wrapper { padding: 24px 20px !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column !important; gap: 8px !important; text-align: center !important; }

  /* Booking bar */
  .booking-bar-inner { flex-direction: column; gap: 10px; padding: 12px 20px; }
  .booking-bar-actions { width: 100%; justify-content: center; }
  .booking-bar-text strong { font-size: 0.9rem; }

  /* CTA section */
  .cta-section { padding: 60px 20px; }
  .cta-section .btn-group { flex-direction: column; align-items: center; }
  .cta-section .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 100px 20px 48px; }
  .page-hero h1 { font-size: 2rem; }

  /* Sections padding */
  .content-section { padding: 48px 20px; }
  .gallery-section, .rooms-section, .features-section, .faq-section, .form-section { padding: 48px 20px; }

  /* Buttons */
  .btn-group { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .praia-stats { grid-template-columns: 1fr 1fr !important; }
  .gallery-mosaic { grid-template-columns: 1fr !important; }
  .gallery-mosaic .g-item:first-child { grid-column: span 1 !important; }
}

/* ── PERFORMANCE ── */
img { content-visibility: auto; }
.hero-bg { will-change: transform; }

/* Smooth transitions global */
* { -webkit-tap-highlight-color: transparent; }
a, button { touch-action: manipulation; }

/* ══ FIXES APRESENTAÇÃO ════════════════════════════════════ */

/* Header SEMPRE branco e fixo — em todas as páginas */
.site-header {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
.site-header .logo-name { color: var(--ink) !important; }
.site-header .logo-tagline { color: var(--muted) !important; }
.site-header .site-nav a { color: var(--mid) !important; }
.site-header .site-nav a:hover { color: var(--terra) !important; }
.site-header .menu-toggle span { background: var(--ink) !important; }

/* Hero — ajuste para logo branca ficar visível sobre foto */
.hero .site-logo img { filter: none; }

/* Hero scroll — não sobrepor botões no mobile */
.hero-scroll { display: none; }
@media (min-width: 769px) {
  .hero-scroll { display: flex; }
}

/* Destaques strip — menor e mais limpo no mobile */
@media (max-width: 768px) {
  /* destaques-strip visível no mobile */
}

/* Botão "Garantir minha reserva" — centralizado */
.intro-text .btn,
.intro-text a.btn { align-self: center !important; width: 100%; justify-content: center; }
@media (min-width: 769px) {
  .intro-text .btn,
  .intro-text a.btn { align-self: flex-start !important; width: auto; }
}

/* WhatsApp button fix — não overflow */
.btn svg { flex-shrink: 0; min-width: 16px; }
a.btn { overflow: hidden; text-overflow: ellipsis; }

/* Menu mobile — botão reservar alinhado */
.site-nav.open { align-items: center !important; }
.site-nav.open .nav-cta {
  margin-top: 8px;
  align-self: center !important;
  display: inline-flex !important;
}

/* Form inputs — responsivos */
.form-group input,
.form-group select,
.form-group textarea {
  max-width: 100%;
  font-size: 16px; /* evita zoom no iOS */
}

/* CTA section texto — quebrar linha */
.cta-section p br { display: block; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 95vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px;
  user-select: none;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
  opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1); border: none;
  padding: 12px 18px; border-radius: 4px; line-height: 1;
  opacity: 0.8; transition: all 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui); font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* Gallery items — cursor pointer */
.g-item, .gallery-item { cursor: zoom-in; }

/* Image slider */
.img-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
}
.img-slider-track {
  display: flex; transition: transform 0.4s ease;
  height: 100%;
}
.img-slider-track img {
  min-width: 100%; width: 100%; height: 100%;
  object-fit: cover; flex-shrink: 0;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: white;
  border: none; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: background 0.2s;
  z-index: 2;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none;
  cursor: pointer; transition: background 0.2s; padding: 0;
}
.slider-dot.active { background: white; }

/* Divisor entre pills e botão */
.room-divider {
  height: 1px; background: var(--border);
  margin: 16px 0;
}

/* Footer nav ordem correta */
.footer-col ul { gap: 10px; }

/* ══ FIXES v7 ══════════════════════════════════════════════ */

/* Slider dentro de room-img */
.room-img .img-slider {
  height: 100% !important;
  border-radius: 0 !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
}
.room-img .img-slider-track img {
  min-height: 100%;
  object-fit: cover;
}

/* WhatsApp button — nunca overflow */
a.btn[href*="wa.me"] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
}

/* Gallery segunda linha responsiva */
@media (max-width: 768px) {
  #estrutura-gallery-2 {
    grid-template-columns: 1fr 1fr !important;
  }
  #estrutura-gallery-2 .g-item:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  #estrutura-gallery-2 {
    grid-template-columns: 1fr !important;
  }
  #estrutura-gallery-2 .g-item:last-child {
    grid-column: span 1;
  }
}

/* Nav mobile - Reservar centralizado */
@media (max-width: 768px) {
  .site-nav.open {
    align-items: center !important;
    text-align: center;
  }
  .site-nav.open .nav-cta {
    align-self: center !important;
    width: auto !important;
    margin-top: 8px;
  }
}

/* ══ FIXES v8 ══════════════════════════════════════════════ */

/* Fix 5: CTA inline strip botões — centralizar */
.cta-inline-strip .btn-group { justify-content: center !important; }
.cta-inline-strip .btn { width: 100%; max-width: 340px; justify-content: center !important; }

/* Fix 8: Galeria estrutura — sem cursor zoom, sem hover */
#estrutura-gallery .g-item,
#estrutura-gallery-2 .g-item {
  cursor: default !important;
  pointer-events: none !important;
}
#estrutura-gallery .g-item img,
#estrutura-gallery-2 .g-item img {
  cursor: default !important;
  transition: none !important;
}
#estrutura-gallery .g-item:hover img,
#estrutura-gallery-2 .g-item:hover img {
  transform: none !important;
}

/* ══ DESTAQUES SVG ICONS ════════════════════════════════════ */
.destaque-item .icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  height: 36px !important;
  font-size: 0 !important; /* esconde emojis residuais */
}
.destaque-item .icon svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

/* ══ CTA INLINE STRIP — FIX BOTÕES ═════════════════════════ */
.cta-inline-strip {
  padding: 48px 24px;
}
.cta-inline-strip .btn-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 24px;
}
.cta-inline-strip .btn {
  width: 100% !important;
  max-width: 420px !important;
  justify-content: center !important;
  display: flex !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}
@media (min-width: 769px) {
  .cta-inline-strip .btn-group {
    flex-direction: row !important;
    align-items: center !important;
  }
  .cta-inline-strip .btn {
    width: auto !important;
    max-width: 320px !important;
  }
}

/* ══ FIXES FINAIS ══════════════════════════════════════════ */

/* CTA strip — fundo laranja */
.cta-inline-strip { background: var(--terra) !important; }

/* Menu mobile — botão Reservar azul teal com fonte branca */
@media (max-width: 768px) {
  .site-nav.open .nav-cta {
    background: var(--teal) !important;
    color: white !important;
    border-radius: var(--radius) !important;
    padding: 12px 32px !important;
    font-size: 0.78rem !important;
    margin-top: 8px !important;
  }
  .site-nav.open .nav-cta:hover {
    background: var(--teal-dark) !important;
  }
}

/* WhatsApp button — fix overflow global */
a[href*="wa.me"].btn,
a[href*="wa.me"] {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

/* WhatsApp box na página de reservas */
.form-section a[href*="wa.me"],
.content-section a[href*="wa.me"] {
  width: 100% !important;
  max-width: 360px !important;
  display: flex !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

/* ══ CAFÉ IMAGE — MENOR ════════════════════════════════════ */
.cafe-img { min-height: 320px !important; max-height: 420px !important; }
.cafe-img img { max-height: 420px !important; object-fit: cover; object-position: center; }

@media (max-width: 768px) {
  .cafe-img { min-height: 220px !important; max-height: 280px !important; }
  .cafe-img img { max-height: 280px !important; }
}


/* Ajustes finos solicitados */
.cafe-section { align-items: stretch; }
.cafe-img { min-height: 0 !important; max-height: none !important; height: 100%; }
.cafe-img img { height: 100%; max-height: none !important; object-fit: cover; object-position: center; }
.cafe-text { justify-content: flex-start; padding: 56px 64px 56px; }
.site-header .site-nav a.nav-cta { color: var(--white) !important; }
.site-header .site-nav a.nav-cta:hover { color: var(--white) !important; }
@media (max-width: 768px) {
  .cafe-text { padding: 32px 20px !important; }
}




/* Ajustes finais v4 */
.cafe-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch !important;
}
.cafe-section .cafe-img,
.cafe-section .cafe-text {
  min-height: 0 !important;
  height: auto !important;
}
.cafe-section .cafe-img {
  display: flex;
}
.cafe-section .cafe-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}
.cafe-section .cafe-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px;
}
.cafe-section .cafe-text .btn.btn-primary {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}
.location-card-icon-lg svg {
  width: 44px !important;
  height: 44px !important;
}
.location-sun-city svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .cafe-section {
    grid-template-columns: 1fr !important;
  }
  .cafe-section .cafe-img,
  .cafe-section .cafe-text {
    min-height: unset !important;
    height: auto !important;
  }
  .cafe-section .cafe-img img {
    height: 260px;
    object-position: center;
  }
  .cafe-section .cafe-text {
    padding: 32px 20px !important;
  }
}

/* ══ AJUSTES v9 ════════════════════════════════════════════ */

/* 11. Botões principais → teal da marca #347281 */
.btn-primary {
  background: #347281 !important;
  color: white !important;
}
.btn-primary:hover {
  background: #265a6a !important;
}

/* 3. Botão Reservar agora no hero → teal (já coberto acima) */

/* 1. Hero title maior no mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
    line-height: 1.15 !important;
  }
  .hero h1 em {
    font-size: inherit !important;
  }
}

/* 4+5+6. Header transparente na home */
.site-header.hero-transparent {
  background: transparent !important;
  box-shadow: none !important;
}
.site-header.hero-transparent .site-nav a { color: white !important; }
.site-header.hero-transparent .menu-toggle span { background: white !important; }
.site-header.hero-transparent .nav-cta {
  background: #347281 !important;
  color: white !important;
}

}

/* 9. Café section — foto com borda arredondada e altura igual ao texto */
.cafe-section {
  align-items: stretch !important;
}
.cafe-img {
  border-radius: 16px !important;
  overflow: hidden !important;
  margin: 40px 0 40px 64px !important;
}
@media (max-width: 768px) {
  .cafe-img {
    margin: 24px 20px 0 20px !important;
    border-radius: 12px !important;
  }
}

/* Logo always visible in header */
.hero-transparent .site-logo { opacity: 1; pointer-events: auto; }

/* ══ FIXES v10 ══════════════════════════════════════════════ */

/* Header branco ao rolar */
.site-header.scrolled {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
.site-header.scrolled .site-nav a { color: var(--mid) !important; }
.site-header.scrolled .menu-toggle span { background: var(--ink) !important; }
.site-header.scrolled .site-logo { opacity: 1 !important; pointer-events: auto !important; }
/* logo swap handled by JS */

/* Price badge → laranja */
.hero-price-badge {
  background: var(--terra) !important;
  color: white !important;
  border: none !important;
}
.hero-price-badge strong { color: white !important; font-size: 1.1em; }
.hero-price-badge span { color: white !important; }

/* Botões verdes — hover verde escuro, não laranja */
.btn-primary { background: #347281 !important; color: white !important; }
.btn-primary:hover,
.btn-primary:focus { background: #265a6a !important; color: white !important; }

/* Btn-ghost e btn-outline hover — não mudar para laranja */
.btn-ghost:hover { background: rgba(255,255,255,0.1) !important; }
.btn-outline:hover { background: rgba(255,255,255,0.15) !important; }


/* === ajustes mobile solicitados === */
html, body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  /* foto do café sem alargar a página */
  .cafe-section,
  .intro-section,
  .content-section {
    overflow-x: hidden !important;
  }
  .cafe-section .cafe-img {
    width: auto !important;
    max-width: calc(100% - 40px) !important;
    margin: 24px 20px 0 20px !important;
    min-height: 0 !important;
    flex: 0 0 auto;
  }
  .cafe-section .cafe-img img {
    width: 100% !important;
    max-width: 100% !important;
    height: 260px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* menu mobile: links escuros e só reservar branco */
  .site-nav.open a:not(.nav-cta) {
    color: var(--ink) !important;
  }
  .site-nav.open a.nav-cta,
  .site-nav.open a.nav-cta:hover {
    color: var(--white) !important;
  }
}

/* box laranja: apenas o botão ver disponibilidade em teal */
.cta-inline-strip a.btn.btn-outline {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: var(--white) !important;
}
.cta-inline-strip a.btn.btn-outline:hover {
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
  color: var(--white) !important;
}


/* ajustes extras pedidos */
@media (max-width: 768px) {
  .page-hero {
    padding-top: 132px !important;
  }
  .reservas-hero {
    padding-top: 132px !important;
  }
}

/* ajustes solicitados: box da home e box dos ícones em teal */
.destaques-strip,
.cta-inline-strip {
  background: var(--teal) !important;
}


/* Ajuste solicitado: box do preço invertido e badge Booking clicável */
.hero-price-badge{
  background: var(--white) !important;
  color: var(--terra) !important;
  border: 1px solid rgba(212,140,70,0.28) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
.hero-price-badge strong{
  color: var(--terra) !important;
  font-size: 1.1em;
}
.hero-price-badge span{
  color: var(--terra) !important;
}
.hero-booking-badge{
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-booking-badge:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.hero-booking-badge:focus-visible{
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}
