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

:root {
  --primary: #0a0a0f;
  --secondary: #1a1a2e;
  --accent: #ff3366;
  --gold: #ffd700;
  --purple: #9d4edd;
  --cyan: #00d9ff;
  --light: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--primary);
  color: var(--light);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(157, 78, 221, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.font-display {
  font-family: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
}

.font-special {
  font-family: 'Righteous', 'Arial Black', Impact, sans-serif;
}

/* Animated Background Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(100px, -100px) scale(1.5);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50px, -200px) scale(1);
    opacity: 0.3;
  }
  75% {
    transform: translate(-100px, -100px) scale(1.2);
    opacity: 0.5;
  }
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.6s ease;
}

.floating-btn:hover::before {
  left: 100%;
}

.floating-btn:hover {
  transform: translateX(-8px) scale(1.05);
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
  color: var(--gold);
}

.floating-btn:active {
  transform: translateX(-8px) scale(0.98);
}

.share-btn {
  background: rgba(255, 51, 102, 0.12);
  border-color: rgba(255, 51, 102, 0.3);
}

.share-btn:hover {
  background: rgba(255, 51, 102, 0.2);
  border-color: rgba(255, 51, 102, 0.5);
  color: var(--accent);
  box-shadow: 0 12px 40px rgba(255, 51, 102, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(30px, 5vh, 80px) 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .hero {
    height: 100dvh;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vh, 24px);
}

.hero-logo {
  margin-bottom: 0;
  animation: float-logo 3s ease-in-out infinite;
}

.logo-image {
  width: auto;
  max-width: clamp(140px, 18vw, 240px);
  height: clamp(100px, 14vh, 200px);
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 15px 40px rgba(255, 215, 0, 0.6));
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold);
  padding: clamp(10px, 1.5vh, 14px) clamp(24px, 4vw, 36px);
  border-radius: 50px;
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0;
  animation: glow-pulse 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.3vw, 3px);
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
  }
}

.hero h1 {
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 400;
  background: linear-gradient(135deg, #ffd700 0%, #fff 30%, #ffd700 60%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  line-height: 0.9;
  text-shadow: 0 0 100px rgba(255, 215, 0, 0.5);
  letter-spacing: clamp(4px, 1.5vw, 18px);
  animation: shine 3s ease-in-out infinite;
  background-size: 200% auto;
  font-family: 'Righteous', cursive;
}

@keyframes shine {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero h2 {
  font-size: clamp(32px, 6vw, 76px);
  font-weight: 400;
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: clamp(3px, 1vw, 10px);
}

.hero h3 {
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  padding: 0 15px;
}

.hero p {
  font-size: clamp(17px, 3.2vw, 26px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
  padding: 0 15px;
}

.hero p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  line-height: 1.8;
  font-weight: 400;
}

.divider {
  width: clamp(100px, 16vw, 160px);
  height: clamp(3px, 0.5vh, 4px);
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent), var(--gold), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: divider-glow 2s ease-in-out infinite;
}

@keyframes divider-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

/* Section Styles */
.section {
  padding: 100px 20px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.section-title .subtitle {
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: inline-block;
}

.section-title h2 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Event Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
  cursor: pointer;
  margin-top: 20px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 51, 102, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 25px;
  z-index: 0;
}

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

.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
  border-color: var(--gold);
}

/* Featured Card (Sábado) */
.card-featured {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.02);
  margin-top: 30px;
}

.card-featured::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 51, 102, 0.1));
  opacity: 0.5;
}

.card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.5);
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  z-index: 10;
  animation: badge-pulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.card-date {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  position: relative;
}

.card-date::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-date::after {
  opacity: 1;
}

.card-day h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-day p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.info-icon {
  font-size: 24px;
  min-width: 28px;
}

.info-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gold);
}

.info-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 400;
}

/* Ministry Cards */
.ministry-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.ministry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(157, 78, 221, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.ministry-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(255, 51, 102, 0.3);
}

.ministry-location {
  font-size: 15px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.preacher-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(157, 78, 221, 0.05));
  border-color: rgba(255, 215, 0, 0.2);
}

.preacher-card::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(157, 78, 221, 0.1));
}

.preacher-card:hover {
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

/* Desktop Grid - Hide on Mobile */
.ministry-grid-desktop {
  display: grid;
}

/* Mobile List - Hide on Desktop */
.ministry-list-mobile {
  display: none;
}

/* Mobile Ministry List Styles */
.ministry-item-mobile {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.ministry-item-mobile:hover {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.ministry-img-mobile {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  flex-shrink: 0;
}

.ministry-info-mobile {
  flex: 1;
  text-align: left;
}

.ministry-info-mobile h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
}

.ministry-location-mobile {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.ministry-date-mobile {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.ministry-image-container {
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.ministry-image-container::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--accent), var(--purple));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ministry-card:hover .ministry-image-container::before {
  opacity: 0.3;
}

.ministry-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s ease;
}

.ministry-card:hover .ministry-image {
  transform: scale(1.05);
}

.ministry-icon {
  font-size: 70px;
  margin-bottom: 25px;
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.ministry-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ministry-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 10px;
}

.ministry-card p strong {
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Location Cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.location-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 45px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 217, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.location-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--cyan);
  box-shadow: 0 25px 50px rgba(0, 217, 255, 0.3);
}

.location-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 217, 255, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.location-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 400;
}

.location-card p strong {
  color: white;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.map-container {
  margin-top: 25px;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}

.location-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.location-card a:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.map-link {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.map-link:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.map-link:active {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .floating-nav {
    right: 15px;
    gap: 12px;
  }

  .floating-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .hero {
    padding: clamp(20px, 4vh, 50px) 15px;
  }

  .hero-content {
    gap: clamp(10px, 1.8vh, 18px);
  }

  .logo-image {
    max-width: clamp(120px, 20vw, 180px);
    height: clamp(85px, 12vh, 140px);
  }

  .hero-badge {
    font-size: clamp(11px, 2vw, 14px);
  }

  .hero h1 {
    font-size: clamp(90px, 18vw, 200px);
    letter-spacing: clamp(3px, 1.2vw, 12px);
  }

  .hero h2 {
    font-size: clamp(24px, 5vw, 56px);
    letter-spacing: clamp(2px, 0.8vw, 8px);
  }

  .hero h3 {
    font-size: clamp(16px, 3vw, 28px);
  }

  .hero p {
    font-size: clamp(14px, 2.8vw, 22px);
  }

  .section {
    padding: 70px 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  /* Hide Desktop Ministry Grid, Show Mobile List */
  .ministry-grid-desktop {
    display: none;
  }

  .ministry-list-mobile {
    display: block;
  }

  .ministry-image-container {
    max-width: 240px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .floating-btn span {
    display: none;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    font-size: 20px;
  }

  .hero {
    padding: clamp(15px, 3vh, 40px) 15px;
  }

  .hero-content {
    gap: clamp(8px, 1.5vh, 15px);
  }

  .logo-image {
    max-width: clamp(100px, 18vw, 150px);
    height: clamp(70px, 10vh, 110px);
  }

  .hero-badge {
    font-size: clamp(10px, 1.8vw, 13px);
    padding: clamp(8px, 1.2vh, 11px) clamp(18px, 3vw, 26px);
  }

  .hero h1 {
    font-size: clamp(75px, 16vw, 160px);
    letter-spacing: clamp(2px, 1vw, 10px);
  }

  .hero h2 {
    font-size: clamp(20px, 4.5vw, 44px);
    letter-spacing: clamp(2px, 0.6vw, 6px);
  }

  .hero h3 {
    font-size: clamp(14px, 2.8vw, 24px);
  }

  .hero p {
    font-size: clamp(13px, 2.5vw, 20px);
  }

  .divider {
    width: clamp(70px, 12vw, 120px);
  }

  .card {
    padding: 30px;
  }

  /* Mobile Ministry List - Smaller */
  .ministry-item-mobile {
    padding: 15px;
    gap: 12px;
    margin-bottom: 12px;
  }

  .ministry-img-mobile {
    width: 70px;
    height: 70px;
  }

  .ministry-info-mobile h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .ministry-location-mobile {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .ministry-date-mobile {
    font-size: 11px;
  }

  .location-card {
    padding: 35px;
  }
}

/* Laptop específico - pantallas entre 1024px y 1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
  .hero {
    padding: clamp(40px, 6vh, 70px) 40px;
  }

  .hero-content {
    gap: clamp(14px, 2.2vh, 26px);
  }

  .logo-image {
    max-width: clamp(140px, 17vw, 200px);
    height: clamp(100px, 13vh, 160px);
  }

  .hero h1 {
    font-size: clamp(140px, 20vw, 260px);
  }

  .hero h2 {
    font-size: clamp(36px, 5.5vw, 68px);
  }

  .hero h3 {
    font-size: clamp(22px, 3.2vw, 32px);
  }

  .hero p {
    font-size: clamp(18px, 3vw, 24px);
  }

  .ministry-image-container {
    max-width: 260px;
    height: 260px;
  }
}

/* Pantallas con altura corta */
@media (max-height: 700px) {
  .hero {
    padding: clamp(20px, 4vh, 50px) 20px;
  }

  .hero-content {
    gap: clamp(8px, 1.5vh, 16px);
  }

  .logo-image {
    max-width: clamp(110px, 15vw, 160px);
    height: clamp(75px, 10vh, 120px);
  }

  .hero-badge {
    font-size: clamp(11px, 1.8vw, 14px);
    padding: clamp(8px, 1.2vh, 11px) clamp(18px, 3vw, 24px);
  }

  .hero h1 {
    font-size: clamp(85px, 18vw, 180px);
    letter-spacing: clamp(3px, 1.2vw, 12px);
  }

  .hero h2 {
    font-size: clamp(26px, 5vw, 54px);
    letter-spacing: clamp(2px, 0.8vw, 8px);
  }

  .hero h3 {
    font-size: clamp(16px, 2.8vw, 26px);
  }

  .hero p {
    font-size: clamp(14px, 2.6vw, 21px);
    line-height: 1.5;
  }

  .divider {
    height: 3px;
    width: clamp(80px, 13vw, 130px);
  }

  .ministry-image-container {
    max-width: 180px;
    height: 180px;
  }
}

@media (max-height: 600px) {
  .hero {
    padding: clamp(15px, 3vh, 40px) 15px;
  }

  .hero-content {
    gap: clamp(6px, 1.2vh, 14px);
  }

  .logo-image {
    max-width: clamp(95px, 13vw, 140px);
    height: clamp(65px, 9vh, 100px);
  }

  .hero-badge {
    font-size: clamp(10px, 1.6vw, 13px);
    padding: clamp(7px, 1vh, 10px) clamp(16px, 2.5vw, 22px);
  }

  .hero h1 {
    font-size: clamp(70px, 16vw, 150px);
    letter-spacing: clamp(2px, 1vw, 10px);
  }

  .hero h2 {
    font-size: clamp(22px, 4.5vw, 46px);
    letter-spacing: clamp(2px, 0.6vw, 6px);
  }

  .hero h3 {
    font-size: clamp(15px, 2.5vw, 22px);
  }

  .hero p {
    font-size: clamp(13px, 2.3vw, 19px);
    line-height: 1.4;
  }

  .divider {
    height: 2px;
    width: clamp(70px, 11vw, 110px);
  }
}

@media (max-height: 500px) {
  .hero {
    padding: clamp(12px, 2.5vh, 30px) 10px;
  }

  .hero-content {
    gap: clamp(5px, 1vh, 12px);
  }

  .logo-image {
    max-width: clamp(80px, 12vw, 120px);
    height: clamp(55px, 8vh, 85px);
  }

  .hero-badge {
    font-size: clamp(9px, 1.4vw, 12px);
    padding: clamp(6px, 0.9vh, 9px) clamp(14px, 2.2vw, 20px);
    gap: 6px;
  }

  .hero h1 {
    font-size: clamp(60px, 14vw, 130px);
    letter-spacing: clamp(2px, 0.9vw, 8px);
  }

  .hero h2 {
    font-size: clamp(18px, 4vw, 38px);
    letter-spacing: clamp(1px, 0.5vw, 5px);
  }

  .hero h3 {
    font-size: clamp(13px, 2.2vw, 20px);
  }

  .hero p {
    font-size: clamp(12px, 2vw, 17px);
    line-height: 1.3;
  }

  .divider {
    height: 2px;
    width: clamp(60px, 10vw, 95px);
  }
}

/* More Info Section */
.more-info-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  z-index: 1;
}

.more-info-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.more-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  color: var(--primary);
  text-decoration: none;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.more-info-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.more-info-btn:hover::before {
  left: 100%;
}

.more-info-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
  border-color: var(--accent);
}

.more-info-btn:active {
  transform: translateY(-3px) scale(1.02);
}

.btn-icon {
  font-size: clamp(20px, 3vw, 24px);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.btn-text {
  letter-spacing: 0.5px;
}

.btn-arrow {
  font-size: clamp(20px, 3vw, 24px);
  transition: transform 0.3s ease;
}

.more-info-btn:hover .btn-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .more-info-section {
    padding: 60px 20px;
  }

  .more-info-btn {
    padding: 18px 35px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .more-info-section {
    padding: 50px 15px;
  }

  .more-info-btn {
    padding: 16px 30px;
    gap: 10px;
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .btn-icon,
  .btn-arrow {
    font-size: clamp(18px, 4vw, 22px);
  }
}

/* Audio Player */
.audio-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-player.minimized .player-content {
  display: none;
}

.audio-player.minimized {
  width: 60px;
  height: 60px;
}

/* Toggle Button */
.player-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  border: none;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.player-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

.player-toggle:active {
  transform: scale(0.95);
}

.audio-player:not(.minimized) .player-toggle {
  display: none;
}

/* Player Content */
.player-content {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

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

/* Player Header */
.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.player-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  font-size: 20px;
  animation: pulse-icon 2s ease-in-out infinite;
}

.title-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.player-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-close:hover {
  background: rgba(255, 51, 102, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

/* Progress Bar */
.player-progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.time-current,
.time-duration {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  min-width: 40px;
  text-align: center;
}

.player-progress {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.progress-filled {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffed4e);
  border-radius: 10px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}

.progress-handle {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
  transition: all 0.2s ease;
}

.progress-handle:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.7);
}

.progress-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.3);
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.control-btn:active {
  transform: scale(0.95);
}

/* Play Button */
.play-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  border: none;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.play-btn:hover {
  background: linear-gradient(135deg, #ffed4e, var(--gold));
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  color: var(--primary);
}

/* Volume Control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.volume-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.volume-slider {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.volume-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.volume-filled {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #00f0ff);
  border-radius: 10px;
  width: 100%;
  transition: width 0.1s linear;
}

.volume-handle {
  width: 14px;
  height: 14px;
  background: var(--cyan);
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.5);
  transition: all 0.2s ease;
}

.volume-handle:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.7);
}

.volume-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.3);
}

/* Speed Button */
.speed-btn {
  width: 45px;
  height: 40px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .audio-player {
    bottom: 15px;
    right: 15px;
  }

  .player-content {
    width: 280px;
    padding: 18px;
  }

  .player-toggle {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .title-text {
    font-size: 14px;
  }

  .play-btn {
    width: 45px;
    height: 45px;
  }

  .volume-btn,
  .speed-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .audio-player {
    bottom: 10px;
    right: 10px;
  }

  .player-content {
    width: calc(100vw - 40px);
    max-width: 280px;
    padding: 16px;
  }

  .player-toggle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .title-text {
    font-size: 13px;
  }

  .player-controls {
    gap: 12px;
  }

  .play-btn {
    width: 42px;
    height: 42px;
  }

  .volume-btn,
  .speed-btn {
    width: 36px;
    height: 36px;
  }

  .speed-btn {
    font-size: 12px;
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 32px;
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 51, 102, 0.2));
  border-radius: 15px;
  flex-shrink: 0;
}

.contact-item div {
  flex: 1;
  min-width: 0;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
}

.contact-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.submit-btn {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Responsive Contact */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 70px 15px;
  }

  .contact-item {
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    font-size: 28px;
    min-width: 45px;
    height: 45px;
  }

  .contact-item h3 {
    font-size: 16px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .contact-form {
    padding: 25px;
  }

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

  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 16px 28px;
    font-size: 15px;
  }
}
