/* Recanto João de Barro - Renovação (estático) */

:root{
  --bg: #fbf7ef;
  --bg2:#f3efe6;
  --text:#1b1f1d;
  --muted:#5b6b63;
  --brand:#2f5d4a;          /* verde oliva */
  --brand2:#1f3d31;         /* verde escuro */
  --accent:#d9b56f;         /* areia/dourado */
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --radius: 18px;
}

html{ scroll-behavior:smooth; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 0%, #ffffff 0%, var(--bg) 55%, var(--bg2) 100%);
}

a{ text-decoration:none; }

.topbar{
  background: rgba(31,61,49,.95);
  color: rgba(255,255,255,.9);
}
.topbar .toplink{
  color: rgba(255,255,255,.85);
}
.topbar .toplink:hover{ color:#fff; }

/* Header/Nav */
.site-header{
  position:relative;
  background: linear-gradient(180deg, rgba(31,61,49,.95), rgba(31,61,49,.75));
  overflow:hidden;
}
.navbar{
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(31,61,49,.7), rgba(31,61,49,.35));
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.navbar .nav-link{
  color: rgba(255,255,255,.86);
  font-weight: 600;
}
.navbar .nav-link:hover{ color:#fff; }
.navbar .nav-link.active{ color:#fff; }

.brand-mark{
  width: 80px; height: 80px;
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.brand-mark img{ width: 80px; height: 80px; object-fit:contain; filter: contrast(1.05); }
.brand-text .brand-title{
  font-family: Fraunces, serif;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.1;
}
.brand-text .brand-subtitle{
  font-size: .85rem;
  opacity: .85;
}

.btn-cta{
  background: var(--accent);
  border: 1px solid rgba(0,0,0,.04);
  color: #2b2415;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn-cta:hover{ filter: brightness(0.98); transform: translateY(-1px); }
.btn-outline-dark{ border-radius:999px; font-weight: 700; }

/* Hero */
.hero{
  position:relative;
  padding: 64px 0 70px;
}
.hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity: .65;
  transform: scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(0,0,0,.10), rgba(0,0,0,.35) 55%, rgba(0,0,0,.55) 100%),
    linear-gradient(80deg, rgba(31,61,49,.20), rgba(31,61,49,.88));
}
.kicker{
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .82rem;
}
.hero-title{
  font-family: Fraunces, serif;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero-lead{ color: rgba(255,255,255,.86); max-width: 52ch; }

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.badge-card{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.badge-card i{ font-size: 1.25rem; margin-top:2px; }
.badge-title{ font-weight: 800; font-size: .85rem; }
.badge-text{ font-size: .85rem; opacity:.95; }

.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18); 
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  color: #fff;
}
.hero-card-head{
  padding: 16px 16px 12px;
  display:flex; gap: 12px; align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mini-mark{
  width: 44px; height: 44px; 
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center; 
}
.mini-mark img{ width: 30px; height: 30px; object-fit:contain; } 
.hero-card-title{ font-weight: 800; }
.hero-card-sub{ font-size:.9rem; opacity:.9; }
.hero-card-body{ padding: 16px; }
.border-white-20{ border-color: rgba(255,255,255,.18)!important; }

.branch-band{
  position:absolute; left:0; right:0; bottom:-35px;
  height: 130px;
}
.branch-band svg{ width:100%; height:100%; display:block; }
.branch-band path{ fill: rgba(217,181,111,.86); }

/* Sections */
.section{ padding: 70px 0; }
.section-alt{ background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55)); }
.section-kicker{
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--brand);
  font-size: .78rem;
  margin-bottom: 8px;
}
.section-title{
  font-family: Fraunces, serif;
  font-weight: 700;
  letter-spacing: .2px;
}
.section-text{ color: var(--muted); font-size: 1.05rem; }

.photo-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.photo-card img{ width:100%; height:auto; display:block; object-fit:cover; }

.feature{
  background:#fff;
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,.06);
  display:flex; gap: 12px; align-items:flex-start;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.feature i{ font-size: 1.35rem; color: var(--brand); }
.feature-title{ font-weight: 800; }
.feature-text{ color: var(--muted); font-size: .95rem; }

.highlight{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.highlight-ico{
  width: 46px; height: 46px;
  border-radius: 16px;
  background: rgba(47,93,74,.10);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 1.25rem;
}

.note{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(47,93,74,.08);
  border: 1px solid rgba(47,93,74,.15);
  color: #1f3d31;
}
.note i{ font-size: 1.2rem; margin-top:2px; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.g-item{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  background:#fff;
}
.g-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
  transition: transform .25s ease;
}
.g-item:hover img{ transform: scale(1.05); }
.g-wide{ grid-column: span 7; grid-row: span 2; min-height: 320px; }
.g-tall{ grid-column: span 5; grid-row: span 2; min-height: 320px; }
.g-item:not(.g-wide):not(.g-tall){ grid-column: span 5; min-height: 154px; }

@media (max-width: 991px){
  .hero{ padding: 64px 0 22px; }
  .hero-badges{ grid-template-columns: 1fr; }
  .g-wide, .g-tall, .g-item{ grid-column: span 12; min-height: 200px; }
}

.rates{ border-radius: 18px; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 14px 34px rgba(0,0,0,.06); }
.rates-ico{
  width: 46px; height:46px; border-radius: 16px;
  background: rgba(217,181,111,.25);
  display:flex; align-items:center; justify-content:center;
  color:#2b2415;
  font-size: 1.25rem;
}

/* Map */
.map-embed{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  background:#fff;
  min-height: 380px;
}
.map-embed iframe{ width:100%; height: 420px; border:0; display:block; }
.location-card{ border-radius: 18px; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 14px 34px rgba(0,0,0,.06); }
.location-ico{ font-size: 1.4rem; color: var(--brand); }

/* Contact */
.contact-grid{
  display:grid;
  gap: 12px;
}
.contact-card{
  display:flex; align-items:center; gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  color: var(--text);
}
.contact-card:hover{ transform: translateY(-1px); }
.c-ico{
  width: 46px; height: 46px; border-radius: 16px;
  background: rgba(47,93,74,.10);
  display:flex; align-items:center; justify-content:center;
  color: var(--brand);
  font-size: 1.25rem;
}
.c-title{ font-weight: 900; }
.c-sub{ color: var(--muted); font-size: .95rem; }

/* Footer */
.footer{
  background: linear-gradient(180deg, rgba(31,61,49,1), rgba(31,61,49,.92));
  color: #fff;
}
.footer-logo{
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  padding: 8px;
}

/* Floating WhatsApp */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
  z-index: 50;
}
.whats-float i{ font-size: 1.6rem; }
.whats-float:hover{ filter: brightness(0.97); transform: translateY(-1px); color:#fff; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 1050;
  padding: 18px;
}
.lightbox.open{ display:flex; }
.lb-img{
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.lb-close, .lb-prev, .lb-next{
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(10px);
}
.lb-close{ top: 18px; right: 18px; }
.lb-prev{ left: 18px; }
.lb-next{ right: 18px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover{ background: rgba(255,255,255,.18); }

.video-wrapper{
  max-width: 420px;        /* controla largura */
  margin: 0 auto;          /* centraliza */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-el{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
