    html,
    body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow-x: hidden;

    }

    img,
    svg {
      max-width: 100%;
      height: auto;
    }

    body { 
      font-family: 'Helvetica Neue';
      color: #000;
      background-color: #fff;
      font-size: 20px;
    }

    .lead{
      font-size: 22px;
      font-weight: 400;
    }
    .soon{
      font-size: 21px;
      font-weight: 400;
    }
    a{
      color: #000;
      text-decoration: none;
    }

    @media (max-width: 1800px) {
      .container{
          max-width: 100%;
      }
    }
    @media (min-width: 1800px) {
      .container{
         max-width: 1700px;
      }
    }
    @media (min-width: 992px) {
      .container{
          --bs-gutter-x: 80px;
      }
    }

   .font-libreBaskerville {
      font-family: 'Libre Baskerville';
    }

    #headline{
      font-size: 40px;
      line-height: 1;
      span{
        font-size: 38px;
        font-weight: normal;
      }
      @media (min-width: 768px) {
        font-size: 60px;
        span{
          font-size: 61px;
        }
      }
      @media (min-width: 992px) {
        font-size: 70px;
        span{
          font-size: 75px;
        }
      } 
    }

    #preloader {
      position: fixed;
      inset: 0;
      z-index: 1050;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
    }

    .main-fullscreen {
      height: 100svh;
      width: 100%;
      position: relative; 
      overflow: hidden; 
    }

    .overlaped-top{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50; 
    }
    #carousel {
      width: 100%;
      height: 100%;
    }

    #carousel-pagination {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      opacity: 1;
      transform: translateX(0);
      transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
    }

    body.loading #carousel-pagination {
      opacity: 0;
      transform: translateX(20px);
    }

    @media (min-width: 992px) {
      #carousel-pagination {}
    }

    .swiper-pagination-bullet {
      margin: 0 !important;
      width: 22px;
      height: 22px;
      border: 0;
      border-radius: 0;
      background-color: transparent;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .swiper-pagination-bullet:after {
      content: "";
      position: absolute;
      width: 22px;
      height: 2px;
      background-color: #FAF9F6;
      top: 9px;
      left: 0;
      opacity: .4;
    }

    .swiper-pagination-bullet-active:after {
      opacity: 1;
    }

    #carousel-pagination.carousel-indicators-as-lines {
      flex-direction: row;
    }

    .swiper-slide {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 1s ease, filter 1s ease;
      transform: scale(1.2);
      /* efecto inicial (zoom in) */
      filter: blur(4px);
      /* efecto inicial (blur) */
    }

    /* Slide activo: normal */
    .swiper-slide-active img {
      transform: scale(1);
      /* vuelve al tamaño normal */
      filter: blur(0);
      /* foco limpio */
    }


    .overlaped-title {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 40px 0;
    }
 