
    /* Estilos generales */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .swiper {
      width: 100%;
      height: 100vh;
      max-height:800px;
    }

    .mySwiper{
        padding-top:90px;
    }

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

    .slide-content {
      display: flex;
      flex-direction: row;
      width:100%;
    }


    .left-box,
    .right-box {
      flex: 1;
      padding: 1rem;
    }

    .left-box {
      background-color:#ffffffd8;
      display: flex;
      justify-content: center;
      width:100%;
      border-top-right-radius:40px;
      border-bottom-right-radius:40px;
    }

    .notInfo{
        width:40%;
        height:100%;
    }

    .infoInsideLeft{
        width:60%;
        height:100%;
        display:flex;
        flex-wrap:wrap;
        align-content: center;
        justify-content: left;
        color:var(--black);
    }

    .infoInsideLeft h2{
        color:green;
        font-size:50px;
        font-weight:bolder;
        line-height:1;
    }


    .infoInsideLeft p{
        color:var(--silver);
        font-size:28px;
        line-height:32px;
    }


    .left-box h2 {
      margin-bottom: 1rem;
    }

    .left-box p {
      margin-bottom: 1.5rem;
    }



    .right-box {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .right-box img {
      max-width: 100%;
      height: auto;
      margin-left: 120px;
    }


    /* Ocultamos los íconos por defecto de Swiper */
    .swiper-button-next::after,
    .swiper-button-prev::after {
      display: none;
    }

    /* Personalizamos las flechas */
    .swiper-button-next,
    .swiper-button-prev {
      background-color: var(--principal);
      color: var(--white);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background-color 0.3s ease;
      z-index: 10;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background-color: var(--principalHover);
    }

    /* Posiciones de las flechas */
    .swiper-button-next {
      right: 10px;
    }
    .swiper-button-prev {
      left: 10px;
    }



    /* Dots */
    .swiper-pagination-bullet {
      background-color: #ffffffb9;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background-color: red;
    }




    /* Estilos responsivos */
    @media (max-width:2800px) {
        .notInfo{
            width:35%;
        }

        .infoInsideLeft{
            width:35%;
        }
    }

      @media (max-width:2600px) {
        .notInfo{
            width:30%;
        }

        .infoInsideLeft{
            width:35%;
        }
    }

    @media (max-width:2550px) {
        .notInfo{
            width:25%;
        }

        .infoInsideLeft{
            width:35%;
        }
    }


    @media (max-width:2400px) {
        .notInfo{
            width:20%;
        }

        .infoInsideLeft{
            width:35%;
        }
    }


    @media (max-width:2350px) {
        .notInfo{
            width:15%;
        }

        .infoInsideLeft{
            width:35%;
        }
    }




    @media (max-width:2250px) {
        .notInfo{
            width:15%;
        }

        .infoInsideLeft{
            width:40%;
        }
    }


    @media (max-width:2150px) {
        .notInfo{
            width:15%;
        }

        .infoInsideLeft{
            width:45%;
        }
    }





    @media (max-width:2050px) {
        .notInfo{
            width:30%;
        }

        .infoInsideLeft{
            width:65%;
        }
    }

    @media (max-width:1925px) {
        .notInfo{
            width:25%;
        }

        .infoInsideLeft{
            width:75%;
        }
    }

    @media (max-width:1830px) {
        .notInfo{
            width:20%;
        }

        .infoInsideLeft{
            width:80%;
        }
    }


    @media (max-width:1740px) {
        .notInfo{
            width:15%;
        }

        .infoInsideLeft{
            width:85%;
        }
    }

    @media (max-width:1600px) {
        .notInfo{
            width:10%;
        }

        .infoInsideLeft{
            width:90%;
        }
    }


    @media (max-width:1500px) {
        .notInfo{
            width:5%;
        }

        .infoInsideLeft{
            width:95%;
        }

        .right-box img {
            margin-left:0px;
        }
    }


    @media (max-width:1480px) {
        .notInfo{
            width:0%;
        }

        .infoInsideLeft{
            width:100%;
            padding-left:120px;
            padding-right:50px;
        }
    }


    @media (max-width: 900px) {
        .mySwiper{
            padding-top:76px;
        }

      .slide-content {
        flex-direction: column;
        text-align: center;
        gap:30px;
      }

      .left-box,
      .right-box {
        padding: 1rem 0;
      }

      .left-box{
        border-top-right-radius:20px;
        border-bottom-right-radius:20px;
        border-top-left-radius:20px;
        border-bottom-left-radius:20px;
        padding:20px;
      }

      .slide-right.active{
        justify-content: center !important;
        transform: translateX(0px) !important;
      }

      .right-box img{
        width:300px;
      }


        .slide-content {
        padding: 2rem;
        width: 90%;
        max-width: 1400px;
        }

        .infoInsideLeft{
            padding-left:0px;
            padding-right:0px;
            justify-content: center;
        }


    .infoInsideLeft h2{
        font-size:30px;
    }


    .infoInsideLeft p{
        font-size:14px;
        line-height:17px;
    }

    }



    /* Fade in */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease;
    }

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

    /* Slide in from left */
    .slide-left {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 0.8s ease;
    }

    .slide-left.active {
      opacity: 1;
      transform: translateX(0);
    }

    /* Slide in from right */
    .slide-right {
      opacity: 0;
      transform: translateX(100px);
      transition: all 0.8s ease;
    }

    .slide-right.active {
      opacity: 1;
      display: flex;
      justify-content: left;
      align-items: center;
    }
