/* ============================================================
   Recanto Hotel & Restaurante — Home
   Paleta neutra quente (bege / marrom / creme) + verde WhatsApp
   Fontes: Cormorant Garamond (títulos) + Karla (texto)
   ============================================================ */

:root {
  --cream:      #E8DECB;
  --paper:      #FDF9F1;
  --card:       #FBF6EC;
  --sand:       #F3E9D6;
  --ink:        #2C2219;
  --brown:      #3A2E24;
  --muted:      #5B4A38;
  --soft:       #8C7355;
  --border:     #E0D2BB;
  --terracotta: #A85D34;
  --clay:       #C08552;
  --peach:      #D9A87E;
  --wa:         #2E7D4F;
  --wa-dark:    #256B43;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Karla', system-ui, sans-serif;
  color: var(--brown);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: #8C4A26; }

::selection { background: var(--peach); color: var(--ink); }

/* ---------- Reusable ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 700; margin: 0 0 14px;
}
.eyebrow--light  { color: #F0D9BE; }
.eyebrow--accent { color: var(--peach); }

.h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.1;
  color: var(--ink); margin: 0 0 20px; letter-spacing: -0.3px;
}
.h2--center { text-align: center; }
.h2--light  { color: #FFF9EF; }

.lead { font-size: 16.5px; line-height: 1.7; color: var(--muted); margin: 0 0 16px; }
.lead--light { color: #D9C9B0; }

.link { font-weight: 700; font-size: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; border-radius: 10px;
  padding: 12px 22px; transition: background .15s ease, transform .15s ease;
}
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); color: #fff; transform: translateY(-1px); }
.btn--lg { padding: 16px 30px; font-size: 16px; box-shadow: 0 12px 30px -10px rgba(46,125,79,.7); }
.btn--outline { background: transparent; color: var(--terracotta); border: 1.5px solid var(--terracotta); }
.btn--outline:hover { background: var(--terracotta); color: #fff; }

.section { padding: clamp(52px, 7vw, 80px) clamp(24px, 5vw, 56px); background: var(--paper); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: #F3E7D5; }
.section__head { text-align: center; margin-bottom: 44px; }

/* Placeholder blocks — troque por <img> reais */
.ph {
  margin: 0; border-radius: 14px; border: 1px solid #D8C7AC;
  background: repeating-linear-gradient(135deg, #E7D8BF 0 20px, #E0CFB2 20px 40px);
  display: flex; align-items: center; justify-content: center; min-height: 300px;
}
.ph figcaption { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--soft); }
.ph img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.ph iframe { border: 0; border-radius: inherit; display: block; }
.ph--tall { min-height: 380px; }
.ph--map  { min-height: 300px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #D9C9B0; font-size: 13px;
  padding: 9px clamp(24px, 5vw, 40px);
  display: flex; justify-content: space-between; align-items: center;
}
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__email { opacity: .5; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,249,241,.92); backdrop-filter: blur(8px);
  padding: 18px clamp(24px, 5vw, 40px);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #EADFCB;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand__name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--ink); letter-spacing: .5px; }
.brand__tag  { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); font-weight: 700; }
.nav__links { display: flex; gap: 30px; align-items: center; font-size: 15px; font-weight: 500; }
.nav__links > a:not(.btn) { color: var(--muted); }
.nav__links > a:not(.btn):hover { color: var(--ink); }
.nav__toggle { display: none; }
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 22px; cursor: pointer; }
.nav__burger span { display: block; height: 2px; border-radius: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(44,34,25,.15), rgba(44,34,25,.72)),
    url('image/home.png') center/cover no-repeat;
}
.hero__imgnote {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-family: ui-monospace, monospace; font-size: 12px; color: rgba(255,255,255,.72);
  background: rgba(44,34,25,.4); padding: 6px 14px; border-radius: 6px; margin: 0;
}
.hero__content { padding: 56px clamp(24px, 5vw, 56px) 60px; max-width: 760px; }
.hero__title {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(38px, 6vw, 60px); line-height: 1.02; color: #FFF9EF;
  margin: 0 0 20px; letter-spacing: -0.5px;
}
.hero__sub { font-size: 19px; line-height: 1.6; color: #F3E7D5; max-width: 560px; margin: 0 0 30px; }
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__phone { color: #EAD9C1; font-size: 14px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); padding: 28px clamp(24px, 5vw, 40px); }
.trust__label { text-align: center; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #A89275; font-weight: 700; margin: 0 0 18px; }
.trust__logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 44px; align-items: center; }
.trust__logos span { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: #D9C9B0; opacity: .85; }

/* ---------- Sobre ---------- */
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- Comodidades ---------- */
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.amenity { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.amenity strong { display: block; font-size: 15px; color: var(--ink); }
.amenity small  { display: block; font-size: 13.5px; color: var(--soft); margin-top: 4px; }
.amenity__big { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--terracotta); display: block; margin-bottom: 6px; }
.amenity:not(:has(.amenity__big)) strong { margin-top: 8px; }

/* ---------- Empresarial ---------- */
.empresarial__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.industries { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.industry { background: var(--brown); border: 1px solid #4A3A2C; border-radius: 12px; padding: 20px; }
.industry span  { display: block; color: var(--peach); font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.industry small { display: block; font-size: 13px; color: #A89275; margin-top: 4px; }

/* ---------- Acomodações ---------- */
.rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.room { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--card); }
.room__img { min-height: 150px; border: 0; border-radius: 0; }
.room__body { padding: 22px; }
.room__title { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--ink); margin: 0; font-weight: 500; }
.room__desc { font-size: 13.5px; color: var(--soft); margin: 6px 0 14px; }

/* ---------- Depoimentos ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.review { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin: 0; }
.review p { font-size: 15.5px; line-height: 1.65; color: #4A3A2C; margin: 0 0 18px; }
.review footer strong { display: block; font-size: 14px; color: var(--ink); }
.review footer small  { display: block; font-size: 13px; color: var(--soft); }
.stars { color: var(--clay); font-size: 18px; margin-bottom: 12px; }
.reviews__cta { text-align: center; margin-top: 36px; }

/* ---------- Localização ---------- */
.loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.loc__body { display: flex; flex-direction: column; justify-content: center; }
.loc__body .btn { align-self: flex-start; margin-top: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); padding: 52px clamp(24px, 5vw, 56px) 40px; color: #D9C9B0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid #4A3A2C; }
.footer__brand { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #FFF9EF; margin-bottom: 10px; }
.footer__about { font-size: 14.5px; line-height: 1.65; color: #A89275; max-width: 320px; margin: 0; }
.footer__head { font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--peach); margin-bottom: 14px; }
.footer__list { font-size: 14px; line-height: 1.9; color: #C7B79C; margin: 0; }
.footer__list a { color: #C7B79C; }
.footer__list a:hover { color: #FFF9EF; }
.footer__copy { padding-top: 22px; font-size: 12.5px; color: #7E664A; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; position: relative; }
  .nav__burger { display: flex; order: 2; }
  .nav__links {
    display: none; order: 3; flex-basis: 100%;
    flex-direction: column; align-items: flex-start; gap: 18px;
    margin-top: 18px; padding-top: 18px; border-top: 1px solid #EADFCB;
  }
  .nav__toggle:checked ~ .nav__links { display: flex; }
  .nav__links .btn { align-self: flex-start; }
  .sobre__grid, .empresarial__grid, .loc__grid { grid-template-columns: 1fr; gap: 32px; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .trust__logos { gap: 24px; }
}

@media (max-width: 520px) {
  .topbar { flex-direction: column; gap: 4px; align-items: flex-start; }
  .topbar__email { display: none; }
  .amenities, .rooms { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__phone { text-align: center; }
  .loc__body .btn { align-self: stretch; justify-content: center; }
}
