body {
  font-family: 'Segoe UI', sans-serif;
}

h1, h2, h3 {
  font-weight: bold;
}

/* Tailwind no permite transicionar height directamente, lo hacemos con max-height */
    #mobile-menu {
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
      color: black;
    }

    /* Color normal de los puntos */
  .swiper-pagination-bullet {
    background-color: #F0E41A; /* amarillo Tailwind (yellow-400) */
    opacity: 1;
  }

  /* Punto activo */
  .swiper-pagination-bullet-active {
    background-color: #fffefd; /* amarillo más oscuro (yellow-500) */
  }

  .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      z-index: 1000;
      transition: transform 0.3s;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
    }
    
    footer {
      background-color: #7A787A;
      color: white;
      padding: 20px 0;
    }

  



    /* Video de introducción */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.intro-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ocultar elementos */
.hidden {
  display: none;
}

/* Contenido principal */
main {
  padding: none;
  text-align: center;
}

header {
  background-color: #003366;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.content {
  margin-top: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Ajuste para móviles */
    @media (max-width: 600px) {
      .intro-container {
        width: 50%;
        max-width: 400px;
        aspect-ratio: 16 / 9;
      }
    }

/* Contenedor responsivo */
    .intro-container {
      position: relative;
      width: 90%;
      max-width: 800px;
      aspect-ratio: 16 / 9;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    }

    .intro {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }