/* ============================================================
   Cinema Villa Rica — Landing: Cine Aniversário / Festas
   Paleta oficial Villa Rica:
     Primary navy: #16163F
     Accent gold:  #977631
   Tipografia: Roboto (Google Fonts)
   Mobile-first 375px
   ============================================================ */

:root {
  /* Paleta oficial */
  --navy:        #16163F;
  --navy-2:      #1f1f55;
  --navy-deep:   #0d0d2a;
  --gold:        #977631;
  --gold-soft:   #b9923f;
  --gold-pale:   #d9b876;

  --text-1:      #1D1D1D;
  --text-2:      #232323;
  --text-3:      #333333;
  --grey-1:      #9E9E9E;
  --grey-2:      #D7D6D6;
  --grey-3:      #DEDEDE;
  --bg-soft:     #F0F1F5;
  --bg-softer:   #F3F4F7;
  --white:       #FFFFFF;

  /* WhatsApp */
  --green:       #25D366;
  --green-dark:  #1EBE57;

  /* Linhas */
  --line:        #DEDEDE;
  --line-strong: #D7D6D6;
  --line-dark:   rgba(255,255,255,0.18);

  --max:        1180px;
  --max-narrow: 760px;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 18px 50px -22px rgba(22, 22, 63, 0.22);
  --shadow-sm:  0 8px 24px -14px rgba(22, 22, 63, 0.18);
  --shadow-gold:0 12px 30px -18px rgba(151, 118, 49, 0.45);

  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-2);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--max-narrow); }

/* ============================================================
   Tipografia — Roboto
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font);
  color: var(--navy);
  margin: 0 0 .4em;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
}
@media (min-width: 720px) {
  h1 { font-size: 48px; }
}
h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
}
p {
  margin: 0 0 1em;
  color: var(--text-3);
}
.accent { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 12px;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  text-align: center;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { background: var(--gold-soft); }
.btn--whats { background: var(--green); color: var(--white); }
.btn--whats:hover { background: var(--green-dark); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--grey-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.brand__mark { color: var(--gold); font-size: 1.3rem; line-height: 1; }
.brand__name em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.nav { display: none; gap: 28px; align-items: center; }
.nav a { font-size: .92rem; color: var(--text-3); font-weight: 500; }
.nav a:hover { color: var(--navy); }
.nav .btn { color: var(--white); }
@media (min-width: 860px) {
  .nav { display: flex; }
}

/* ============================================================
   Hero — foto + overlay navy
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 60px 0 80px;
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(22,22,63,0.92) 0%, rgba(22,22,63,0.72) 50%, rgba(13,13,42,0.85) 100%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(151,118,49,0.45) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .35;
}
.hero__inner { padding-top: 40px; }
.hero h1 { color: var(--white); margin-top: 8px; }
.hero .accent { color: var(--gold-pale); }
.hero .eyebrow { color: var(--gold-pale); }
.hero .lead {
  font-size: 1.1rem;
  max-width: 640px;
  color: rgba(255,255,255,0.88);
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hero__stamps {
  display: flex; flex-wrap: wrap; gap: 18px;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  font-size: .85rem;
  color: rgba(255,255,255,0.78);
}
.hero__stamps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__stamps li::before {
  content: '✓';
  color: var(--gold-pale);
  font-weight: 700;
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 72px 0; position: relative; }
.section--alt { background: var(--bg-softer); }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2 { color: var(--white); }
.section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--gold-pale); }
.section--dark p { color: rgba(255,255,255,0.85); }
.section--dark .section__note { color: rgba(255,255,255,0.7); }

.section--cta {
  background: linear-gradient(180deg, var(--bg-softer) 0%, var(--white) 100%);
}

.section__header {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}
.section__sub { color: var(--text-3); font-size: 1rem; }
.section__note {
  text-align: center;
  color: var(--text-3);
  font-size: .95rem;
  margin-top: 24px;
}

/* ============================================================
   Grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.card__icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { color: var(--navy); }

/* ============================================================
   Steps
   ============================================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step h3 { color: var(--navy); }
.step__num {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 14px;
}

/* ============================================================
   Pacotes — bordas douradas
   ============================================================ */
.pacotes { align-items: stretch; }
.pacote {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pacote:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pacote--featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pacote--featured h3,
.pacote--featured .pacote__price strong { color: var(--white); }
.pacote--featured .pacote__price-unit,
.pacote--featured .pacote__price-from,
.pacote--featured .pacote__min { color: rgba(255,255,255,0.7); }
.pacote--featured .pacote__list li {
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.1);
}
.pacote--featured .pacote__head { border-bottom-color: rgba(255,255,255,0.15); }
.pacote--featured .pacote__tag { color: var(--gold-pale); }

.pacote__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}
.pacote__head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.pacote__tag {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 4px;
}
.pacote h3 { font-size: 1.45rem; margin: 0 0 12px; }
.pacote__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 4px;
}
.pacote__price strong {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy);
}
.pacote__price-from { font-size: .8rem; color: var(--grey-1); }
.pacote__price-unit { color: var(--text-3); font-size: .95rem; }
.pacote__min { font-size: .85rem; color: var(--text-3); margin: 0; }
.pacote__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.pacote__list li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: .95rem;
  color: var(--text-2);
  border-bottom: 1px dashed var(--line);
}
.pacote__list li:last-child { border-bottom: none; }
.pacote__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Tabela comparativa */
.compare { margin-top: 56px; overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: .92rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.compare__table th,
.compare__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare__table thead th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  border-bottom: 2px solid var(--gold);
  background: var(--bg-softer);
}
.compare__table thead th:first-child {
  text-align: left;
  background: var(--bg-softer);
}
.compare__table tbody th {
  font-weight: 500;
  color: var(--text-2);
}
.compare__table tbody td {
  text-align: center;
  color: var(--text-3);
}
.check.yes { color: var(--gold); font-weight: 700; }
.check.no { color: var(--grey-1); }

/* ============================================================
   Categorias filmes (dentro section--dark)
   ============================================================ */
.categorias .categoria {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.categorias .categoria:hover {
  border-color: var(--gold);
  background: rgba(151,118,49,0.08);
}
.categoria__icon { font-size: 2rem; margin-bottom: 8px; }
.section--dark .categoria h3 { color: var(--white); }
.section--dark .categoria p { color: rgba(255,255,255,0.78); }

/* ============================================================
   Diferenciais
   ============================================================ */
.diffs .diff {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
}
.diffs .diff h3 { color: var(--navy); margin-bottom: 6px; }
.diffs .diff p { margin: 0; }

/* ============================================================
   Depoimentos
   ============================================================ */
.depoimentos .dep {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.dep blockquote { margin: 0 0 18px; }
.dep blockquote p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  position: relative;
  margin-top: 0;
}
.dep blockquote p::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 3.4rem;
  color: var(--gold);
  position: absolute;
  top: -24px; left: -8px;
  line-height: 1;
  opacity: .6;
}
.dep figcaption { font-size: .85rem; color: var(--text-3); }
.dep figcaption strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}

.counter {
  color: var(--gold);
  font-weight: 900;
}

/* ============================================================
   Galeria
   ============================================================ */
.galeria {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .galeria { grid-template-columns: repeat(4, 1fr); }
}
.galeria figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  position: relative;
}
.galeria img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.galeria figure:hover img { transform: scale(1.05); }

/* ============================================================
   FAQ (na section--dark)
   ============================================================ */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-right: 50px;
  color: var(--white);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  padding: 0 22px 18px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: .95rem;
}

/* ============================================================
   Form
   ============================================================ */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 14px;
}
@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}
.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.form__field span {
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--text-2);
  font-weight: 600;
}
.form__field input,
.form__field textarea,
.form__field select {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-1);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(151,118,49,0.15);
}
.form__field input::placeholder { color: var(--grey-1); }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-3);
  margin: 8px 0 18px;
  cursor: pointer;
}
.form__check input { margin-top: 3px; accent-color: var(--navy); }
.form__check a { color: var(--gold); text-decoration: underline; }
.form__resp {
  text-align: center;
  margin: 16px 0 0;
  font-size: .85rem;
  color: var(--text-3);
}
.form__resp a { color: var(--gold); font-weight: 600; }

/* ====== ANTI-SPAM ====== */
/* Honeypot — fora do viewport, sem foco, sem leitor de tela */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
/* Erro inline por campo (oculto por padrão; mostrado quando .has-error) */
.form__field .field-error,
.form__check + .field-error {
  display: none;
  color: #c0392b;
  font-size: .78rem;
  margin-top: 4px;
  line-height: 1.3;
}
.form__field.has-error .field-error,
.field-error[data-error-for].has-error { display: block; }
.form__field.has-error input,
.form__field.has-error textarea,
.form__field.has-error select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .15);
}
.form__feedback {
  margin: 12px 0 0;
  font-size: .9rem;
  min-height: 1.2em;
  text-align: center;
}
.form__feedback.ok { color: #2e7d32; }
.form__feedback.err { color: #c0392b; }
.form__legal-mini {
  margin: 10px 0 0;
  font-size: .72rem;
  color: var(--text-3);
  text-align: center;
}
.form__legal-mini a { color: var(--gold); text-decoration: underline; }
.grecaptcha-badge { visibility: visible; z-index: 30; }
.form__success {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.form__success h3 { color: var(--navy); font-size: 1.6rem; }

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.whats-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform .2s ease, background .2s ease;
}
.whats-float:hover { background: var(--green-dark); transform: scale(1.05); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 56px 0 32px;
  border-top: 1px solid var(--navy-2);
  color: rgba(255,255,255,0.7);
  font-size: .9rem;
}
.footer__inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer p { color: rgba(255,255,255,0.7); margin: 0 0 .5em; }
.footer strong { color: var(--white); }
.footer__brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__brand em {
  font-style: italic;
  color: var(--gold-pale);
}
.footer a { color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--gold-pale); }
.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   Cookie banner LGPD
   ============================================================ */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px 20px;
  z-index: 60;
  box-shadow: var(--shadow);
  font-size: .85rem;
  color: var(--text-3);
}
.cookie p { margin: 0 0 14px; color: var(--text-2); }
.cookie a { color: var(--gold); text-decoration: underline; }
.cookie__btns {
  display: flex; gap: 8px;
  justify-content: flex-end;
}

/* ============================================================
   Acessibilidade / motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
