 body {
      margin: 0;
      padding: 0 20px;
      font-family: "DM Sans", sans-serif;
    }

    section {
      margin-bottom: 40px;
    }

    /* Video full width */
    .video-full {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Textos centrados */
    .text-center {
      text-align: center;
    }

    .logo {
      width: 30%;
      max-width: 300px;
      height: auto;
      margin: 0 auto;
      display: block;
      padding: 25px;
    }

    .title-LVR {
      color: #79242f;
      font-size: 26px;
      font-weight: 500;
      margin: 10px 0;
    }

    .description {
      font-size: 16px;
      font-weight: 400;
      line-height: 40px;
      max-width: 1300px;
      padding-top: 25px;
      padding-bottom: 25px;
      margin: 0 auto 20px;
    }

    .collection-link {
      color: #79242f;
      font-size: 14px;
      font-weight: 500;
      text-decoration: underline;
      cursor: pointer;
    }

    .img-desktop {
      width: 100%;
      height: auto;
      display: block;
    }
    .img-desktop-2 {
      height: auto;
      width: 50%;
    }

    .img-mobile {
      width: 100%;
      height: auto;
      display: none;
    }

    /* Contenedor de imágenes lado a lado */
    .contenedor-imagenes {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 5%;
      flex-wrap: wrap;
    }

    .contenedor-imagenes img,
    .contenedor-imagenes .swiffy-slider {
      width: 47.5%;
      height: auto;
      object-fit: cover;
    }

    /* Carruseles personalizados */
    .slider-custom {
      width: 100%;
    }
    .slider-nav::after {
      background-color:#79242F !important;
    }
    /* Bloques con imagen y texto */
    .block-container {
      display: flex;
      justify-content: space-between;
      gap: 5%;
      flex-wrap: wrap;
    }

    .block {
     
      width: 46%;
      box-sizing: border-box;
    }

    .block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .block p.title-block {
      font-size: 18px;
      font-weight: 500;
      line-height: 40px;
      margin-top: 20px;
    }

    .block p.desc-block {
      font-size: 16px;
      font-weight: 400;
      color: #555;
      max-width: 550px;
    }

    .aspect-square {
      aspect-ratio: 1/1;
      width: 100%;
      overflow: hidden;
    }

    /* Imagen fija + carrusel mismo tamaño */
    .igualar-altura {
      display: flex;
      gap: 5%;
      flex-wrap: wrap;
      align-items: stretch;
    }

    .igualar-altura .img-fija,
    .igualar-altura .swiffy-slider {
      flex: 1 1 47.5%;
      display: flex;
    }

    .igualar-altura .img-fija img,
    .igualar-altura .swiffy-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Carrusel + texto alineado */
    .carrusel-con-texto {
      display: flex;
      flex-direction: column;
      flex: 1 1 47.5%;
      gap: 10px;
    }

    .texto-carrusel {
      width: 100%;
      text-align: left;
    }

    .texto-carrusel .titulo-texto {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 5px;
    }

    .texto-carrusel .subtitulo-texto {
      font-size: 16px;
      font-weight: 400;
      color: #555;
      max-width: 550px;
    }
  

    /* Responsive */
    @media (max-width: 768px) {
      body {
        padding: 0 10px;
      }
      .s-v2{
        margin-bottom: 15px;
      }
      .contenedor-imagenes img,
      .contenedor-imagenes .swiffy-slider,
      .block,
      .igualar-altura .img-fija,
      .igualar-altura .swiffy-slider {
        width: 100%;
      }
      .block-c{
        margin-top: 40px;
      }
      .logo {
        width: 50%;
      }

      .title-LVR {
        font-size: 22px;
      }

      .description {
        font-size: 16px;
        line-height:26px;
        color:#212529;
        margin-bottom: 0px;
      }

      .collection-link {
        font-size: 13px;
      }

      .igualar-altura {
        flex-direction: column;
      }

      .img-fija {
        margin-bottom: 30px;
      }

      .img-desktop, .img-desktop-2 {
        display: none;
      }

      .img-mobile {
        display: block;
      }

      .carrusel-con-texto {
        flex: 1 1 100%;
      }
    }