<style>
    html, body {
      margin: 0;
      padding: 0;
      font-family: sans-serif;
    }

    .swiper {
      width: 100%;
      max-width: 1840px;
      height: 700px;
      margin: auto;
    }

/* Estilo base para las flechas */
    .swiper-button-next,
    .swiper-button-prev {
      color: #fff; 
/* Blanco */
}

    .swiper-pagination-bullet-active {
      background-color: #fff;
      opacity: 1;
}

/* Estilo base para los bullets */
    .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
      background-color: #fff;
      opacity: 0.5;
      margin: 0 6px;
      box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
      transition: all 0.3s ease;
      border-radius: 50%;
}

/* Estilo para el bullet activo */
    .swiper-pagination-bullet-active {
      width: 14px;
      height: 14px;
      opacity: 1;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

    .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide-content {
      background-color: rgba(0, 0, 0, 0.5);
      padding: 20px 30px;
      border-radius: 10px;
      color: white;
      text-align: center;
      max-width: 80%;
    }

    .slide-content h2 {
      margin: 0 0 10px;
    }

    .slide-content p {
      margin-bottom: 15px;
    }

    .slide-content a {
      background: #ff5722;
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    .slide-content a:hover {
      background: #e64a19;
    }

    .slide-content h2 {
      font-family: 'Dancing Script', cursive;
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: rgb(255, 255, 255);
      text-shadow: 0 2px 5px rgba(0,0,0,0.4);
    }

    .circle-icon {
      width: 60px;
      height: 60px;
      background-color: rgb(248,152,0);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

    .circle-icon:hover {
      background-color: #555;
}

<!--- *** Text pre *** --->
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  margin: 1em 0;
}

<!--- *** Pestañas Horizontales *** --->

.tablist {
  display: flex;
  gap: 1rem;
  font-family: 'Dancing Script', cursive;
}

.tab {
  background: none;
  border: 2px solid #ccc;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.tab:hover {
  background-color: #f5f5f5;
  color: #4a90e2;
  border-color: #4a90e2;
}

.tab[aria-selected="true"] {
  background-color: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

.tabpanel {
  margin-top: 1rem;
  font-size: 1.1rem;
}

</style>