/* ============================================================
   Retiro Intimidade com Deus — Comunidade Nova Aliança
   Paleta litúrgica: azul-marinho profundo, dourado, creme
   ============================================================ */

:root {
  --navy: #14213d;
  --navy-2: #1c2e52;
  --navy-deep: #0d1628;
  --gold: #c8a15a;
  --gold-light: #e2c98d;
  --gold-dark: #a9843c;
  --cream: #f7f3ea;
  --cream-2: #efe8d8;
  --ink: #2a2a2a;
  --muted: #6b6f7a;
  --white: #ffffff;
  --whats: #25d366;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 4px 16px rgba(20, 33, 61, .08);
  --shadow-md: 0 12px 40px rgba(20, 33, 61, .14);
  --shadow-lg: 0 24px 70px rgba(13, 22, 40, .28);
  --radius: 16px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--navy); }

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

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 15px 34px; border-radius: 50px; font-family: var(--sans);
  font-weight: 500; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.btn-lg { padding: 18px 44px; font-size: .82rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-deep); box-shadow: 0 10px 30px rgba(200, 161, 90, .4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200, 161, 90, .55); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, .55); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); transform: translateY(-3px); }
.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, .35); }
.btn-whats:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37, 211, 102, .5); }

/* -------- Preloader -------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-cross { position: relative; width: 46px; height: 46px; }
.preloader-cross span { position: absolute; background: var(--gold); border-radius: 3px; animation: pulseCross 1.4s ease-in-out infinite; }
.preloader-cross span:nth-child(1) { width: 6px; height: 46px; left: 20px; top: 0; }
.preloader-cross span:nth-child(2) { width: 46px; height: 6px; left: 0; top: 15px; }
@keyframes pulseCross { 0%,100% { opacity: .3; transform: scale(.9);} 50% { opacity: 1; transform: scale(1);} }

/* -------- Header -------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: all .4s var(--ease);
}
.header.scrolled {
  background: rgba(20, 33, 61, .96); backdrop-filter: blur(12px);
  padding: 12px 0; box-shadow: 0 8px 30px rgba(13, 22, 40, .35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-symbol { font-size: 1.7rem; color: var(--gold); line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; letter-spacing: .3px; }
.brand-text small { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 400; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255, 255, 255, .85); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 40px; transition: all .3s ease; position: relative;
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; width: 0; height: 1.5px;
  background: var(--gold); transition: all .3s ease; transform: translateX(-50%);
}
.nav-link:hover::after { width: 40%; }
.nav-cta { background: var(--gold); color: var(--navy-deep) !important; font-weight: 500; margin-left: 8px; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: all .35s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -------- Hero -------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate; will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.05);} to { transform: scale(1.16);} }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13, 22, 40, .92) 0%, rgba(13, 22, 40, .45) 45%, rgba(13, 22, 40, .65) 100%),
    radial-gradient(circle at 70% 30%, rgba(200, 161, 90, .18), transparent 55%);
}
.hero-content { position: relative; z-index: 3; color: #fff; text-align: center; padding: 130px 24px 90px; }
.hero-kicker {
  font-size: .82rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 22px; font-weight: 400;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6.6rem); color: #fff; font-weight: 600; line-height: .98;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .4); margin-bottom: 26px;
}
.hero-title em { color: var(--gold); font-style: italic; font-weight: 500; }
.hero-sub { max-width: 640px; margin: 0 auto 38px; font-size: 1.18rem; color: rgba(255, 255, 255, .9); font-weight: 300; }

.hero-meta { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-bottom: 42px; }
.hero-meta-item { display: flex; align-items: center; gap: 12px; text-align: left; }
.hm-icon { font-size: 1.7rem; }
.hero-meta-item strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: #fff; }
.hero-meta-item small { color: var(--gold-light); letter-spacing: .1em; font-size: .78rem; text-transform: uppercase; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* Countdown */
.countdown { display: inline-flex; gap: 14px; padding: 20px 26px; border-radius: 18px;
  background: rgba(255, 255, 255, .08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .16); }
.cd-item { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
.cd-item span { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.cd-item small { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .75); margin-top: 6px; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold); border-radius: 3px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0);} 40% { opacity: 1;} 80% { opacity: 0; transform: translateY(16px);} 100% { opacity: 0;} }

/* -------- Sections common -------- */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow { display: inline-block; font-size: .76rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500; margin-bottom: 14px; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.divider::before, .divider::after { content: ''; height: 1px; width: 60px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.divider span { color: var(--gold); font-size: 1.1rem; }

/* -------- Sobre -------- */
.section-sobre { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.sobre-text p { margin-bottom: 18px; color: #444; font-size: 1.08rem; }
.sobre-text strong { color: var(--navy); font-weight: 600; }
.sobre-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card { background: var(--cream); border: 1px solid var(--cream-2); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all .4s var(--ease); }
.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.mc-icon { font-size: 2.1rem; display: block; margin-bottom: 12px; }
.mini-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.mini-card p { font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* -------- Galeria -------- */
.section-galeria { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 22, 40, .75), transparent 55%); opacity: .5; transition: opacity .4s; }
.gallery-item figcaption { position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500; transform: translateY(6px); opacity: 0; transition: all .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* -------- Critérios -------- */
.section-criterios { background: var(--white); }
.crit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 50px; }
.crit-card { position: relative; background: var(--cream); border-radius: var(--radius); padding: 32px 28px 28px;
  border-left: 4px solid var(--gold); transition: all .4s var(--ease); overflow: hidden; }
.crit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.crit-num { position: absolute; top: 10px; right: 18px; font-family: var(--serif); font-size: 3.4rem;
  font-weight: 700; color: var(--gold); opacity: .18; }
.crit-card p { color: #444; font-size: 1rem; position: relative; z-index: 2; }
.crit-card strong { color: var(--navy); }
.crit-specific { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md); }
.crit-specific h3 { color: var(--gold-light); font-size: 1.8rem; margin-bottom: 22px; text-align: center; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 16px; color: rgba(255, 255, 255, .9); font-size: 1rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  background: var(--gold); color: var(--navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; }
.crit-specific strong { color: var(--gold-light); }

/* -------- Condições -------- */
.section-condicoes { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.cond-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.cond-item { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); transition: all .4s var(--ease); align-items: flex-start; }
.cond-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cond-ico { font-size: 1.6rem; flex-shrink: 0; }
.cond-item p { font-size: .97rem; color: #4a4a4a; }
.cond-item strong { color: var(--navy); }

/* -------- Informações -------- */
.section-info { background: var(--white); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-bottom: 32px; }
.info-card { background: var(--cream); border-radius: var(--radius); padding: 32px 28px; border-top: 3px solid var(--gold);
  transition: all .4s var(--ease); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card h3 { font-size: 1.5rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.info-ico { font-size: 1.3rem; }
.info-card p { color: #444; margin-bottom: 10px; }
.info-card ul li { position: relative; padding-left: 20px; margin-bottom: 8px; color: #555; font-size: .96rem; }
.info-card ul li::before { content: '•'; position: absolute; left: 4px; color: var(--gold-dark); font-weight: 700; }
.info-note { font-size: .9rem; color: var(--muted); font-style: italic; }
.info-alert { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: rgba(255, 255, 255, .95);
  border-radius: var(--radius); padding: 30px 34px; font-size: 1.02rem; box-shadow: var(--shadow-md); border-left: 5px solid var(--gold); }
.info-alert strong { color: var(--gold-light); }

/* -------- Investimento -------- */
.section-invest { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.invest-card { display: grid; grid-template-columns: 340px 1fr; gap: 0; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff; margin-bottom: 30px; }
.invest-price { background: linear-gradient(150deg, var(--navy-2), var(--navy-deep)); color: #fff;
  padding: 54px 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; }
.invest-price::before { content: '✝'; position: absolute; top: 20px; right: 24px; color: var(--gold); opacity: .35; font-size: 1.6rem; }
.ip-label { text-transform: uppercase; letter-spacing: .25em; font-size: .78rem; color: var(--gold-light); margin-bottom: 12px; }
.ip-value { font-family: var(--serif); font-size: 4.4rem; font-weight: 700; color: #fff; line-height: 1; }
.ip-value small { font-size: 1.6rem; }
.ip-plus { margin-top: 16px; font-size: .95rem; color: rgba(255, 255, 255, .8); }
.invest-details { padding: 44px 42px; }
.invest-details p { color: #444; margin-bottom: 18px; font-size: 1.05rem; }
.invest-details strong { color: var(--navy); }
.invest-details .check-list { margin-bottom: 26px; }
.invest-details .check-list li { color: #4a4a4a; }
.invest-details .check-list li::before { background: var(--gold); color: #fff; }
.invest-refund { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px dashed var(--gold);
  border-radius: var(--radius); padding: 24px 28px; }
.ir-ico { font-size: 1.4rem; }
.invest-refund p { font-size: .96rem; color: #555; }
.invest-refund strong { color: var(--gold-dark); }

/* -------- Formulário -------- */
.section-form { background: var(--navy); position: relative; }
.section-form::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(200, 161, 90, .12), transparent 45%); pointer-events: none; }
.section-form .section-title, .section-form .eyebrow { color: #fff; }
.section-form .eyebrow { color: var(--gold-light); }
.section-form .section-lead { color: rgba(255, 255, 255, .78); }
.section-form .section-lead strong { color: var(--gold-light); }
.form { max-width: 900px; margin: 0 auto; background: var(--white); border-radius: 22px; padding: 46px; box-shadow: var(--shadow-lg); position: relative; }
.form-section-title { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin: 30px 0 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--cream-2); }
.form-section-title:first-child { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; padding: 13px 16px; border: 1.5px solid #dcd7ca;
  border-radius: 10px; background: var(--cream); color: var(--ink); transition: all .3s ease; width: 100%; font-weight: 300;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(200, 161, 90, .15);
}
.field-hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.field-consent { margin-top: 26px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: #444; cursor: pointer; line-height: 1.5; }
.consent input { width: 22px; height: 22px; flex-shrink: 0; accent-color: var(--gold-dark); margin-top: 2px; }
.form-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; align-items: center; }
.form-feedback { margin-top: 18px; font-size: .98rem; font-weight: 500; }
.form-feedback.ok { color: #1a7a3c; }
.form-feedback.err { color: #b3261e; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9534f; background: #fdf3f2; }

/* -------- Contato -------- */
.section-contato { background: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.contato-info { display: flex; flex-direction: column; gap: 22px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-ico { font-size: 1.5rem; width: 50px; height: 50px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--cream-2); }
.ci-item h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dark); margin-bottom: 4px; }
.ci-item p { color: #444; }
.ci-item a { color: var(--navy); transition: color .3s; }
.ci-item a:hover { color: var(--gold-dark); }
.contato-info .btn { margin-top: 12px; align-self: flex-start; }
.contato-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.contato-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* -------- Footer -------- */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .75); padding: 60px 0 30px; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-symbol { font-size: 2rem; }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.4rem; color: #fff; }
.footer-brand p { font-size: .9rem; color: rgba(255, 255, 255, .6); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255, 255, 255, .7); transition: color .3s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: .82rem; color: rgba(255, 255, 255, .45); border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; width: 100%; max-width: 700px; }

/* -------- WhatsApp float -------- */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 60px; height: 60px;
  background: var(--whats); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5); transition: transform .3s var(--ease); animation: whatsPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes whatsPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);} 70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);} 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);} }

/* -------- Lightbox -------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8, 13, 25, .95);
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); animation: lbIn .4s var(--ease); }
@keyframes lbIn { from { transform: scale(.92); opacity: 0;} to { transform: scale(1); opacity: 1;} }
.lb-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .3s; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; cursor: pointer; transition: all .3s; }
.lb-nav:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.lb-prev { left: 26px; } .lb-next { right: 26px; }

/* -------- Reveal animations -------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .invest-card { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-map { min-height: 320px; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 8px;
    background: rgba(13, 22, 40, .98); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .hero-meta { gap: 24px; }
  .countdown { gap: 6px; padding: 16px 14px; }
  .cd-item { min-width: 52px; }
  .cd-item span { font-size: 1.8rem; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .sobre-cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .crit-specific { padding: 30px 22px; }
  .hero-content { padding: 120px 20px 70px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; }
  .lb-nav { width: 42px; height: 42px; font-size: 1.5rem; }
}

@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
