* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e3a8a;
  --secondary-color: #dc2626;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Intro Overlay */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.intro-overlay.active {
  opacity: 1;
  visibility: visible;
}

.intro-content {
  text-align: center;
  color: var(--white);
  max-width: 1200px;
  width: 90%;
  padding: 20px;
}

.countdown-label {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.countdown-label-small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.countdown-ended {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

.intro-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  padding-bottom: 50.6%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.enter-button {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.5s both;
}

.enter-button:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Navbar */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 50%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(30, 64, 175, 0.3) 100%);
  opacity: 0.15;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Section Styles */
section {
  padding: 80px 0;
  scroll-margin-top: 90px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

/* Video Carousel Section */
.video-carousel-section {
  background: var(--bg-light);
  padding: 80px 0;
  position: relative;
}

.video-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.video-grid-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background: var(--white);
  padding: 0;
  box-sizing: border-box;
}

.video-grid-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-grid-page {
  min-width: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-sizing: border-box;
  padding: 40px;
}

.video-grid-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.video-wrapper-large {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.video-wrapper-large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding: 0 10px;
  line-height: 1.4;
}

.carousel-btn-external {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: var(--white);
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  animation: arrowPulse 2s ease-in-out infinite;
}

.carousel-btn-external::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.carousel-btn-external:hover::before {
  width: 100%;
  height: 100%;
}

.carousel-btn-external:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
}

.carousel-btn-external:active {
  transform: scale(0.95);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

.carousel-btn-external svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.carousel-btn-external:hover svg {
  transform: translateX(3px);
}

.carousel-btn-external.prev:hover svg {
  transform: translateX(-3px);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
}

.indicator.active {
  background: var(--primary-color);
  width: 40px;
  border-radius: 7px;
  box-shadow: 0 3px 10px rgba(30, 58, 138, 0.4);
}

.indicator:hover {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Empty video slots and no-videos message */
.video-grid-item-empty {
  visibility: hidden;
}

.no-videos-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.no-videos-message p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.no-videos-message p:first-child {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.4rem;
}

/* Vertical video support for YouTube Shorts and TikTok */
.video-wrapper-large.vertical-video {
  padding-bottom: 177.78%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Mission and Vision */
.mission-vision {
  background: var(--bg-light);
  position: relative;
  z-index: 2;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Objetivos */
.objectives {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.objectives h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.objectives-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.objectives-list li {
  padding: 15px 0 15px 40px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.objectives-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
}

/* Pastores Section */
.pastores {
  background: var(--white);
}

.pastores-grid-organizers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Center layout when there's only one organizer card */
.pastores-grid-organizers.single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.pastores-invitados-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid var(--bg-light);
}

.pastores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pastor-card {
  background: var(--bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pastor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pastor-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Single featured card layout: image full width above text */
.pastor-card.featured.single {
  grid-template-columns: 1fr;
  max-width: 750px;
}

/* Ensure the image in single featured card doesn't cap at 300px */
.pastor-card.featured.single .pastor-image {
  height: auto;
  overflow: visible;
  display: flex;
  justify-content: center;
}
.pastor-card.featured.single .pastor-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

/* Show full photo without cropping for specific card */
.pastor-image.full-photo {
  height: auto;
  overflow: visible;
}
.pastor-image.full-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pastor-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.pastor-card.featured .pastor-image {
  height: 300px;
}

.pastor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pastor-info {
  padding: 30px;
}

.pastor-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pastor-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.pastor-description {
  color: var(--text-light);
  line-height: 1.8;
}

/* Event Section */
.evento {
  background: var(--bg-light);
}

.evento-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
}

.evento-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.evento-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.evento-details {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.evento-details h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.evento-details ul {
  list-style: none;
}

.evento-details li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-light);
}

.evento-details li:last-child {
  border-bottom: none;
}

.evento-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.evento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evento-highlights {
  margin-top: 50px;
}

.evento-highlights h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.highlight-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--text-light);
}

/* Contact Section */
.contacto {
  background: var(--white);
}

.contacto-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contacto-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.contacto-info {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 15px;
}

.contacto-info h3 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.info-item {
  margin-bottom: 25px;
}

.info-item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
}

.social-links {
  margin-top: 40px;
}

.social-links h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.footer-verse {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.youtube-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

.youtube-link:hover {
  color: #d97706;
}

.video-note {
  margin-top: 15px;
  font-size: 0.95rem;
}

/* Animations */
@keyframes arrowPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(30, 58, 138, 0.5);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 20px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 40px rgba(245, 158, 11, 0.5);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .nav-logo {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
  }

  .intro-title {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.85rem;
  }

  .countdown-timer {
    gap: 8px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 8px 12px;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-label-small {
    font-size: 0.6rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .video-carousel-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-btn-external {
    width: 60px;
    height: 60px;
  }

  .video-grid-container {
    padding: 0;
  }

  .video-grid-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px;
  }

  .video-title {
    font-size: 1rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pastores-grid-organizers {
    grid-template-columns: 1fr;
  }

  .pastor-card.featured {
    grid-template-columns: 1fr;
  }

  .evento-content {
    grid-template-columns: 1fr;
  }

  .contacto-content {
    grid-template-columns: 1fr;
  }

  .evento-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  .countdown-timer {
    gap: 6px;
  }

  .countdown-item {
    min-width: 50px;
    padding: 6px 10px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-label-small {
    font-size: 0.5rem;
  }

  .carousel-btn-external {
    width: 50px;
    height: 50px;
  }

  .video-grid-container {
    padding: 0;
  }

  .video-grid-page {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .video-title {
    font-size: 0.95rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 28px;
  }

  .mv-grid,
  .pastores-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
