@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Great+Vibes&display=swap');

:root {
  --primary: #8B3A62;
  --primary-light: #A85580;
  --primary-dark: #6B2A4A;
  --secondary: #D4A574;
  --secondary-light: #E8C9A8;
  --accent: #9B7CB8;
  --accent-light: #C4B0D6;
  --gold: #C9A84C;
  --rose: #E8B4B8;
  --rose-light: #FDE8EA;
  --bg-light: #FFF5F7;
  --bg-cream: #FFF8F2;
  --white: #FFFFFF;
  --text-dark: #2D2024;
  --text-medium: #6B5B63;
  --text-light: #9B8B93;
  --border-light: #F0E0E5;
  --shadow: 0 4px 20px rgba(139,58,98,0.08);
  --shadow-hover: 0 8px 30px rgba(139,58,98,0.15);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
.script-font { font-family: 'Great Vibes', cursive; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.logo-text h1 {
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-text span {
  font-family: 'Great Vibes', cursive;
  font-size: 0.85rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-medium);
  border-radius: 6px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--rose-light);
}

.nav-links .btn-nav {
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.nav-links .btn-nav:hover { background: var(--primary-dark); color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 50%, var(--rose-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(155,124,184,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  color: var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-badge i { color: var(--gold); }

.hero h1 {
  font-size: 3.2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero h1 .highlight {
  font-family: 'Great Vibes', cursive;
  color: var(--accent);
  font-size: 3.8rem;
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(139,58,98,0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,58,98,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover { background: var(--primary); color: white; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 6px;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.3;
}

.hero-float {
  position: absolute;
  background: white;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.hero-float.top-right { top: 20px; right: -20px; animation-delay: 0s; }
.hero-float.bottom-left { bottom: 40px; left: -20px; animation-delay: 1.5s; }

.hero-float i { font-size: 1.4rem; color: var(--primary); }
.hero-float .count { font-weight: 700; color: var(--primary); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── SCHEDULE BAR ─── */
.schedule-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 20px 0;
  text-align: center;
}

.schedule-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.schedule-item i { font-size: 1.5rem; color: var(--secondary); }
.schedule-item strong { font-size: 1rem; }
.schedule-item span { font-size: 0.9rem; opacity: 0.85; }

/* ─── SECTIONS ─── */
.section { padding: 90px 0; }
.section-light { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .overline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.3rem;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ─── ABOUT PREVIEW ─── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-placeholder {
  height: 450px;
  background: linear-gradient(135deg, var(--rose-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.4;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.about-content h3 .script-font {
  color: var(--accent);
  font-size: 2rem;
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--bg-light);
  border-radius: 14px;
}

.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ─── MINISTRY CARDS ─── */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ministry-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.ministry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.ministry-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

.ministry-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.ministry-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* ─── VIDEOS ─── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--border-light);
  overflow: hidden;
}

.video-thumb iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card .video-info {
  padding: 18px;
}

.video-card h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.video-card .video-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── TESTIMONIALS ─── */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--rose);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author .info strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
}

.testimonial-author .info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%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/g%3E%3C/svg%3E");
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--bg-light);
  padding: 60px 0;
}

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

.newsletter-box h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.newsletter-box p {
  color: var(--text-medium);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-light);
  border-radius: 30px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
  outline: none;
}

.newsletter-form input:focus { border-color: var(--primary); }

.newsletter-form button {
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--primary-dark); }

/* ─── FOOTER ─── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-brand .logo-text h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.footer-brand .logo-text span {
  font-family: 'Great Vibes', cursive;
  color: var(--secondary);
  font-size: 1rem;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.footer ul li { margin-bottom: 10px; }

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

.footer ul li a:hover { color: var(--secondary); }

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ─── PAGE HEADERS ─── */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-light), var(--rose-light), var(--bg-cream));
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.page-header .breadcrumb {
  font-size: 0.9rem;
  color: var(--text-light);
}

.page-header .breadcrumb a { color: var(--primary); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ─── ABOUT PAGE ─── */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-full .about-text h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-full .about-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  padding: 24px;
  background: var(--bg-light);
  border-radius: 14px;
  text-align: center;
}

.value-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-item h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.value-item p { font-size: 0.9rem; color: var(--text-medium); }

/* ─── PRAYER PAGE ─── */
.prayer-form-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
  outline: none;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,58,98,0.1);
}

.form-group textarea { resize: vertical; min-height: 150px; }

.prayer-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.prayer-type-card {
  padding: 20px;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.prayer-type-card:hover,
.prayer-type-card.selected {
  border-color: var(--primary);
  background: var(--rose-light);
}

.prayer-type-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.prayer-type-card h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

/* ─── GUERRERAS PAGE ─── */
.guerreras-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.guerreras-info h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.guerreras-info p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.guerreras-image-placeholder {
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 5rem;
  opacity: 0.7;
}

.benefits-list {
  margin: 24px 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-medium);
}

.benefits-list li i { color: var(--primary); font-size: 1.1rem; margin-top: 4px; flex-shrink: 0; }

/* ─── EVENTS ─── */
.events-list { max-width: 800px; margin: 0 auto; }

.event-card {
  display: flex;
  gap: 24px;
  background: white;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.event-card:hover { box-shadow: var(--shadow-hover); }

.event-date {
  min-width: 80px;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  color: white;
  flex-shrink: 0;
}

.event-date .day { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.event-date .month { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

.event-details h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.event-details p { color: var(--text-medium); font-size: 0.95rem; margin-bottom: 8px; }

.event-details .event-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  gap: 20px;
}

.event-details .event-meta i { color: var(--primary); margin-right: 5px; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 14px;
}

.contact-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.contact-card p { font-size: 0.9rem; color: var(--text-medium); }

/* ─── DONATIONS ─── */
.donation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.donation-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.donation-card:hover,
.donation-card.featured {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.donation-card.featured { position: relative; }

.donation-card.featured::before {
  content: 'Más Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.donation-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.donation-card .amount sup { font-size: 1.2rem; }
.donation-card .period { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }

.donation-card ul {
  margin-bottom: 24px;
  text-align: left;
}

.donation-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 10px;
}

.donation-card ul li i { color: var(--primary); font-size: 0.85rem; }

/* ─── BLOG / DEVOCIONAL ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--rose-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .category {
  display: inline-block;
  padding: 4px 14px;
  background: var(--rose-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 14px;
}

.blog-card .read-more {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more:hover { gap: 10px; }

/* ─── LIVE BANNER ─── */
.live-banner {
  background: linear-gradient(135deg, #E53E3E, #C53030);
  color: white;
  padding: 16px;
  text-align: center;
  position: relative;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── VERSE ─── */
.verse-section {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-cream);
}

.verse-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.verse-box .verse-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.verse-box .verse-ref {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 700;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--rose-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.4;
  transition: var(--transition);
}

.gallery-item:hover { opacity: 0.6; transform: scale(1.03); }

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-nav.active { transform: translateX(0); }

.mobile-nav a {
  font-size: 1.2rem;
  padding: 12px 30px;
  color: var(--text-dark);
  font-weight: 400;
}

.mobile-nav a:hover { color: var(--primary); }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrapper { width: 300px; height: 300px; }
  .about-preview { grid-template-columns: 1fr; }
  .about-full { grid-template-columns: 1fr; }
  .guerreras-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero h1 .highlight { font-size: 2.8rem; }
  .ministry-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .donation-options { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-bar .container { flex-direction: column; gap: 16px; }
  .prayer-types { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .event-card { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-item .number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero h1 .highlight { font-size: 2.2rem; }
  .hero-image-wrapper { width: 240px; height: 240px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a, .hero-buttons button { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
}
