/* ==========================================================================
   JOSLAIN MINISTRIES - Main Stylesheet
   Design System: Deep Blue, Prophetic Purple, Luminous Gold, Elegant Black
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens / Theme Variables --- */
:root {
  --color-primary: #0A1628;
  --color-primary-dark: #070F1B;
  --color-primary-light: #0D2137;
  
  --color-gold: #C9A84C;
  --color-gold-light: #F0C040;
  --color-gold-dark: #A58434;
  
  --color-purple: #4A1B6D;
  --color-purple-light: #7B2FBE;
  --color-purple-dark: #32104C;
  
  --color-sky: #1565C0;
  --color-sky-light: #1E88E5;
  
  --color-white: #FFFFFF;
  --color-black: #0A0A0A;
  --color-dark-gray: #1E1E1E;
  --color-light-gray: #F5F5F5;
  --color-border: rgba(201, 168, 76, 0.2);
  
  /* Gradientes */
  --grad-royal: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --grad-prophetic: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 50%, var(--color-primary-dark) 100%);
  --grad-divine: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple-dark) 40%, var(--color-gold-dark) 100%);
  --grad-gold: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  --grad-dark: linear-gradient(180deg, var(--color-black) 0%, var(--color-primary-dark) 100%);
  
  /* Tipografia */
  --font-titles: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Helvetica, sans-serif;
  --font-nav: 'Cinzel', serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(201, 168, 76, 0.1);
  --shadow-glow: 0 0 15px rgba(201, 168, 76, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titles);
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Global Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold { color: var(--color-gold); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }

.section-padding {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  min-height: 46px;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--color-black);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6), var(--shadow-glow);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--color-primary-light);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: var(--color-primary);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* --- Header & Navigation --- */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  background: var(--color-primary-dark);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-logo-text {
  font-family: var(--font-nav);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 2px;
}

.nav-logo-sub {
  font-family: var(--font-titles);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.nav-item a {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-item a:hover {
  color: var(--color-gold-light);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item.nav-btn-apoio a {
  background: var(--color-gold);
  color: var(--color-black) !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.2);
}

.nav-item.nav-btn-apoio a::after {
  display: none;
}

.nav-item.nav-btn-apoio a:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 168, 76, 0.4);
}

/* Hamburguer Menu Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

/* --- Hero Slider --- */
.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#particles-canvas {
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 3;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 50px;
}

.slide-badge {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 25px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.slide.active .slide-badge {
  transform: translateY(0);
  opacity: 1;
}

.slide-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-titles);
  font-weight: 700;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
}

.slide-title em {
  font-style: italic;
  font-family: var(--font-titles);
  font-weight: 400;
  color: var(--color-gold-light);
}

.slide.active .slide-title {
  transform: translateY(0);
  opacity: 1;
}

.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.6s;
}

.slide.active .slide-subtitle {
  transform: translateY(0);
  opacity: 1;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.8s;
}

.slide.active .slide-actions {
  transform: translateY(0);
  opacity: 1;
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}

/* --- Section: About (Apostle profile) --- */
.about-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  flex: 1.1;
  position: relative;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-purple-dark) 50%, var(--color-primary-dark) 100%);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  margin: 15px;
  opacity: 0.4;
  pointer-events: none;
}

.about-photo-placeholder i {
  font-size: 4rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.about-photo-placeholder h4 {
  font-family: var(--font-nav);
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about-photo-placeholder p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-text-wrap {
  flex: 1.2;
}

.about-title-tag {
  font-family: var(--font-nav);
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-apostle-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-bio {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.about-countries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.country-tag {
  padding: 6px 15px;
  background: var(--color-primary-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Ministries Cards Grid */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.ministry-card {
  background: linear-gradient(135deg, rgba(13, 33, 55, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ministry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
  opacity: 0;
  transition: var(--transition-smooth);
}

.ministry-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.5);
}

.ministry-card:hover::before {
  opacity: 1;
}

.min-card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.min-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--font-titles);
  color: var(--color-white);
}

.min-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Section: Pillars --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.pillar-card {
  background: rgba(13, 33, 55, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  background: rgba(13, 33, 55, 0.8);
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pillar-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
  color: var(--color-gold-light);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-wrap {
  background: var(--grad-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-glow);
}

.pillar-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-titles);
}

.pillar-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Section: Events (Grid & Filtering) --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.5);
}

.event-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-purple) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3rem;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.event-badge-online { background-color: var(--color-sky); color: white; }
.event-badge-presencial { background-color: var(--color-gold); color: black; }
.event-badge-hibrido { background-color: var(--color-purple); color: white; }

.event-content {
  padding: 25px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.event-actions {
  display: flex;
  gap: 10px;
}

.event-actions .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.75rem;
  min-height: auto;
}

/* --- Section: Messages (Video list) --- */
.messages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.message-card {
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.message-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow);
}

.message-thumb-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.message-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.message-card:hover .message-thumb {
  opacity: 1;
  transform: scale(1.05);
}

.message-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  z-index: 5;
}

.message-card:hover .message-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--color-gold-light);
}

.message-category {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.message-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.message-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Section: Prayer Request Form --- */
.prayer-section {
  background: var(--grad-prophetic);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.prayer-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.prayer-info-wrap {
  flex: 1;
}

.prayer-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.prayer-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.prayer-decor-icon {
  font-size: 4rem;
  color: var(--color-gold-light);
  opacity: 0.35;
  margin-bottom: 25px;
}

.prayer-form-wrap {
  flex: 1.2;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.25);
  background: rgba(10, 10, 10, 0.8);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- Section: Testimonials Carousel --- */
.testimonials-section {
  background: var(--color-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--color-primary-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--color-gold-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--color-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-author-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Section: Partner With Nations --- */
.partner-section {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../images/placeholders/nations_bg.jpg') center/cover no-repeat;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partner-section .section-title {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.region-card {
  background: rgba(13, 33, 55, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  transition: var(--transition-smooth);
}

.region-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow);
}

.region-flag {
  font-size: 3rem;
  margin-bottom: 15px;
}

.region-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-family: var(--font-titles);
  color: var(--color-gold-light);
}

.region-methods {
  list-style: none;
  margin-bottom: 30px;
}

.region-methods li {
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.region-methods li:last-child {
  border-bottom: none;
}

.partner-nations-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15rem;
}

/* --- Section: Newsletter --- */
.newsletter-section {
  background: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.newsletter-form .form-control {
  flex: 1;
}

/* --- Footer --- */
.footer-main {
  background: var(--color-black);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-nav);
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  color: var(--color-white);
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.tiktok { background-color: #010101; border: 1px solid rgba(255, 255, 255, 0.2); }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.youtube { background-color: #ff0000; }
.social-icon.whatsapp { background-color: #25D366; }

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links li a:hover {
  color: var(--color-gold-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: var(--color-gold);
  margin-top: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Alert Styling --- */
.alert {
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  font-size: 0.95rem;
}

.alert-success {
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid #25D366;
  color: #25D366;
}

.alert-danger {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0000;
  color: #ff3333;
}

.alert-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Animations & Effects --- */
.fade-in {
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Foto do Apóstolo (gerenciável pelo admin > Aparência) ===== */
.about-photo-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(201, 168, 76, 0.06);
    background: linear-gradient(135deg, #0A1628, #0D2137);
}
.about-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.35), transparent 55%);
    pointer-events: none;
}
.about-photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}
