/*
Theme Name: Giro Chapada (Cinema)
Author: Emerson Souza
Version: 1.1
*/

:root{
  --bg: #0b0f14;
  --bg2:#0f1722;
  --text:#e9eef6;
  --muted:#b7c1d3;
  --line: rgba(255,255,255,.10);
  --accent:#25D366;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(255,255,255,.06), transparent 55%),
              radial-gradient(1000px 600px at 80% 30%, rgba(37,211,102,.08), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
.container{max-width:var(--container);margin:0 auto;padding:0 22px}

/* Header cinema */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:999;
  padding:18px 0;
  background:transparent;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
}
.site-header.is-scrolled{
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding:12px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo img{max-height:42px;width:auto}
.logo-text{
  font-family: "Playfair Display", serif;
  font-weight:700;
  letter-spacing:.4px;
  font-size:22px;
}

/* Nav */
.menu{display:flex; align-items:center; gap:16px}
.menu-list{list-style:none; margin:0; padding:0; display:flex; gap:18px; align-items:center}
.menu-list a{
  color: rgba(233,238,246,.92);
  font-weight:500;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu-list a:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  align-items:center;
  justify-content:center;
  gap:6px;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: rgba(233,238,246,.9);
  border-radius:999px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:600;
  font-size:14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-solid{ background: var(--accent); color:#062012; border-color: rgba(37,211,102,.35); }
.btn-ghost{ background: rgba(255,255,255,.04); color: var(--text); }
.btn-sm{ padding:10px 14px; font-size:13px; }

/* Floating WhatsApp */
.whats-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:998;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: rgba(11,15,20,.70);
  border:1px solid rgba(37,211,102,.35);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.whats-dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(37,211,102,.18);
}
.whats-text{ font-weight:700; font-size:13px; color: rgba(233,238,246,.95); }

/* Hero cinema */
.hero{
  min-height: 96vh;
  display:flex;
  align-items:center;
  padding-top: 90px; /* espaço header */
  background:
    linear-gradient(180deg, rgba(11,15,20,.35), rgba(11,15,20,.90)),
    url('assets/img/hero.jpg') center/cover no-repeat;
  position:relative;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
  padding: 64px 0 48px;
}
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(233,238,246,.75);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:999px;
}
.hero h1{
  font-family:"Playfair Display", serif;
  font-size:52px;
  line-height:1.08;
  margin:14px 0 12px;
}
.hero p{
  color: rgba(233,238,246,.82);
  font-size:16px;
  max-width: 56ch;
  margin:0 0 20px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.pills{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:18px;
}
.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(233,238,246,.84);
  font-size:12px;
  font-weight:600;
  padding:10px 12px;
  border-radius:999px;
}

/* Cards + sections */
.section{
  padding: 54px 0;
}
.section h2{
  font-family:"Playfair Display", serif;
  font-size:30px;
  margin:0 0 16px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .22s ease, background .22s ease;
}
.card:hover{ transform: translateY(-2px); background: rgba(255,255,255,.05); }
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color: rgba(233,238,246,.78); font-size:13px; }

/* Page */
.page{ padding-top: 120px; padding-bottom: 40px; }
.page-title{ font-family:"Playfair Display", serif; }
.page-hero{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--shadow);
}
.lead{ color: rgba(233,238,246,.80); font-size:15px; }

.checklist{ margin: 12px 0 0; padding-left: 18px; }
.checklist li{ margin: 6px 0; }

/* Footer */
.site-footer{
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.footer-inner{
  padding: 26px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.footer-brand p{ margin: 8px 0 0; color: rgba(233,238,246,.75); font-size:13px; }
.footer-cols{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.footer-col h4{ margin:0 0 10px; font-size:14px; }
.footer-col ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-col a{ color: rgba(233,238,246,.82); }
.footer-bottom{ padding: 14px 0 26px; color: rgba(233,238,246,.62); }

/* Reveal animation */
.reveal{ opacity:0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in{ opacity:1; transform: translateY(0); }

/* Responsive */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero h1{ font-size:40px; }
  .grid-3{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; }
  .menu{ position:fixed; top:72px; left:14px; right:14px; display:none; flex-direction:column; align-items:stretch;
         background: rgba(11,15,20,.92); border:1px solid var(--line); border-radius: var(--radius2); padding:14px;
         backdrop-filter: blur(10px); box-shadow: var(--shadow); }
  .menu.is-open{ display:flex; }
  .menu-list{ flex-direction:column; align-items:stretch; gap:8px; }
  .menu-list a{ display:block; }
  .btn-whats-header{ width:100%; }
}


/* Stars */
.stars{font-size:14px; letter-spacing:.12em; opacity:.9; margin-bottom:10px}

.badge-whats{
  display:inline-block;
  background:#25D366;
  color:#062012;
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
}

/* Vale do Pati Premium */
.timeline{ display:grid; gap:14px; margin-top:16px; }
.titem h3{ margin:0 0 10px; }
.faq details summary{ cursor:pointer; font-weight:700; }
.faq details p{ margin:10px 0 0; color: rgba(233,238,246,.80); font-size:13px; }
.muted-note{ margin:10px 0 0; color: rgba(233,238,246,.65); font-size:12px; }
