/* ==========================================================
   Templo DAV Cariacica — Stylesheet
   ========================================================== */

/* --- Reset & Base --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: #0e2e14;
  color: #fff;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c8922a, #e8b84b);
  color: #071005;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.4rem;
  border-radius: 0 0 8px 8px;
  z-index: 10001;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus Visible --- */
.foto:focus-visible,
.gal-item:focus-visible,
.render-hero:focus-visible {
  outline: 2px solid #e8b84b;
  outline-offset: 3px;
  border-radius: 13px;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(8, 22, 10, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;

@media (max-width: 600px) {
  padding: 0.3rem 1.6rem;
}
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #e8b84b;
  flex: 1;
  margin-right: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e8b84b;
}

/* --- Hamburger Button --- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e8b84b;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 600px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 22, 10, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.70);
    padding: 0.6rem 1.2rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pix-box.reveal,
.bank-box.reveal,
.donor-book.reveal {
  transform: translateY(18px) scale(0.97);
}

.pix-box.reveal.visible,
.bank-box.reveal.visible,
.donor-book.reveal.visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-sun,
  .hero h1,
  .hero-sub,
  .hero-slogan,
  .hero-btns {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(170deg, #071a0e 0%, #122e1a 55%, #1a4a24 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.2rem 4rem;
}

@media (min-width: 768px) {
  .hero { padding: 6rem 2rem 5rem; }
}

.hero-sun {
  width: 3.5rem;
  height: auto;
  display: block;
  margin: 0 auto 1.2rem;
  color: #e8b84b;
  animation: fadeUp 0.5s ease both;
  filter: drop-shadow(0 0 18px rgba(232, 184, 75, 0.5));
}

@media (min-width: 768px) {
  .hero-sun { width: 4.5rem; }
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.55rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.4rem;
  animation: fadeUp 0.5s 0.08s ease both;
}

.hero-sub {
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.5s 0.14s ease both;
}

.hero-slogan {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
  max-width: 100%;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  font-style: italic;
  animation: fadeUp 0.5s 0.2s ease both;
}

@media (min-width: 480px) {
  .hero-slogan { font-size: 1.08rem; max-width: 480px; }
}

@media (min-width: 768px) {
  .hero-slogan { font-size: 1.22rem; max-width: 580px; }
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.5s 0.28s ease both;
}

/* --- Buttons --- */
.btn {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c8922a, #e8b84b);
  color: #071005;
  border-radius: 50px;
  padding: 0.88rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 22px rgba(200, 146, 42, 0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 146, 42, 0.58);
}

.btn-sec {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50px;
  padding: 0.88rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}

.btn-sec:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

/* --- Sections --- */
.sec {
  padding: 4rem 1.4rem;
}

.sec.branco {
  background: #f7f2ea;
  color: #2c1a0e;
}

.sec.verde {
  background: linear-gradient(155deg, #0e2e14, #1a5c2e 60%, #22703a);
}

.sec--no-top {
  padding-top: 0;
}

.inner {
  max-width: 980px;
  margin: 0 auto;
}

.tag {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #c8922a;
  margin-bottom: 0.4rem;
  display: block;
}

.tag--center {
  text-align: center;
}

h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 3.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.sec.branco h2 { color: #1a5c2e; }
.sec.verde  h2 { color: #e8b84b; }

.sec-desc {
  font-size: 0.9rem;
  color: #6b4e35;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.sec-desc--light {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 580px;
}

/* --- Photo Grid --- */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.grid2--spaced {
  margin-bottom: 1.8rem;
}

@media (max-width: 520px) {
  .grid2 { grid-template-columns: 1fr; }
}

.foto {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 146, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.foto:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.foto:hover img {
  transform: scale(1.04);
}

.foto-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem 0.65rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15) 70%, transparent);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* --- Etapas (Progress) --- */
.etapas {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.etapa {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  border: 1px solid;
}

.etapa.ok       { background: #e8f2ec; border-color: #aed4bb; color: #1a4a25; }
.etapa.andamento { background: #fdf4e3; border-color: #e5c97a; color: #7a4e10; }
.etapa.pendente  { background: #f0ebe2; border-color: #d9cebb; color: #7a6550; }

.etapa-check {
  font-size: 0.82rem;
  font-weight: 700;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.etapa-nome {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* --- Render / Gallery --- */
.render-hero {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(200, 146, 42, 0.15);
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.render-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.render-hero img {
  width: 100%;
  display: block;
}

.galeria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 380px) {
  .galeria { grid-template-columns: 1fr; }
}

.gal-item {
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(200, 146, 42, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.gal-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.04);
}

.gal-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.12) 70%, transparent);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

/* --- Pix Donation --- */
.pix-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.pix-box {
  background: linear-gradient(145deg, #0c2611, #1a5c2e);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}

.pix-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 0.35rem;
}

.pix-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1.2rem;
}

.pix-key {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 146, 42, 0.26);
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  margin-bottom: 0.85rem;
}

.pix-key-lbl {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  margin-bottom: 0.22rem;
}

.pix-key-val {
  font-size: 1rem;
  font-weight: 700;
  color: #e8b84b;
  word-break: break-all;
  user-select: all;
}

.btn-pix {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c8922a, #e8b84b);
  color: #071005;
  border: none;
  border-radius: 50px;
  padding: 0.82rem 2rem;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, background 0.3s;
}

.btn-pix:hover {
  transform: translateY(-2px);
}

.btn-pix.ok {
  background: linear-gradient(135deg, #2d7a45, #4a9e62);
  color: #fff;
}

.pix-nota {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  line-height: 1.65;
}

.pix-nota strong {
  color: rgba(255, 255, 255, 0.58);
}

/* --- Bank Transfer --- */
.bank-box {
  background: linear-gradient(145deg, #0c2611, #1a5c2e);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  margin-top: 1rem;
}

.bank-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 1rem;
}

.bank-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

@media (max-width: 480px) {
  .bank-details { grid-template-columns: 1fr; }
}

.bank-row {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 146, 42, 0.26);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.bank-lbl {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  margin-bottom: 0.2rem;
}

.bank-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8b84b;
}

/* --- Donor Book --- */
.donor-book {
  max-width: 480px;
  margin: 2rem auto 0;
  background: linear-gradient(145deg, #0c2611, #1a5c2e);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.donor-book h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 0.35rem;
}

.donor-book-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1.4rem;
}

.donor-book form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  position: relative;
}

.donor-book label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.6rem;
}

.donor-req {
  color: #e8b84b;
}

.donor-opt {
  font-family: 'Lato', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.22);
}

.donor-book input[type="text"],
.donor-book input[type="email"],
.donor-book input[type="tel"],
.donor-book textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 184, 75, 0.3);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  width: 100%;
  transition: border-color 0.2s;
}

.donor-book input::placeholder,
.donor-book textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.donor-book input:focus,
.donor-book textarea:focus {
  outline: none;
  border-bottom-color: #e8b84b;
}

.donor-book textarea {
  resize: vertical;
  min-height: 3.6rem;
}

.btn-donor {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c8922a, #e8b84b);
  color: #071005;
  border: none;
  border-radius: 50px;
  padding: 0.82rem 2rem;
  cursor: pointer;
  width: 100%;
  margin-top: 1.4rem;
  transition: transform 0.2s, background 0.3s, opacity 0.3s;
}

.btn-donor:hover {
  transform: translateY(-2px);
}

.btn-donor:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-donor.ok {
  background: linear-gradient(135deg, #2d7a45, #4a9e62);
  color: #fff;
}

.donor-msg {
  font-size: 0.78rem;
  margin-top: 0.8rem;
  min-height: 1.2rem;
}

.donor-msg.success {
  color: #4a9e62;
}

.donor-msg.error {
  color: #d9534f;
}

/* --- Donation section header --- */
.doe-title {
  text-align: center;
  color: #1a5c2e;
  margin-bottom: 0.4rem;
}

.doe-desc {
  text-align: center;
  font-size: 0.88rem;
  color: #6b4e35;
  margin-bottom: 1.6rem;
}

/* --- Goal Badge --- */
.goal-badge {
  text-align: center;
  margin-bottom: 1.6rem;
}

.goal-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 92, 46, 0.5);
  margin-bottom: 0.2rem;
}

.goal-amount {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a5c2e;
  background: rgba(26, 92, 46, 0.06);
  border: 1px solid rgba(26, 92, 46, 0.15);
  border-radius: 10px;
  padding: 0.5rem 1.4rem;
}

/* --- Pix QR Code --- */
.pix-qr {
  margin-bottom: 1rem;
}

.pix-qr img {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.12);
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: rgba(8, 22, 10, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(200, 146, 42, 0.2);
    padding: 0.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .sticky-cta.hidden {
    transform: translateY(100%);
  }

  .sticky-cta-btn {
    padding: 0.7rem 2rem;
    font-size: 0.62rem;
  }
}

/* --- Lightbox --- */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lb.open {
  display: flex;
}

.lb-img-wrap {
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s;
}

.lb-close {
  position: fixed;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  z-index: 10000;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.lb-close:hover,
.lb-close:focus-visible {
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.2s, color 0.2s;
  opacity: 0.6;
}

.lb-prev { left: 0.8rem; }
.lb-next { right: 0.8rem; }

.lb-prev:hover,
.lb-prev:focus-visible,
.lb-next:hover,
.lb-next:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  opacity: 1;
}

@media (max-width: 600px) {
  .lb-prev,
  .lb-next {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .lb-prev { left: 0.4rem; }
  .lb-next { right: 0.4rem; }
}

.lb-counter {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  z-index: 10000;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1em;
}

/* --- Footer --- */
.footer {
  background: #0a2210;
  text-align: center;
  padding: 1.8rem 1rem;
}

.footer-org {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8b84b;
  opacity: 0.45;
  margin-bottom: 0.3rem;
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.14);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  color: #25d366;
  text-decoration: none;
  font-size: 0.72rem;
  margin: 0.6rem 0;
  transition: background 0.2s;
}

.footer-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
}

.footer-whatsapp svg {
  flex-shrink: 0;
}

/* --- Mobile Touch Targets & Spacing --- */
@media (max-width: 520px) {
  .grid2 {
    gap: 1rem;
  }

  .etapa {
    padding: 0.6rem 1.1rem;
    min-height: 44px;
  }
}
