:root {
    --violet: #9a89c3;
    --blue: #7fa1eb;
    --pink: #e8649b;
    --green: #aaca83;
    --teal: #67b9c2;
    --sunset: #fdc77b;
    --onyx: #434142;
    --lilac: #baaed6;
    --pale: #f5f0ff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
  }

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: 'Onest', sans-serif;
    color: var(--onyx);
    overflow-x: hidden
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 48px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(154, 137, 195, 0.15);
    transition: all .3s
  }

  nav.scrolled {
    box-shadow: 0 4px 30px rgba(154, 137, 195, .15)
  }

  .nav-logo img {
    height: 40px;
    object-fit: contain;
    mix-blend-mode: multiply
  }

  .nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
    margin-bottom: 0;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--onyx);
    transition: color .2s;
    position: relative;
    padding-bottom: 4px
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: width .3s
  }

  .nav-links a:hover {
    color: var(--violet)
  }

  .nav-links a:hover::after {
    width: 100%
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Onest', sans-serif;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(127, 161, 235, .4)
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 161, 235, .5)
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--onyx);
    border-radius: 2px
  }


main{
    padding-top: 65px;
    min-height: calc(100vh - 197px);
    display: flex;
    flex-direction: column;
}

/* ===== STANDS BASE ===== */       

.stands{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    /* max-width: 1320px; */
    /* min-height: 79.96vh;
    max-height: 79.96vh; */
    overflow: hidden;
    min-height: calc(100vh - 262px);
}

/* ===== STANDS BASE ===== */

/* ===== STANDS INFO ===== */

.stands .stands-info{
    width: 100%;
    max-width: 400px;
    /*  overflow: auto;
    height: 70vh; */
    background-color: #fff;
    border-right: 1px solid rgb(0,0,0,.1);
}

.stands .m-mod{
    margin: 0 .8rem;
}

.stands-search{
    position: relative;
    margin: 0 .4rem .4rem;
}

.stands-search svg{
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    left: .9rem;
    transform: translateY(-50%);
}

.stands-search input{
    width: 100%;
    padding-left: 2.9rem;
    padding-right: .4rem;
    padding-top: .4rem;
    padding-bottom: .4rem;
    border-radius: 100rem;
    border: 2px solid #434142;
}

.stands-info .stands-block-scroll{
    overflow: auto;
    /* max-height: 760px; */
    max-height: 68vh/* 70.2vh */;
}

.stands-info .stands-block{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #434142;
    /* padding-bottom: .6rem;
    margin-bottom: .6rem; */
}

.stands-block{
    height: 100%;
}

.stands-block.bg{
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #d4c8f0 0%, #f5c5d8 30%, #fde8c8 60%, #c0e8d8 100%);
    padding: 0 1rem;
    border-bottom-color: transparent;
}

.stands-block.bg .sbt-title{
    font-size: 24px;
}

.stands-block.bg .sbt-desc{
    font-size: 18px;
    color: #434142;
}

.stands-block .stands-block-title{
    display: flex;
    flex-direction: column;
    padding-top: 1.8rem;
    padding-left: .8rem;
    padding-right: .8rem;
}

.stands-block-title .sbt-title{
    color: var(--pink);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: .4rem;
}

.sbt-title{
    text-align: center;
}

.stands-block .desc{
    font-size: 12px;
}

.stands-block-list ul{
    list-style: none;
    padding-left: 0;
}

.stands-block-list ul li{
    margin-bottom: 10px;
    position: relative;
    color: #434142;
}
/* 
.stands-block-list ul li::before{
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    background-color: red;
    border-radius: 100px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
} */

.stands-block-list ul li.color01::before{
    background-color: var(--pink);
}

.stands-block-list ul li.color01 b{
    color: var(--pink);;
}

.stands-block-list ul li.color02::before{
    background-color: var(--blue);
}

.stands-block-list ul li.color02 b{
    color: var(--blue);
}

.stands-block-list ul li.color03::before{
    background-color: var(--teal);
}

.stands-block-list ul li.color03 b{
    color: var(--teal);
}

.stands-block-title img{
    width: 100%;
    /* max-width: 150px; */
    height: 100px;
    object-fit: contain;
    margin: 0 auto .6rem;
}

.stands-block-title .sbt-subtitle{
    font-weight: 400;
    color: #434142;
    line-height: 1.2;
}

.stands-block-item{
    display: flex;
    flex-direction: row;
    /* margin-bottom: .4rem; */
    padding-top: .6rem;
    padding-bottom: .6rem;
    padding-left: .4rem;
    border-bottom: 1px solid rgb(0,0,0,.1);
    width: 100%;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background-color: #fff;
    text-align: start;
    transition: background-color .3s ease-in-out;
}

.stands-block-item:hover{
    background-color: var(--lilac);
}

.stands-block-item:hover .name{
    color: #fff;
}

.stands-share-btn{
    width: 100%;
    margin-bottom: .4rem;
}

.stands-share-btn svg{
}

.stands-share-btn:hover{
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.stands-share-btn:hover svg{
    fill: #fff;
}

.stands-block-item .stands-block-item__left{
    width: 100%;
    max-width: 120px;
    min-width: 120px;
}

.stands-block-item__left img{
    width: 100%;
    border: 1px solid #434142;
    border-radius: .4rem;
}

.stands-block-item__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: .4rem;
}

.stands-block-item__right .name{
    margin-bottom: .2rem;
    font-weight: 700;
    color: var(--violet);
}

.stands-block-item__right .desc{
    display: none;
}

.stands-block-item .stands-block-item__right{

}

.stands-block .accordion-button{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}
.stands-block .accordion-button:not(.collapsed),
.stands-block .accordion-button:focus{
    background-color: #eddbff;
    box-shadow: 0 0 0 4px rgba(167, 108, 226, 0.4);
}

.stands-block .accordion-button img{
    width: 124px;
    margin: 0;
}

.stands-block .accordion-button > div .sbt-title{
    text-align: start;
}

/* .stands-block .accordion-button .sbt-title{
    margin-bottom: 0;
} */

.stands-block-title .sbt-desc{
    color: #434142;
}

.stands-block .share{
    display: flex;
    flex-direction: row;
}

.stands-block{

}

.stands-options{
    margin-bottom: 1rem;
    margin-left: .4rem;
    margin-right: .4rem;
}

.stand-data{
    margin: .2rem .6rem .4rem;
    border: 1px solid rgb(67, 65, 66,.3);
    border-radius: .6rem;
    padding: .4rem .8rem;
}

.stand-data p{
    color: #434142;
}
.stand-data p:nth-child(1){
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .2rem;
}

.stand-data p:nth-child(2){
    margin-bottom: 0;
}

.stands-rs{
    display: flex;
    flex-direction: row;
    gap: .6rem;
}

.stand-data a{
    display: inline-block;
    margin-bottom: .3rem;
    text-decoration: none;
    color: var(--violet);
}

.stand-data a.stand-rs{
    display: flex;
    max-width: 30px;
}

a.stand-rs svg{
    width: 30px;
    height: 30px;
    fill: var(--violet);
}


/* ===== STANDS INFO ===== */

/* ===== STANDS PLANO ===== */

.stands .stands-plano{
    width: 100%;
    max-width: calc(100% - 400px);
}

.stands-plano svg{
    width: 100%;
    max-width: 100%;
    height: auto;
}

.stands-svg g{
    cursor: pointer;
    fill: #fff;
    transition: fill .3s ease-in-out;
}

.stands-svg g  .stand-img{
    transition: fill .3s ease-in-out;
}

.stands-svg g.reservado circle{
    display: none;
}

.stands-svg g:not(.guardado) .stand-save{
    display: none;
}

.stands-svg g.guardado .stand-number rect{
    fill: #3BE42F;
}

.stands-svg g.guardado .stand-number path{
    fill: #fff;
}

.stands-svg g[id^="stand2X2_N" i].hover:hover .stand-img{
    fill: #C75182;
}
.stands-svg g[id^="stand3X3_N" i].hover:hover .stand-img{
    fill: #728FD0;
}
.stands-svg g[id^="stand4X4_N" i].hover:hover .stand-img{
    fill: #55A1A9;
}



.stands-plano{
    position: relative;
}
.stands-plano .stands-plano-filter,
.options-plano{
    position: absolute;
    top: 0;
    left: 0;
    padding: .4rem 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 100;
}

.options-plano{
    top: inherit;
    left: inherit;
    position: inherit;
    padding: 0 .2rem;
    gap: .3rem;
    
}
/* 
.stands-plano-filter .stands-plano-filter__item,
.options-plano .stands-plano-filter__item{
    background-color: #fff;
}
 */
.options-plano .stands-plano-filter__item{
    width: 100%;
}

.stands-plano-filter__item input{
    display: none;
}
.stands-plano-filter__item label,
.stands-share-btn{

    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: .4rem;
    padding-bottom: .4rem;
    padding-right: 1rem;
    padding-left: 1rem;
    border-radius: 2rem;
    border: 2px solid #434142;
    color: #434142;
    cursor: pointer;
    transition: border .3s ease-in-out, background-color .3s ease-in-out, color .3s ease-in-out;
}

.stands-plano-filter__item label svg,
.stands-share-btn svg{
    width: 24px;
    height: 24px;
    fill: #434142;
    margin-right: 6px;
    transition: fill .3s ease-in-out;
}

.stands-plano-filter__item input:checked + label svg{
    fill: #fff;
    transition: fill .3s ease-in-out;
}

.stands-plano-filter__item.item01 input:checked + label{
    background-color: #3BE42F;
    border-color: #3BE42F;
    color: #fff;
    transition: border .3s ease-in-out, background-color .3s ease-in-out, color .3s ease-in-out;
}

.stands-plano-filter__item.item02 input:checked + label{
    background-color: #FFC600;
    border-color: #FFC600;
    color: #fff;
    transition: border .3s ease-in-out, background-color .3s ease-in-out, color .3s ease-in-out;
}

/* ===== STANDS PLANO ===== */

/* ===== STANDS PLANO REFERENCIA ===== */

.stands .stands-ref{
    /*! width: 100%; */
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: .8rem;
    padding-right: .8rem;
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 1.4rem;
    max-height: 3rem;
    position: absolute;
    bottom: 0;
    z-index: 2000;
    background: #fff;
    right: 0;
    border-top-left-radius: 12px;
}

.stands-ref .stands-ref-block{
    font-size: 10px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    gap: .4rem;
    align-items: center;
}

.stands-ref-block .item{
    display: inline-block;
    width: 46px;
    height: 14px;
}

.stands-ref-block .item.item_N1{
    width: 16px;
    height: 16px;
    background-color: #3BE42F;
    border-radius: 100rem;
    border: 2px solid #fff;
    box-shadow: 0 0 6px 1px rgb(0,0,0,.1);
}

.stands-ref-block .item_N2{
    background-color: #E8649B;
}

.stands-ref-block .item_N3{
    background-color: #7FA1EB;
}

.stands-ref-block .item_N4{
    
    background-color: #67B9C2;
}

/* ===== STANDS PLANO REFERENCIA ===== */

/*  */

.block-hidden{
    display: none !important;
}
      
    .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    }

    .whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4ac959;
    font-size: 22px;
    border-radius: 100px;
    color: #FFFFFF;
    }

/*  */

  /* FOOTER */
  footer {
    background: #978bc7;
    padding: 36px 48px;
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
    font-weight: 600
  }

  footer img {
    height: 36px;
    object-fit: contain;
    margin-bottom: 14px;
    mix-blend-mode: screen;
    opacity: 1
  }

  footer strong {
    color: rgba(255, 255, 255, .72)
  }



  @media(max-width:1080px){

    .stands-block{
        background-color: #fff;
    }

    .stands-info .stands-block{
        border-top: 2px solid var(--onyx);
    }
    .stands .stands-plano{
        order: 1;
        max-width: 100%;
    }

    .stands .stands-ref{
        width: 100%;
        max-width: 380px;
        bottom: 2.8rem;
        order: 2;
        z-index: 1018;
        background-color: #f9f9f9;
        border-radius: 12px;
        right: inherit;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid var(--onyx);
    }

    

    .stands .stands-info{
        order: 3;
        max-width: 100%;
        position: absolute;
        top: calc(100% - 40px);
        z-index:1100 !important;
        background-color: transparent;
    }

    .stands .stands-info.active{
        top: 20%;
    }

/*     .stands .stands-info::before{
        content: '';
        position: absolute;
        background-color: #d7d7d7;
        width: 80%;
        height: 2rem;
        top: -2rem;
        left: 50%;
        transform: translateX(-50%);
        border-top-right-radius: .7rem;
        border-top-left-radius: .7rem;
    } */

    .stands .drag-handle,
    .stands .drag-handle.block-hidden {
        height: 40px;
        background: linear-gradient(135deg,#aaca83,#67b9c2);
        color: #fff;
        cursor: grab;
        text-align: center;
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        width: 90%;
        margin: 0 auto;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    /* .stands-block.bg{
        background: linear-gradient(135deg,#aaca83,#67b9c2);
    }

    .stands-block.bg .sbt-title,
    .stands-block.bg .sbt-desc{
        color: #fff;
    } */

    .stands-block{
        min-height: 33rem;
        max-height: 33rem;
        padding-bottom: 1rem;
    }

    .stands-ref-block .item.item_N1{
        width: 18px;
        height: 18px;
        border-width: 2px;
    }

    .stands-ref-block .item{
        width: 22px;
        height: 8px;
    }

    .stands-ref .stands-ref-block{
        font-size: 6px;
    }
  }

  @media(min-width:1080px){
    .drag-handle{
        display: none;
    }    
  }

@media screen and (max-width:910px) and (min-width:901px) {
    .nav-links a,
    .nav-cta{
    font-size: 12px;
    }
}

  @media(max-width:900px) {
    nav {
      padding: 12px 24px
    }

    .nav-links {
      display: none
    }

    .hamburger {
      display: flex
    }

    .nav-logo img {
        height: 26px;
    }
  }
@media screen and (max-height:820px) {
    main{
        min-height: 100vh;
    }
    .stands{
        min-height: calc(100vh - 65px);
    }
}

@media screen and (max-width:500px){
    /* main{
        min-height: 100vh;
    } */
     main,
    .stands{
        min-height: calc(100vh - 120px);
    }
}