/* Design Tokens */
:root {
  --acento: #7a5530;
  --texto: #2c2c2c;
  --texto-suave: #666;
  --fondo: #fdf9f6;
  --superficie: #f8f5f2;
  --borde: #e8e8e8;
}

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--texto);
  background: var(--fondo);
  font-weight: 300;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation - Minimalist */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  border-bottom: 1px solid var(--borde);
  transition: all 0.2s ease;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo a {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-logo a:hover {
  opacity: 0.8;
}

.nav-logo a:focus {
  outline: none;
}

.nav-logo a:focus-visible {
  outline: none;
}

.nav-logo img {
  height: 64px;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--texto);
  font-weight: 400;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--acento);
}

.nav-link.active {
  color: var(--acento);
  font-weight: 500;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--acento);
}

/* Evitar estilo active en el botón primary */
.nav-link.btn-primary.active::after {
  display: none;
}

.nav-link.btn-primary {
  background: var(--texto);
  color: white;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.nav-link.btn-primary:hover {
  background: var(--acento);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
}

.bar {
  width: 20px;
  height: 2px;
  background: var(--texto);
  transition: 0.2s;
}

/* Hero Section - Minimalist with Video Background */
.hero {
  min-height: calc(100vh - 64px);
  margin-top: 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 2;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 48px;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 200;
  color: white;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Buttons - Minimalist */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  font-size: 15px;
}

.btn-primary {
  background: var(--texto);
  color: white;
  border-color: var(--texto);
}

.btn-primary:hover {
  background: var(--acento);
  border-color: var(--acento);
}

.btn-full {
  width: 100%;
}

/* Section Styles - Minimalist */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 200;
  text-align: center;
  margin-bottom: 16px;
  color: var(--texto);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--texto-suave);
  margin-bottom: 64px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* Services Section - Minimalist */
.services {
  background: white;
  border-top: 1px solid var(--borde);
}

.schedule-list {
  margin-top: 56px;
  border-top: 1px solid var(--borde);
}

.schedule-item {
  display: grid;
  grid-template-columns: 64px 160px 1fr;
  grid-template-areas: "icon time name";
  align-items: center;
  column-gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--borde);
  transition: background-color 0.2s ease;
}

.schedule-item:hover {
  background: var(--superficie);
}

.schedule-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  background: var(--superficie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acento);
  font-size: 1.3rem;
  transition: all 0.2s ease;
}

.schedule-item:hover .schedule-icon {
  background: var(--acento);
  color: white;
}

.schedule-time {
  grid-area: time;
  display: flex;
  flex-direction: column;
}

.schedule-day {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-hour {
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--texto);
  line-height: 1.2;
}

.schedule-name {
  grid-area: name;
}

.schedule-name h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--texto);
}

.schedule-name p {
  color: var(--texto-suave);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 300;
}

@media (max-width: 600px) {
  .schedule-item {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon time"
      "name name";
    row-gap: 16px;
    padding: 24px 0;
  }

  .schedule-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .schedule-hour {
    font-size: 1.5rem;
  }
}

/* About Section - Minimalist */
.about {
  background: var(--fondo);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1rem;
  color: var(--texto-suave);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  color: var(--texto);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--texto-suave);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  transition: filter 0.3s ease;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #f8f9fa;
  height: 320px;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 0.8;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #2c3e50;
  transform: scale(1.2);
}

.indicator:hover {
  background: #34495e;
}

/* Responsive carousel */
@media (max-width: 768px) {
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-slide img {
    height: 250px;
  }
}

/* Ministries Section - Minimalist */
.ministries {
  background: var(--fondo);
  border-top: 1px solid var(--borde);
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 64px;
}

.ministry-card {
  background: transparent;
  padding: 24px;
  text-align: left;
  border-left: 2px solid #f0f0f0;
  transition: all 0.2s ease;
}

.ministry-card:hover {
  border-left-color: var(--acento);
}

.ministry-icon {
  width: 40px;
  height: 40px;
  background: var(--superficie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--acento);
  font-size: 1rem;
}

.ministry-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--texto);
}

.ministry-card p {
  color: var(--texto-suave);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Live Stream Section - Minimalist */
.live-stream {
  background: var(--texto);
  color: white;
}

.live-stream .section-title {
  color: white;
  text-align: left;
}

.live-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.live-status {
  margin-bottom: 24px;
}

.live-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

.live-text-status {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-schedule {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.live-title {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: white;
}

.live-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.live-verse {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
  border-radius: 0;
}

.live-verse p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
  font-weight: 300;
}

.live-verse span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

.live-buttons .btn-primary {
  background: white;
  color: var(--texto);
  border-color: white;
}

.live-buttons .btn-primary:hover {
  background: var(--acento);
  color: white;
  border-color: var(--acento);
}

.live-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.live-buttons .btn-secondary:hover {
  background: white;
  color: var(--texto);
}

.youtube-embed {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail {
  cursor: pointer;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  border-radius: 10px;
  display: none; /* Inicialmente oculto */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-thumbnail.has-video {
  display: flex; /* Solo mostrar cuando tenga video */
}

.video-thumbnail:focus-visible {
  outline: 3px solid var(--acento, #7a5530);
  outline-offset: 3px;
}

.play-button {
  background: rgba(255, 0, 0, 0.8);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.3s ease;
}

.play-button i {
  margin-left: 5px;
}

/* Live pulse animation */
@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
  }
}

/* Connect Section - Minimalist */
.connect {
  background: white;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.connect-card {
  background: white;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--borde);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.connect-card:hover {
  border-color: var(--acento);
}

.connect-icon {
  width: 40px;
  height: 40px;
  background: var(--superficie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--acento);
  font-size: 1rem;
}

.connect-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--texto);
}

.connect-card p {
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 300;
}

.connect-link {
  color: var(--acento);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.connect-link:hover {
  color: var(--texto);
}


/* Contact Section - Minimalist */
.contact {
  background: var(--fondo);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--texto-suave);
  margin-bottom: 48px;
  font-weight: 300;
}

.contact-details {
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--superficie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acento);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-text h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--texto);
}

.contact-text p {
  color: var(--texto-suave);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Contact Form - Minimalist */
.contact-form {
  background: white;
  padding: 40px;
  border: 1px solid var(--borde);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--borde);
  border-radius: 2px;
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
  font-weight: 300;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--acento);
}

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

/* Footer - Minimalist */
.footer {
  background: white;
  color: var(--texto);
  padding: 64px 0 32px;
  border-top: 1px solid var(--borde);
}

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

.footer-section h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--texto);
}

.footer-section p {
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
  font-weight: 300;
}

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

.footer-logo img {
  height: 64px;
}

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

.footer-social a {
  width: 32px;
  height: 32px;
  background: var(--superficie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acento);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}

.footer-social a:hover {
  background: var(--acento);
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--borde);
  padding-top: 24px;
  text-align: center;
}

.footer-info p {
  color: #999;
  margin-bottom: 4px;
  font-size: 0.9rem;
  font-weight: 300;
}

/* Animations - Minimal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design - Minimalist */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 64px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.2s;
    border-top: 1px solid var(--borde);
    padding: 24px 0;
    gap: 24px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-video video {
    object-position: center center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .about-content,
  .live-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .youtube-embed {
    height: 250px;
  }

  .live-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .ministries-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats {
    justify-content: center;
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .contact-form {
    padding: 24px;
  }

  .nav-container {
    padding: 0 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.nav-link:focus-visible:not(.btn-primary):not(.active),
.connect-link:focus-visible {
  border-bottom: 2px solid var(--acento);
  transition: border-bottom-color 0.2s ease;
}

/* Primera Visita Section */
.primera-visita {
  background: var(--fondo);
  border-top: 1px solid var(--borde);
}

.visita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.visita-card {
  background: white;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--borde);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease;
}

.visita-card:hover {
  border-color: var(--acento);
}

.visita-icon {
  width: 48px;
  height: 48px;
  background: var(--superficie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--acento);
  font-size: 1.2rem;
}

.visita-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--texto);
}

.visita-card p {
  color: var(--texto-suave);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 300;
}

.visita-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.visita-cta > p {
  color: var(--texto-suave);
  font-weight: 300;
}

/* Liderazgo Section */
.liderazgo {
  background: white;
  border-top: 1px solid var(--borde);
}

.liderazgo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 64px;
}

.lider-card {
  text-align: center;
  padding: 32px 24px;
  border-bottom: 1px solid #f0f0f0;
  transition: border-bottom-color 0.2s ease;
}

.lider-card:hover {
  border-bottom-color: var(--acento);
}

.lider-foto {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--superficie);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ccc;
  font-size: 2.2rem;
  overflow: hidden;
}

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

.lider-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--texto);
  margin-bottom: 6px;
}

.lider-rol {
  font-size: 0.8rem;
  color: var(--acento);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 16px;
}

.lider-bio {
  color: var(--texto-suave);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Maps link */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--acento);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.maps-link:hover {
  color: var(--texto);
}

.maps-link i {
  font-size: 0.75rem;
}

/* WhatsApp & contact links */
.contact-text a {
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: var(--acento);
}

/* Scroll animations - Minimal */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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