﻿/* ========================================
   RESGATANDO VIDAS — LANDING PAGE PREMIUM
   ======================================== */

/* ---- DESIGN TOKENS ---- */
:root {
  --clr-primary:   #C8284E;
  --clr-primary-h: #A01F3B;
  --clr-accent:    #E8622A;
  --clr-gold:      #C9963A;
  --clr-dark:      #08080D;
  --clr-dark2:     #0F0F18;
  --clr-bg:        #0D0D14;
  --clr-surface:   #14141E;
  --clr-surface2:  #1C1C28;
  --clr-border:    #252535;
  --clr-text:      #E2E2F0;
  --clr-muted:     #7878A0;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  --section-py: clamp(4.5rem, 9vw, 7.5rem);
  --ease:       cubic-bezier(.22,.68,0,1.2);
  --ease-out:   cubic-bezier(.25,.46,.45,.94);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:  0 20px 56px rgba(0,0,0,.5);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.15; font-weight: 700; color: var(--clr-text); }

/* ---- SECTION EYEBROW ---- */
.section-eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-body {
  font-size: 1.02rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.lp-section { padding: var(--section-py) 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
#main-nav {
  padding: 1.1rem 0;
  background: transparent;
}
#main-nav.scrolled {
  background: rgba(13,13,20,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding: .75rem 0;
}
#main-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  transition: color .3s;
}
#main-nav.scrolled .navbar-brand { color: var(--clr-text); }
.nav-logo-img {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
  transition: border-color .3s;
}
#main-nav.scrolled .nav-logo-img { border-color: var(--clr-border); }
.nav-brand-text { font-family: var(--ff-display); }

#main-nav .nav-link {
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .8rem !important;
  color: rgba(255,255,255,.85) !important;
  border-radius: 6px;
  transition: color .25s, background .25s;
  position: relative;
}
#main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .8rem; right: .8rem;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s var(--ease-out);
}
#main-nav .nav-link:hover::after { transform: scaleX(1); }
#main-nav.scrolled .nav-link { color: var(--clr-text) !important; }
#main-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.07); }
#main-nav.scrolled .nav-link:hover { color: var(--clr-primary) !important; background: var(--clr-surface2); }

.btn-rv-nav {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.25rem;
  background: var(--clr-primary);
  color: #fff !important;
  font-weight: 600;
  font-size: .875rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}
.btn-rv-nav:hover {
  background: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-primary) !important;
}
#main-nav:not(.scrolled) .btn-rv-nav:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff !important;
  background: rgba(255,255,255,.12);
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  padding: .5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggler:focus { box-shadow: none !important; }
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
#main-nav.scrolled .toggler-bar { background: var(--clr-text); }

/* navbar mobile drop */
@media (max-width: 991px) {
  #navbarNav { background: rgba(13,13,20,.97); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 1.5rem; margin-top: .5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--clr-border); }
  #navbarNav .nav-link { color: var(--clr-text) !important; padding: .65rem .5rem !important; }
  #navbarNav .nav-link::after { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---- Vídeo de fundo ---- */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Imagem de fundo substituída pelo vídeo */
.hero-bg-img { display: none; }

/* ---- Vídeo flutuante de destaque ---- */
.hero-video-float {
  position: absolute;
  bottom: 5.5rem;
  right: clamp(1rem, 3vw, 3rem);
  z-index: 10;
  width: clamp(180px, 20vw, 300px);
}
.hvf-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(200,40,78,.15);
  background: var(--clr-dark);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.hvf-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 28px 70px rgba(0,0,0,.8), 0 0 0 2px rgba(200,40,78,.4);
}
.hvf-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.hvf-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .6rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hvf-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}

/* Responsivo: esconde/reduz em mobile */
@media (max-width: 640px) {
  .hero-video-float { display: none; }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-in-out infinite alternate;
  display: none;
}
@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(19,3,8,.88) 0%,
    rgba(30,10,16,.7) 50%,
    rgba(19,3,8,.6) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,40,78,.25), transparent 70%);
  animation: float-particle 12s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width:300px;height:300px; top:10%; left:5%;  animation-delay:0s;   animation-duration:14s; }
.hero-particles span:nth-child(2) { width:200px;height:200px; top:50%; left:70%; animation-delay:2s;   animation-duration:11s; }
.hero-particles span:nth-child(3) { width:400px;height:400px; bottom:0; left:30%;animation-delay:4s;   animation-duration:16s; }
.hero-particles span:nth-child(4) { width:150px;height:150px; top:20%; right:10%;animation-delay:6s;   animation-duration:10s; }
.hero-particles span:nth-child(5) { width:250px;height:250px; bottom:20%;left:10%;animation-delay:8s;  animation-duration:13s; }
@keyframes float-particle {
  0%,100% { transform: translate(0,0) scale(1); opacity: .6; }
  33%      { transform: translate(20px,-30px) scale(1.1); opacity: .3; }
  66%      { transform: translate(-15px,20px) scale(.9); opacity: .5; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 2rem 1rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
  margin-left: 0;
}
.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.35);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.hero-title em { color: var(--clr-gold); display: block; }
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: .9rem 2.25rem;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  border-radius: 999px;
  border: 2px solid var(--clr-primary);
  transition: all .3s var(--ease-out);
  box-shadow: 0 8px 32px rgba(200,40,78,.4);
}
.btn-hero-primary:hover {
  background: var(--clr-primary-h);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200,40,78,.5);
  color: #fff;
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: .9rem 2.25rem;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: all .3s var(--ease-out);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
  color: #fff;
  transform: translateY(-3px);
}
.hero-scroll-hint {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.hero-scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%,100% { top: 6px; opacity: 1; }
  80%      { top: 22px; opacity: 0; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.section-sobre { background: var(--clr-bg); }
.sobre-img-main {
  width: 100%;
  height: clamp(280px, 35vw, 420px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(.9) contrast(1.05);
}
.sobre-img-badge {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  color: var(--clr-text);
}
.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.5rem 0 2rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: all .25s;
}
.pill:hover { background: var(--clr-primary); color: #fff; border-color: transparent; }
.link-pastor {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-surface2);
  transition: all .3s var(--ease-out);
}
.link-pastor:hover {
  border-color: var(--clr-primary);
  box-shadow: 0 4px 20px rgba(200,40,78,.12);
  transform: translateY(-2px);
}
.pastor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
}
.link-pastor > div { display: flex; flex-direction: column; gap: .2rem; }
.link-pastor strong { font-size: .95rem; color: var(--clr-text); }
.link-pastor span { font-size: .82rem; color: var(--clr-muted); }

/* ============================================================
   AGENDA
   ============================================================ */
.section-agenda {
  background: var(--clr-dark2);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-agenda::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,40,78,.15), transparent);
  pointer-events: none;
}
.section-agenda .section-eyebrow { color: var(--clr-gold); }
.section-agenda .section-title { color: #fff; }
.section-agenda em { color: var(--clr-gold); }
.section-agenda .section-sub { color: rgba(255,255,255,.6); }
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.agenda-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease-out);
}
.agenda-card:hover {
  background: rgba(200,40,78,.12);
  border-color: rgba(200,40,78,.3);
  transform: translateY(-4px);
}
.agenda-card-icon {
  color: var(--clr-primary);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,40,78,.08);
  border: 1px solid rgba(200,40,78,.2);
  border-radius: 12px;
}
.agenda-card-body { flex: 1; }
.agenda-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .35rem;
}
.agenda-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.agenda-hour {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: .35rem;
}
.agenda-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.agenda-ceia {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: rgba(201,150,58,.1);
  border: 1px solid rgba(201,150,58,.3);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.ceia-icon {
  color: var(--clr-gold);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: .2rem;
}
.agenda-ceia strong { display: block; color: var(--clr-gold); font-size: 1rem; margin-bottom: .3rem; }
.agenda-ceia p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.agenda-address {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.address-pin {
  color: var(--clr-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.agenda-address strong { display: block; color: #fff; font-size: 1rem; margin-bottom: .2rem; }
.address-link { font-size: .85rem; color: var(--clr-primary); font-weight: 600; transition: color .2s; }
.address-link:hover { color: var(--clr-accent); }

/* ============================================================
   MINISTÉRIOS
   ============================================================ */
.section-ministerios { background: var(--clr-surface); }
.min-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease-out);
  height: 100%;
}
.min-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.min-card-img { position: relative; height: 220px; overflow: hidden; }
.min-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.min-card:hover .min-card-img img { transform: scale(1.07); }
.min-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,3,8,.6), transparent 60%); }
.min-card-body { padding: 1.5rem; }
.min-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clr-primary); margin-bottom: .5rem; }
.min-card-body h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--clr-text); margin-bottom: .6rem; }
.min-card-body p { font-size: .9rem; color: var(--clr-muted); line-height: 1.6; }
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.25rem;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  transition: all .3s var(--ease-out);
}
.btn-rv-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200,40,78,.35);
}

/* ============================================================
   GALERIA — CARROSSEL
   ============================================================ */
.section-galeria { background: var(--clr-dark); padding: var(--section-py) 0; }
.section-galeria .section-eyebrow { color: var(--clr-gold); }
.section-galeria .section-title { color: #fff; }
.section-galeria em { color: var(--clr-gold); }
.section-galeria .section-sub { color: rgba(255,255,255,.55); }

/* Wrapper posicional */
.carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Trilho overflow oculto */
.carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.carousel-track {
  display: flex;
  will-change: transform;
  transition: transform .55s var(--ease-out);
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.carousel-slide img {
  width: 100%;
  height: clamp(320px, 50vw, 600px);
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Setas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: rgba(13,13,20,.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.carousel-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--clr-border);
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--clr-primary);
  width: 24px;
  border-radius: 4px;
}
.carousel-dot:hover:not(.active) { background: var(--clr-muted); }

@media (max-width: 768px) {
  .carousel-wrap { padding: 0 2.5rem; }
  .carousel-btn { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .carousel-wrap { padding: 0 1rem; }
  .carousel-btn { display: none; }
}

/* ============================================================
   CONTATO
   ============================================================ */
.section-contato { background: var(--clr-bg); }
.contato-infos { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.contato-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { color: var(--clr-primary); flex-shrink: 0; width: 44px; height: 44px; background: var(--clr-surface2); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--clr-border); }
.contato-info-item > div { display: flex; flex-direction: column; gap: .2rem; }
.contato-info-item strong { font-size: .85rem; font-weight: 700; color: var(--clr-muted); letter-spacing: .06em; text-transform: uppercase; }
.contato-info-item span, .contato-info-item a { font-size: 1rem; color: var(--clr-text); font-weight: 500; transition: color .2s; }
.contato-info-item a:hover { color: var(--clr-primary); }
.contato-form-card { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group-rv label { font-size: .85rem; font-weight: 600; color: var(--clr-text); letter-spacing: .03em; }
.form-group-rv input,
.form-group-rv select,
.form-group-rv textarea {
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--ff-body);
  background: var(--clr-surface2);
  color: var(--clr-text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  resize: vertical;
}
.form-group-rv input::placeholder,
.form-group-rv textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group-rv input:focus,
.form-group-rv select:focus,
.form-group-rv textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200,40,78,.2);
  background: var(--clr-surface2);
}
.btn-rv-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  transition: all .3s var(--ease-out);
  box-shadow: 0 8px 28px rgba(200,40,78,.35);
}
.btn-rv-full:hover { background: #a01f3b; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,40,78,.45); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--clr-dark); color: rgba(255,255,255,.75); padding: 3rem 0 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; opacity: .85; }
.footer-brand > div { display: flex; flex-direction: column; gap: .2rem; }
.footer-brand strong { font-size: .95rem; color: #fff; font-weight: 700; }
.footer-brand span { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7); transition: all .25s; }
.footer-socials a:hover { background: var(--clr-primary); border-color: transparent; color: #fff; transform: translateY(-3px); }
.footer-bottom { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.4); text-align: center; }
.footer-credit { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-credit img { height: 20px; width: auto; opacity: .7; transition: opacity .2s; }
.footer-credit:hover { color: #fff; }
.footer-credit:hover img { opacity: 1; }
.footer-credit strong { color: rgba(255,255,255,.7); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s var(--ease-out);
}
.wa-float:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 36px rgba(37,211,102,.6); color: #fff; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in .25s var(--ease-out);
}
#lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-backdrop { position: absolute; inset: 0; cursor: zoom-out; }
#lb-img { position: relative; z-index: 1; max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 40px 80px rgba(0,0,0,.5); animation: lb-img-in .3s var(--ease-out); }
@keyframes lb-img-in { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 50%; width: 48px; height: 48px;
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: all .2s; line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--clr-primary); border-color: transparent; }
.lb-close { top: 1.25rem; right: 1.25rem; font-size: 1.6rem; }
.lb-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up  { opacity: 0; transform: translateY(36px);  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 991px) {
  .sobre-img-badge { right: .5rem; }
  #navbarNav { background: rgba(255,255,255,.97); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 1.5rem; margin-top: .5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
  #navbarNav .nav-link { color: var(--clr-text) !important; padding: .65rem .5rem !important; }
  #navbarNav .nav-link::after { display: none; }
}
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .agenda-grid { grid-template-columns: 1fr; }
  .galeria-masonry { columns: 2 150px; }
  .contato-form-card { padding: 1.75rem 1.25rem; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .sobre-img-badge { right: .5rem; bottom: .75rem; padding: .75rem 1rem; }
  .gal-item--tall img { height: 220px; }
}
@media (max-width: 576px) {
  :root { --section-py: 3rem; }
  .hero-eyebrow { font-size: .7rem; }
  .hero-sub { font-size: .9rem; }
  .btn-hero-primary, .btn-hero-ghost { padding: .8rem 1.6rem; font-size: .875rem; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .galeria-masonry { columns: 2 120px; column-gap: .35rem; padding: 0 .35rem; }
  .gal-item { margin-bottom: .35rem; }
  .agenda-ceia { flex-direction: column; }
  .agenda-address { flex-direction: column; gap: .5rem; }
  .footer-bottom { align-items: center; }
  .sobre-img-badge { position: static; margin-top: 1rem; display: inline-flex; border: 1px solid var(--clr-border); border-radius: var(--radius); }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .lb-close { top: .75rem; right: .75rem; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-dark); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 3px; }
