$tabHeight:70px;
$tabWidth:270px;
$notabs:5;
$tabColor:rgb(42, 57, 79);
$borderColor:#193951;
$font:'Nunito', sans-serif;
$hover:rgb(33, 46, 65);
$WrapHeight:400px;
*{margin: 0px;padding: 0px;}
html, html a {
    -webkit-font-smoothing: antialiased !important;
}

.Wrapper {
    overflow: hidden;
    height:$WrapHeight;
    width:900px;
    position: relative;
    margin:100px auto 30px auto;
//    background-color: #ccc;
    
    .tab-left {
        width: $tabWidth;
        height: 100%;
        float: left;
//        background: #fff;
        
        .tab {
            height:$tabHeight; 
            width: 100%;
            background: $tabColor;
            position: relative;
            line-height: $tabHeight;
            box-sizing:border-box;
            border-bottom: 1px solid $borderColor;
            font-family: $font;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(.06,.63,.34,.88);
            box-shadow: 10px 0px 10px rgab(0,0,0,0.3); 
            cursor:pointer;
           
            .circle{
                position: absolute;
                top: 0;
                bottom: 0;
                height: 40px;
                width: 40px;
                margin: auto 20px;
            }
            p {
                height: 100px;
                width: 200px;
                position: absolute;
                color: #fff;
                font-size: 20px;
                display: block;
                top: 0;
                bottom: 0;
                margin: auto 70px;
                line-height: 100px;
                font-weight: 300;
            }
            
            &:hover {
                background:$hover;
            }
        }
        
        .top {border-top-left-radius: 5px;border-top-right-radius: 5px;}
        .bottom {border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}
    }
    
    
    .viewport-right {
        height: 100%;
        width: 620px;
        background: #fff;
        border-radius: 5px;
        float: right;
        overflow: hidden;
        position: relative;
        
        .view {
            height: 100%;
            width: 100%;
            position: absolute;
            background: white;
            transition: all 0.2s ease-in-out;
                  
            
        }
    }

}

.tab::after {
    content: "";
    height: 2px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #2a6b9d;
    transition: all 0.1s cubic-bezier(.06,.63,.34,.88); 
}

.tab:hover.tab::after {
    width: 100%;
}
.bottom:hover.tab::after {width: 0%;}
#one {opacity: 1;}
#two,#three,#four,#five {opacity: 0;}

// viewport style 

.viewport-right {
       .view {
        h2{
            font-size: 30px;
            color: rgb(42, 57, 79);
            text-align: center;
            font-family: $font;
            margin: 30px auto;
            
        }
    p {
        font-size: 18px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        width: 80%;
        margin: 10px auto;
    }    
    }
}
.active {
      transition: all 0.2s ease-in-out;
}
.active::before {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #2a6b9d;
}



.Button{
    height: 50px;
    width: 150px;
    line-height: 50px;
    background: $tabColor;
    color: #fff;
    font-family:$font;
    font-size: 18px;
    text-align: center;
    float: left;
    margin: 0px 10px;
    cursor: pointer;
}

.Button:hover {
    background: $hover;
}
#buttons {
    width: 900px;
    position: relative;
    margin: 0px auto;
    text-align:center;
}

#ins {
  text-align:center;
  color:$tabColor;
  font-family:'Open Sans', sans-serif;
  font-weight:400;
  font-size:22px;
  
}

/* Altura máxima para o contentor principal do Slider (os slides) */
.b-detail__main-info-images-big {
    /* Define uma altura máxima razoável para evitar a expansão vertical */
    max-height: 600px; 
    overflow: hidden; /* Corta qualquer excesso (só por segurança) */
}

/* Garante que as imagens se ajustam ao contentor sem distorção */
.b-detail__main-info-images-big img {
    width: 100% !important;     /* Garante largura total da coluna */
    height: auto !important;    /* MANTÉM A PROPORÇÃO da imagem */
    /* Garante que a imagem é exibida inteira dentro do slider */
    object-fit: contain;        
}