* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: Arial, sans-serif;
    height: 100%;
    overflow-x: hidden; /* Evita rolagem horizontal */
    /*font-family: "Open Sans", Helvetica, Arial, sans-serif;  Aplicando a fonte 'Roboto' ao corpo do documento */
    background-color: #fff;
}
header {
    background-color: #333;
    color: #fff;
    padding: 1%;
    
}
main {
    margin: auto;
    width: 100%;  
    
    min-height: calc(100vh - 160px); /* Altura da viewport - altura do header e footer */   
    
}

p {
    padding-top: 15px;
    color: #393f44;
}

h2 {
    padding-top: 20px;
    padding-bottom: 5px;
}

.mainHeader {
    margin: auto;
    width: 100%;  
    
}

.Bold{
    font-weight: 700;
}
.su-button-style-3d {
    border-bottom-style: solid;
    border-bottom-width: 6px;
}
.text-center a{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}
.text-center a:hover{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.text-center a:active{
    transform: scale(1.95);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.footer2 {
    height: 96%;
    width: 70%;
       
        
        word-wrap: break-word;
        background: #2e3138;
        color: #abb0ba;
    
}
.footer2 p{
    color: #abb0ba;
    font-size:20px;
    margin-bottom: 1%;
   

}
.containerF {
    margin-top: 2%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.rowF {
    margin-right: -15px;
    margin-left: -15px;
}
.rowF:before {
    display: table;
    content: " ";
}
.rowF::after {
    display: table;
    content: " ";
}
.text-centerF{
    gap: 5%;
    margin-top: 2%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.text-centerF a{
    color: #abb0ba; ;
}
.div-main{
    width: 78%;
    margin-left: 21%;

}
.card {
    cursor: pointer;
    width: 100%;
    height: 342px;
    margin: 0px 10px -10px 10px;;
    perspective: 2000px; /* Para o efeito 3D */
    padding: 1%;
}
.card1 {
    cursor: pointer;
    width: 100%;
    /* height: 342px;
    margin: 0px 10px -10px 10px; */
    perspective: 2000px; /* Para o efeito 3D */
    padding: 1%;
}
.cardInner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.card.flipped .cardInner {
    transform: rotateY(180deg);
}
.card-front {
    position: absolute;
    width: 100%;
    /* height: 100%; */
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-back{
    position: absolute;
    width: 100%;
     height: 100%; 
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-front {
    height: 100%;
    /*background-color: #f0f0f0;*/
    background-image: url("https://consumereviewer.com/Project_new_top_5/images/pattern-background.png");
    background-repeat: repeat; 
    background-size: auto; 
    background-position: top left; 
    box-shadow: 0 4px 8px rgb(73 71 71 / 71%);
}
.card-front1 {
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgb(73 71 71 / 71%);
}
.card-back {
    background-color: #fff;
    /* color: #fff; */
    transform: rotateY(180deg);
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    
}
footer img {
    width: 30px;
    margin: 0 10px;
    filter: invert(1); /* Inverte as cores da imagem para branco */
}

.header1{
    font-size: 20px;
    text-align: left;
    padding-left: 15%;
}
.div1{
    padding: 1%;
    
}
.div1 p{
    font-size: 1.2rem;
}
.div2{
    display: flex;
    justify-content: space-between;
    padding: 1%;
}
.div-adv{
    padding: 2% 0 2% 1%;
}
.div-adv h2{
    font-size: 35px;
}
.div-adv p{
    font-size: 22px;
}
.fixed-top-right {
    position: fixed;
    top: 10px; /* Distância do topo */
    right: 10px; /* Distância da direita */
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Para garantir que fique sobre outros elementos */
}
/* .siderbar{
    margin-left: 5%;
    margin-top: 0%;
    width: 300px;
    height: 628px;
    background-color: aqua;
    position: sticky;
} */
 .sidebar{
    
    margin-right: 15%;
    padding: 20px;
 }
 .sticky-card {
    width: 350px;
    height: 650px;
   
    
    position: -webkit-sticky; /* Para navegadores mais antigos */
    position: sticky;
    top: 0; /* Fica fixo a partir do topo */
   
    
    padding: 20px;
}

.sticky-card img{
    width: 100%;
}
.container {
    width: 100%;
    max-width: 2048px;
    display: flex;
    flex-wrap: nowrap;
    
    line-height: 35px;
}
.sidebar-item {
    padding: 0px;
    width: 100%;
}
.title-side1 {
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    line-height: 22px;
    background: #222;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 5px 3px 5px 12px;
    font-weight: 600;
    margin: 4px 0 10px;
    border: 1px solid #222;
    position: relative;
}
.containerCom {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type="text"], textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    font-size: 22px;
}
.comment-name {
    font-weight: bold;
    margin-bottom: 5px;
}
  .containerCom {
/* max-width: 600px;
margin: 50px auto; */
width: 100%;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



textarea {
width: 100%;
height: 100px;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
resize: none;
font-size: 26px;
}

button {
display: inline-block;
padding: 10px 20px;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 4px;
cursor: pointer;
}

button:hover {
background-color: #0056b3;
}

#commentsSection {
margin-top: 20px;
}

.comment {
  display: flex;
padding: 10px;
margin-bottom: 2%;
border-radius: 4px;
position: relative;
}
.comment img {
    height: 50px;
}
.comment div {
    
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    flex-grow: 1;
}

.comment p {
    font-size: 16px;
    min-width: 50%;
    flex-grow: 1;
}

.deleteBtn {
margin-inline-start: 89%;
background-color: #dc354500;
color: black;
border: none;

cursor: pointer;
border-radius: 4px;
}

.deleteBtn:hover {
background-color: #dc354500; 
}

.comment img {
  min-height: 50px;
    max-height: 50px;
    min-width: 50px;
    max-width: 50px;
}
.comment p{
  padding-left: 3%;
}
input[type="file"] {
    display: none;
}
button, .fileLabel {
    display: inline-block;
    padding: 0px 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    text-align: center;
}
.sidebar-item-img {
    width: 50px;
    height: 50px;
}
.Div-comment{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.Div-comment p{
    font-size: 22px;
}
.img-side-new2{
    width: 55%;
    border-radius: 5%;
}
.img-page{
    margin: 2% 0 2% 0;
    width: 100%;
    border-radius: 3%;
}
.most-popular {
    background-color: #fff;
    border: #b8a9a9 solid 3px;
    margin: 60px 0;
    transition: all 250ms ease-in;
}
.most-popular h3 {
    font-size: 2.5rem;
    background: #6497b2;
    text-shadow: 1px 1px #000;
    color: #fff;
    font-weight: 700;
    padding: 5px 10px;
    text-align: center;
    text-transform: uppercase;
}
.most-popular .reviews-table {
    border-bottom: 0;
    margin-top: 0;
}
.cell-1 {
    width: 20%;
}

.review-cell {
    border-right: 1px solid #e8e8e800;
    padding: 16px 10px;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.firstitem .item-order {
    background: #78ae38;
    color: #fff;
}
.item-order {
    /* position: absolute;
    top: -1px;
    left: -1px; */
    
    color: #020202;
    font-weight: 500;
    padding: 0 6px;
    font-size: 1.7rem;
}
.item-order2{
    width: 30%;
    background: #78ae38;
    color: #fff;
    font-weight: 500;
    padding: 0 6px;
    font-size: 1.5rem; 
}
.item-logo {
    display: inline-block;
}
.item-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}


.cell-2 {
    width: 15%;
}
.item-score {
    font-size: 61px;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.my-rating {
    margin: 8px auto;
    font-size: 0;
    display: block;
}
.jq-star {
    width: 15px;
    height: 15px;
    margin: 0 1px;
    display: inline-block;
}
.jq-star img {
    width: 100%;
    height: 100%;
}
.score-sub {
    color: #1361c9;
    font-size: 0.875rem;
    margin-top: 3px;
    display: block;
}
.cell-3 {
    text-align: left;
    width: 40%;
}
.selling-price {
    text-align: center;
    margin: 0 -10px 8px;
    padding: 0 10px 8px;
    border-bottom: 1px solid #e8e8e8;
}
.selling-price-text {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
}
.selling-point {
    display: block;
    width: 95%;
    margin: 0 auto;
}
.selling-point-item {
    display: block;
    position: relative;
    margin: 2px 0;
    padding-left: 26px;
}
.sellico {
    max-width: 19px;
    margin-right: 7px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 0;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}
.selling-point-text {
    font-size: 1.1rem;
    
}
.review-cell:last-child {
    border-right: 0;
}

.cell-4 {
    width: 25%;
}
.btnbubble {
    max-width: 170px;
    margin: 0 auto 13px;
    position: relative;
    background: #e9525e;
    border: 1px solid #e9525e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 0.75rem;
    color: #fff;
    line-height: 1.4;
    padding: 5px;
    text-align: center;
    cursor: pointer;
}
.arrow-downbbl {
    left: 0;
    right: 0;
    color: #e9525e;
    text-align: center;
    position: absolute;
    bottom: -15px;
    font-size: 1.125rem;
}
.visit-site-btn {
    display: block;
    max-width: 200px;
    margin: 0 auto;
    background: #78ae38;
    padding: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.250s linear;
}
.best-overall-box {
    background: rgb(228, 245, 248);
    padding: 10px 0;
    font-size: 0;
}
.best-overall-box > div {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 15px 15px 15px 85px;
    width: 33.3333%;
}
.best-overall-box > div img {
    width: 55px;
    height: 55px;
    display: block;
    position: absolute;
    top: 15px;
    left: 20px;
}
.best-overall-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem;
    color: #f65b0f;
}
.best-overall-text {
    margin-top: 5px;
    font-weight: 300;
    letter-spacing: 0.25px;
    font-size: 1rem;
}

.page-reviewer {
    height: 250px;
    background: #f5f5f5;
    padding: 31px 1px 1px 1px;
    margin: 2% 0 15% 0;
    border-radius: 15px;
}
.page-reviewer-inner {
    padding: 0 15px 0 250px;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.about-reviewer-img {
    position: absolute;
    top: 0;
    left: 15px;
    display: block;
    width: 200px;
    height: 200px;
    -webkit-border-radius: 0 14px 0 14px;
    -moz-border-radius: 0 14px 0 14px;
    border-radius: 0 14px 0 14px;
    border: 4px solid #fff;
    -webkit-box-shadow: -3px 2px 22px -11px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -3px 2px 22px -11px rgba(0, 0, 0, 0.5);
    box-shadow: -3px 2px 22px -11px rgba(0, 0, 0, 0.5);
}
.about-reviewer {
    font-weight: 600;
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.about-reviewer-name {
    font-size: 1.375rem;
    font-weight: 300;
}
.about-reviewer-text {
    margin-top: 5px;
    width: 95%;
    line-height: 1.3;
}
.img-side-new {
    width: 100%;
    margin-bottom: 20px;
}
.text-center {
    text-align: center;
    
}
a.get-my {
    margin-top: 0px;
    display: block;
    color: #fff;
    background-color: #ef432d;
    border-color: #bf3624;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
}
a.get-my span {
    color: #fff;
    font-size: 13px;
    line-height: 44px;
    border-color: #f47b6c;
    border-radius: 12px;
    display: block;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    text-shadow: none;
    -moz-text-shadow: none;
    -webkit-text-shadow: none;
}
.col-sm-4{
display: none;
}
.reviews-table.table-shadow {
    height: 100%;
    transition: all 250ms linear;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.reviews-table {
    width: 100%;
    
    margin-top: 25px;
}
.cell-12 {
    width: 20%;
}
.review-cell1 {
    border-right: 1px solid #e8e8e800;
    padding: 16px 10px;
}
.most-pop {
    display: block;
    color: #fff;
    position: absolute;
    width: 170px;
    line-height: 32px;
    height: 32px;
    background: #78ae38;
    font-size: 1.125rem;
    left: -10px;
    top: 28px;
    text-align: center;
}
.most-pop:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-color: #5e872c #5e872c transparent transparent;
    border-width: 5px;
    border-style: solid;
}
.most-pop:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 160px;
    border: 16px solid #79ae38;
    border-right-color: transparent;
}
.item-logo {
    display: inline-block;
}

.cell-12 {
    width: 25%;
}
.cell-121{
    width: 15%;
}
.item-score {
    font-size: 61px;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.my-rating {
    margin: 8px auto;
    font-size: 0;
    display: block;
}
.score-sub {
    color: #1361c9;
    font-size: 0.875rem;
    margin-top: 3px;
    display: block;
}
.cell-13 {
    text-align: left;
    width: 40%;
    line-height: 30px;
}
.jq-star {
    width: 15px;
    height: 15px;
    margin: 0 1px;
    display: inline-block;
}
.selling-price {
    text-align: center;
    margin: 0 -10px 8px;
    padding: 0 10px 8px;
    border-bottom: 1px solid #e8e8e8;
}
.selling-price-text {
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 600;
}
.selling-point {
    display: block;
    width: 95%;
    margin: 0 auto;
}
.selling-point-item {
    text-decoration: none;
      color: inherit;
    display: block;
    position: relative;
    margin: 2px 0;
    padding-left: 26px;
}
.cell-14 {
    width: 25%;
}








/* Media Queries para responsividade */
/* @media (max-width: 768px) {
    .card {
        width: 90%;
        height: 180px;
    }
    header, footer {
        padding: 15px;
    }
    .table {
        position: relative;
        
    }
} */



.img-banner1{
display: block;
}
.img-banner2{
display: none;
}







@media (max-width: 768px) {
   
    .div1{
        padding: 3%;
        
    }
    
    .div2{
      
        padding: 3%;
    }

    p {
        padding-top: 10px;
    }
    
    h2 {
        padding-top: 15px;
        padding-bottom: 5px;
    }

    .sidebar-item {
        padding: 1%;
        width: 100%;
    }
.div-adv h2 {
    padding: 3%;
    font-size: 35px;
}
.div-adv p {
    padding: 3%;
    font-size: 22px;
}
    .img-side-new2{
        padding: 3%;
        width: 100%;
        border-radius: 5%;
    }
    .sidebar-item2{
        margin-top: 7%;
    }
    .img-banner1{
        display: none;
        }
        .img-banner2{
        display: block;
        }
    .div-main{
        margin: 1%;
    width: 98%;
    }
    .card {
        width: 98%;
       
        margin: 5% 1% 4% 1%;
    }
    .card flipped{
     width: 650px  ;
    }
    .card.expanded {
        height: 651px;
    }
    footer {
        
        padding: 10px 6px 14px 10px;
        margin-top: 28%;
    }
    footer img {
        width: 25px;
        margin: 0 5px;
    }
.sticky-card{
    display: none;
}
.sidebar{
    display: none;
}
.header1{
    font-size: 15px;
   /* text-align: center;*/
    
}
.img-side-new {
    width: 100%;
    border-radius: 5%;
}
.most-pop {
    display: block;
    color: #fff;
    position: absolute;
    width: 170px;
    line-height: 32px;
    height: 32px;
    background: #78ae38;
    font-size: 1.125rem;
    left: -10px;
    top: -28px;
    text-align: center;
}



    .most-popular {
        margin: 40px 0;
    }
    .most-popular h3 {
        font-size: 1.5rem;
    }
    .reviews-table.table {
        font-size: 0;
        display: block;
    }
    .cell-1, .cell-2 {
        width: 50%;
        display: inline-block;
        vertical-align: middle;
        border-right: 0;
        padding: 27px 10px;
    }
    .firstitem .item-order {
        background: #78ae38;
        color: #fff;
    }
    .item-order {
      position: absolute;
        top: 41px;
        left: 6px; 
        background: #e8e8e8;
        color: #020202;
        font-weight: 500;
        padding: 0 6px;
        font-size: 1.125rem;
    }
    .item-order2{
        width: 21%;
        background: #78ae38;
        color: #fff;
        font-weight: 500;
        padding: 0 6px;
        font-size: 1.125rem; 
    }
    .item-logo {
        display: inline-block;
    }
    .item-logo img {
        max-width: 250px;
        width: 120%;
        height: auto;
        display: block;
    }
    .cell-2 {
        border-right: 0;
        border-left: 1px solid #e8e8e800;
    }
    .cell-1, .cell-2 {
        width: 50%;
        display: inline-block;
        vertical-align: middle;
        border-right: 0;
        padding: 27px 10px;
    }
    .item-score {
        font-size: 61px;
        font-weight: 700;
        display: block;
        line-height: 1;
    }
    .my-rating {
        margin: 8px auto;
        font-size: 0;
        display: block;
    }
    .jq-star {
        width: 15px;
        height: 15px;
        margin: 0 1px;
        display: inline-block;
    }
    .jq-star img {
        width: 100%;
        height: 100%;
    }
    .score-sub {
        color: #1361c9;
        font-size: 0.875rem;
        margin-top: 3px;
        display: block;
    }
    .cell-3 {
        border-top: 1px solid #e8e8e8;
    }
    .cell-3, .cell-4 {
        width: 100%;
        display: block;
        border-right: 0;
    }
    .selling-price {
        text-align: center;
        margin: 0 -10px 8px;
        padding: 0 10px 8px;
        border-bottom: 1px solid #e8e8e8;
    }
    .selling-price-text {
        font-size: 1.25rem;
        text-transform: uppercase;
        font-weight: 600;
    }
    .cell-3, .cell-4 {
        width: 100%;
        display: block;
        border-right: 0;
    }
    .best-overall-box > div {
        display: block;
        width: 100%;
        padding: 10px 20px;
        text-align: center;
    }
    .best-overall-box > div img {
        position: relative;
        top: auto;
        left: auto;
        width: 90px;
        height: 90px;
        display: block;
        margin: 0 auto 20px;
    }
    .page-reviewer {
        display: none;
        background: #f5f5f5;
        padding: 30px 0;
        border-radius: 15px;
    }

    .page-sidebar {
        width: 100%;
    }
    .col-sm-4{
        display: block;
        margin: 6% 2% 0% 2%
        }
        .container {
            display: block;
           
    line-height: 35px;
        }
        .deleteBtn {
            margin-inline-start: 77%;
            background-color: #dc354500;
            color: black;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }
        .cell-121, .cell-12 {
            width: 50%;
            display: inline-block;
            vertical-align: middle;
            border-right: 0;
            padding: 27px 10px;
        }
        .cell-13 {
            border-top: 1px solid #e8e8e8;
            width: 100%;
        display: block;
        border-right: 0;
        text-align: left;
        }
        .cell-14 {
            width: 100%;
            display: block;
            border-right: 0;
        }

        .footer2 {
            height: 100%;
            width: 100%;
               
                
                word-wrap: break-word;
                background: #2e3138;
                color: #abb0ba;
            
        }
        .footer2 p{
            color: #abb0ba;
            font-size:20px;
            padding: 3%;
        
        }
        .containerF {
            margin-top: 2%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
            background: #2e3138;
        }
        .rowF {
            background: #2e3138;
            margin-right: -15px;
            margin-left: -15px;
        }
        .rowF:before {
            display: table;
            content: " ";
        }
        .rowF::after {
            display: table;
            content: " ";
        }
        .text-centerF{
            gap: 5%;
            margin-top: 13%;
            text-align: center;
            display: flex;
            flex-direction: column;
        }
        .text-centerF a{
            color: #abb0ba; ;
        }





}