/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
  }
  
  .container {
    width: 100%;
    padding: 10px;
  }
  
  .main-title {
    font-size: 2rem;
    color: #030728;
    margin-bottom: 10px;
    padding: 0 20px; /* Márgenes laterales */
  }
  
  .main-paragraph {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    padding: 0 20px; /* Márgenes laterales */
  }
  
  @media (max-width: 768px) {
    .main-title {
      font-size: 1.5rem;
    }
  
    .main-paragraph {
      font-size: 0.9rem;
    }
  }
  
  /* Swiper styles */
  .slider-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .swiper-slide-active {
    transform: scale(1.2); /* Agranda la imagen principal */
  }
  
  .card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 10px; /* Bordes redondeados */
  }
  
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* Bordes redondeados */
    margin-bottom: 5px;
  }
  
  .card-title {
    font-size: 1rem;
    color: #333;
    margin: 0;
  }
  
  /* Swiper Pagination */
  .swiper-pagination-bullet {
    background: #030728;
  }
  
  /* Mobile Specific */
  @media (max-width: 768px) {
    .swiper-slide {
      width: 90%; /* Asegura que solo una imagen se muestre */
      margin: 0 auto;
    }
  
    .card-image {
      margin: 0 10px; /* Márgenes a los lados de las imágenes */
    }
  
    .card-title {
      font-size: 1rem;
    }
  }
  