/* ============================================================
   Universalidade da Bíblia — Depoimentos (Static)
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #374151;
  line-height: 1.6;
}

/* --- CSS Variables --- */
:root {
  --blue:      #1B6EC2;
  --dark-blue: #0d4f94;
  --orange:    #F5A623;
  --bg-light:  #f0f5fb;
  --text-dark: #0d4f94;
  --text-mid:  #374151;
  --border:    #e2e8f0;
  --radius:    0.75rem;
}

/* --- Typography --- */
.serif { font-family: 'Merriweather', Georgia, serif; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* --- Scroll animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header-tagline {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
  padding: 1.25rem 1rem;
  text-align: center;
}
.header-tagline p {
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto;
}
@media (min-width: 768px)  { .header-tagline p { font-size: 1.125rem; } }
@media (min-width: 1024px) { .header-tagline p { font-size: 1.25rem; } }

.header-stripe {
  height: 4px;
  background: var(--orange);
}

.header-body {
  background: linear-gradient(180deg, #f0f5fb 0%, #fff 100%);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    gap: 3rem;
    padding: 2.5rem 2.5rem;
  }
}

.header-logo-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .header-logo-col {
    border-right: 1px solid #e2e8f0;
    padding-right: 3rem;
  }
}

.header-logo-col img {
  width: 16rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.12));
}
@media (min-width: 768px)  { .header-logo-col img { width: 18rem; } }
@media (min-width: 1024px) { .header-logo-col img { width: 20rem; } }

.header-since {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.header-banner-col {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) { .header-banner-col { text-align: left; } }

.dep-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.dep-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep-badge-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.dep-badge-text {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
@media (min-width: 768px) { .dep-badge-text { font-size: 1.875rem; } }

.header-h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px)  { .header-h1 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .header-h1 { font-size: 2.25rem; } }

.header-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.divider-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .divider-orange { justify-content: flex-start; } }
.divider-orange .line { height: 1px; width: 5rem; background: var(--orange); }
.divider-orange .dot  { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--orange); }

.header-verse {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}
.header-verse-ref {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.header-divider { height: 1px; background: var(--border); }

/* --- Utilities --- */
.text-center { text-align: center; }

/* ============================================================
   SECTION HEADERS (reusable)
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: var(--dark-blue);
}
.section-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  margin-top: 0.5rem;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-quote-box {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}

#section-videos {
  padding: 5rem 0;
  background: #f8fafc;
}

.video-featured {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: pointer;
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.32);
  transition: background .2s;
}
.video-card:hover .video-overlay { background: rgba(0,0,0,.12); }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 100%;
  height: 100%;
}
.play-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .2s;
  flex-shrink: 0;
}
.video-featured .play-circle { width: 5rem; height: 5rem; }
.video-card:hover .play-circle { transform: scale(1.12); }

.play-circle svg { width: 1.5rem; height: 1.5rem; margin-left: 3px; }
.video-featured .play-circle svg { width: 2.25rem; height: 2.25rem; }

.video-thumb-fallback {
  position: absolute;
  inset: 0;
  background: #1a1a2e;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-thumb-fallback span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.25);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pag-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  color: #4b5563;
}
.pag-btn:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.pag-btn:disabled { opacity: .3; cursor: not-allowed; }
.pag-btn svg { width: 1.25rem; height: 1.25rem; }
.pag-dots { display: flex; gap: 0.5rem; align-items: center; }
.pag-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.pag-dot.active { background: var(--blue); }

/* ============================================================
   EMAIL TESTIMONIALS
   ============================================================ */
#section-email {
  padding: 5rem 0;
  background: #fff;
}

.email-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .email-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .email-grid { grid-template-columns: repeat(3, 1fr); } }

.email-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
  transition: box-shadow .2s;
}
.email-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }

.email-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid #f8fafc;
}
.email-photo-wrap {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}
.email-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  position: absolute;
  inset: 0;
}
.email-initials {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}
.email-meta { min-width: 0; }
.email-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-addr {
  font-size: 0.75rem;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-body { padding: 1rem; }
.email-quote-mark {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--orange);
  font-family: Georgia, serif;
}
.email-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  font-style: italic;
}

/* Promo card */
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1.25rem;
  min-height: 200px;
}
.promo-card p {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}
.promo-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.promo-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

/* ============================================================
   MID BANNER
   ============================================================ */
.mid-banner {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
}
.mid-banner-inner {
  display: inline-block;
  padding: 1.75rem 2.5rem;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  max-width: 36rem;
}
.mid-banner-inner p {
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .mid-banner-inner p { font-size: 1.5rem; } }
.mid-banner-inner .accent { color: var(--orange); }

/* ============================================================
   FACEBOOK TESTIMONIALS
   ============================================================ */
#section-facebook {
  padding: 5rem 0;
  background: #F0F2F5;
}

.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877F2;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  margin-bottom: 1rem;
}
.fb-badge svg { width: 1.25rem; height: 1.25rem; fill: #fff; }

.fb-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.75rem;
}
.fb-hint svg { width: 1rem; height: 1rem; }

.fb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px)  { .fb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fb-grid { grid-template-columns: repeat(3, 1fr); } }

.fb-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  position: relative;
}
.fb-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fb-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fb-unavail {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.fb-hover-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.fb-card:hover .fb-hover-overlay { background: rgba(0,0,0,.18); }
.fb-zoom-icon {
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity .2s;
  display: flex;
}
.fb-card:hover .fb-zoom-icon { opacity: 1; }
.fb-zoom-icon svg { width: 1.25rem; height: 1.25rem; color: #374151; }

.fb-caption {
  text-align: center;
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  color: #4b5563;
  font-size: 1rem;
  margin-top: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#lightbox.open { display: flex; }
#lightbox-inner {
  position: relative;
  max-width: 56rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
}
#lightbox-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: background .15s;
}
#lightbox-close:hover { background: #f3f4f6; }
#lightbox-close svg { width: 1.25rem; height: 1.25rem; color: #374151; }

/* ============================================================
   MORE TESTIMONIALS
   ============================================================ */
#section-more {
  padding: 6rem 0;
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}
#section-more::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.more-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .more-title { font-size: 2.25rem; } }
.more-divider {
  width: 6rem;
  height: 4px;
  background: var(--orange);
  border-radius: 9999px;
  margin: 0 auto 4rem;
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .more-grid { grid-template-columns: repeat(2, 1fr); } }

.more-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(var(--orange-rgb, 245,166,35),.25);
  transition: border-color .2s;
}
.more-card:hover { border-color: rgba(245,166,35,.6); }
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.star {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  fill: var(--orange);
}
.more-text {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.more-name {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #fff;
}
.more-email {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  margin-top: 0.25rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
}
.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.cta-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.4;
}
@media (min-width: 768px) { .cta-title { font-size: 2rem; } }

.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(245,166,35,.4);
  transition: transform .25s, box-shadow .25s;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(245,166,35,.55);
}
@media (min-width: 768px) { .cta-btn { font-size: 1.25rem; } }
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 1.5rem;
  text-align: center;
  background: var(--dark-blue);
}
footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
}
