<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', Helvetica, sans-serif;
}
.tituloQualidade{
    margin: 0%;
    margin-bottom: 14px;
    font-size: 18px;
}
.paragrafoQualidade{
    margin: 0px;
    margin-bottom: 18px;
    font-size: 14px;
    text-align: center;
}

#logoRodape{
    width: 100px;
    height: 60px;
}
#form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.botaoEnviar{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

#enviarFormulario{
    background-color: #000000;
    border: none;
    border-radius: 10px;
    height: 40px;
    width: 240px;
    color: whitesmoke;
    text-transform: uppercase;
    font-weight: bold;
}
#enviarFormulario:active {
    transform: translateY(2px); /* Move o botÃ£o um pouco para baixo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil com esfumaÃ§ado */
  }

#enviarFormulario:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil com esfumaÃ§ado */
}

#negativeForm p{
    font-weight: bold;
}

#nomePositivo{
    background-color: #f5f5f5;
    border: 1px solid #cecece;
    border-radius: 10px;
    height: 30px;
    margin-top: 15px;
}
#nomeNegativo{
    background-color: #f5f5f5;
    border: 1px solid #cecece;
    border-radius: 10px;
    height: 30px;
    margin-bottom: 10px;
}
#comentarioPositivo{
    background-color: #f5f5f5;
    border: 1px solid #cecece;
    border-radius: 10px;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#comentarioNegativo{
    background-color: #f5f5f5;
    border: 1px solid #cecece;
    border-radius: 10px;
    height: 100px;
    margin-bottom: 10px;
}

.containerPositivoNegativo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.bolaPositiva{
    display: flex;
    margin: 0%;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: #368c1c;
    justify-content: center;
    align-items: center;
}
.bolaPositiva img{
    object-fit: contain;
    height: 26px;
    width: 26px;
}
.positivo{
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 110px;
    background-color: #f5f5f5;
    border: 1px solid #cecece;
    border-radius: 10px;
    flex-direction: column;
}
.positivo:active {
    transform: translateY(2px); /* Move o botÃ£o um pouco para baixo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil com esfumaÃ§ado */
  }

.positivo:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil com esfumaÃ§ado */
}

.positivo p {
    font-weight: bolder;
    margin: 0%;
}
.bolaNegativa{
    display: flex;
    margin: 0%;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: #8a2805;
    justify-content: center;
    align-items: center;
}
.bolaNegativa img{
    object-fit: contain;
    height: 26px;
    width: 26px;
    transform: rotate(180deg);
}
.negativo{
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 110px;
    background-color: #f5f5f5;
    border: 1px solid #cecece;
    border-radius: 10px;
    flex-direction: column;
}

.negativo:active {
    transform: translateY(2px); /* Move o botÃ£o um pouco para baixo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil com esfumaÃ§ado */
  }

.negativo:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil com esfumaÃ§ado */
}

.negativo p {
    font-weight: bolder;
    margin: 0%;
}


.estrelasAtendimento{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.estrelasAtendimento label{
    font-size: 16px;
    font-weight: bold;
}

.avaliacao{
    display: flex;
    margin: 0%;
    padding: 0%;
}

  .starIconAtendimento{
    list-style-type: none;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 35px;
  }
  .starIconAtendimento::before{
    content: "\2605";
    color: #ffe500;
  }
  .starIconAtendimento.ativo ~ .starIconAtendimento::before{
    color: #999999;
  }
  .avaliacao:hover .starIconAtendimento::before{
    content: "\2605";
  }

  .starIconPratos{
    list-style-type: none;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 35px;
  }
  .starIconPratos::before{
    content: "\2605";
    color: #ffe500;
  }
  .starIconPratos.ativo ~ .starIconPratos::before{
    color: #999999;
  }
  .avaliacao:hover .starIconPratos::before{
    content: "\2605";
  }

  .starIconEspera{
    list-style-type: none;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 35px;
  }
  .starIconEspera::before{
    content: "\2605";
    color: #ffe500;  
}
  .starIconEspera.ativo ~ .starIconEspera::before{
    color: #999999;
  }
  .avaliacao:hover .starIconEspera::before{
    content: "\2605";
  }
 
.layer {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7);
}

.template {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container {
    position: relative;
    min-height: 100vh;
    top: 0;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%);
    text-align: center;
}

.containerImg {
    width: 100%;
    height: 100%;
}

.containerImg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.containerShare {
    display: flex;
    border-radius: 1.5rem;
    justify-content: end;
    padding-right: 35%;
}
.links-container {
    display: inline-block;
    position: relative;
}

#linksBtn {
    width: 40px;
    height: 40px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
}

#linksBtn:hover {
    background-color: #a8a8a8;
    transition: .1s ease-in-out;
}

.share-button {
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
}

.share-button:hover {
    background-color: #cecece;
}

.share-button::after {
    content: "\279C";
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: end;
}

.hidden {
    display: none;
  }

.logo{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px #dedede solid;
    overflow: hidden;
}
.logoLocalView {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px #dedede solid;
    overflow: hidden;
}
.logo img {
    object-fit: contain;
    width: 90%;
    height: 100%;
}

.title {
    text-align: center;
    margin: 10px 0px 0px 0px;
}

h3 {
    font-weight: normal;
}

.item i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.textAlign {
    width: 100%;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: #424242;
    background-color: rgba(0, 0, 0, 0.5);
}

.modalContent {
    background-color: #FFFFFF;
    max-width: 600px;
    margin: 7% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 1.5rem;
}

.input {
    margin-top: 4%;
}
#localViewContainer{
    display: flex;
    justify-content: center;
    text-align: center;
}
.localView{
    width: 40%;

}
.carouselContainer img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%; /* Initially place all images to the right */
    transition: left 1s ease; /* Smooth transition for the left property */
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.product {
    margin-top: 10px;
    width: 96vw;
}
.image-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    margin-top: 3%;
}
.image-container img {
    width: 100%;
    height: 87%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.firstImage{
    margin-top: 8%;
    border-top-left-radius: 1.5em;
    border-bottom-left-radius: 1.5em;
    transform: scale(1.05);
}
.secondImage {
    position: relative;
    width: 100%;
    height: 94% !important;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 1.5em;
    z-index: 2;
    transform: scale(1.06);
    }
.thirdImage {
    position: relative;
    margin-top: 8%;
    border-top-right-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    transform: scale(1.05);
    z-index: 1;
}
.splide{
    width: 400px; /* Set the desired width */
    height: 250px; /* Set the desired height */
}
.splide img{
    width: 400px; /* Set the desired width */
    height: 250px; /* Set the desired height */
    object-fit: cover;
    aspect-ratio: 16 / 9;
}


input,
select {
    width: 95%;
    padding: 2%;
    border: none;
    border-bottom: rgb(179, 179, 179) 1.4px solid;
    font-size: 15px;
}

input:focus {
    outline: none;
}


textarea {
    width: 95%;
    padding: 2%;
    border: rgb(179, 179, 179) 1.4px solid;
    border-radius: 5px;
}

label {
    font-size: 18px;
    color: #424242;
    font-weight: 500;
}

.close {
    float: right;
    font-size: 40px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.inputSubmit {
    text-align: end;
    margin: 5% 5% 0 0;
}

.btnSubmit {
    padding: 3% 4%;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background-color: rgb(19, 197, 73);
    border: none;
    border-radius: 5px;
}

.stars {
    margin-top: 20px;
    width: 1%;
}

.divSpace {
    margin: 8px 0;
}

.star-rating {
    white-space: nowrap;
}

.star-rating [type="radio"] {
    appearance: none;
}

.star-rating i {
    font-size: 1.2em;
    transition: 0.3s;
}

.star-rating label:is(:hover, :has(~ :hover)) i {
    transform: scale(1.2);
    color: #d8d224;
    animation: jump 0.5s calc(0.3s + (var(--i) - 1) * 0.15s) alternate infinite;
}

.star-rating label:has(~ :checked) i {
    color: #fff236;
    text-shadow: 0 0 2px #ffffff, 0 0 5px #2e2e2e;
}

.footer {
    margin-top: 25px;
}

#social {
    margin-top: 25px;
}

#social i {
    margin: 1% 0;
    font-size: 22px;
    width: 40px;
    color: #ffffff;
}

#footerPowered {
    border-top: 1px #bbbbbb solid;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    margin:30px 0;
}

@keyframes jump {

    0%,
    50% {
        transform: translatey(0) scale(1.35);
    }

    100% {
        transform: translatey(-15%) scale(1.35);
    }
}


@media screen and (max-width: 480px) {

    #containerProducts {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100vw;
    }

    .layer {
        padding-bottom: 20px;
    }

    .logo {
        width: 130px;
        height: 130px;
    }

    .localView{
        width: 100%;
    
    }

    .item {
        width: 80vw !important;
    }

    .titleCategory {
        font-size: 26px;
        margin-left: 5%;
    }

    .product {
        margin-top: 10px;
        width: 96vw;
    }
    .image-container {
        display: flex;
        flex-direction: row;
    }
    .image-container img {
        width: 100%;
        height: 87%;
        object-fit: cover;
        aspect-ratio: 16 / 9;
        
    }

    .firstImage{
        margin-top: 8%;
        border-top-left-radius: 1.5em;
        border-bottom-left-radius: 1.5em;
        transform: scale(1.05);
    }
    .secondImage {
        position: relative;
        width: 100%;
        
        object-fit: cover;
        aspect-ratio: 16 / 9;
        border-radius: 1.5em;
        z-index: 2;
        transform: scale(1.06);
        }
    .thirdImage {
        position: relative;
        margin-top: 8%;
        border-top-right-radius: 1.5em;
        border-bottom-right-radius: 1.5em;
        transform: scale(1.05);
        z-index: 1;
    }


    .productInfo {
        width: 150%;
    }

    input,
    textarea {
        width: 95%;
    }

    .modal {
        height: 100vh;
        width: 100vw;
        z-index: 9999;
    }

    .modalContent {
        overflow: auto;
        height: 80%;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0;
        border-top-left-radius: 1.5rem;
        border-top-right-radius: 1.5rem;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        animation: openModalMobile 0.4s ease forwards;
    }

    .containerShare {
        display: flex;
        border-radius: 1.5rem;
        justify-content: end;
        padding-right: 0%;
    }

    @keyframes openModalMobile {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    #logoRodape{
        width: 94px;
        height: 35px;
    }

}


#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

#map {
    margin-bottom: 10px;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 5%
}

#showMaps {
    color: white;
    padding: 0px 10px;
    height: 45px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
    border: none;
    border-radius: 50px;
}

#openRun {
    color: white;
    padding: 0px 10px;
    height: 45px;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    border: none;
    border-radius: 50px;
}
/*AnimaÃ§Ã£o padÃ£o do botÃ£o---------------------------------------------------------------------------------------------------*/
.default-animation-class{
    transition: box-shadow 0.3s ease-in-out;
} 

.default-animation-class:hover {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.61); /* Sombra ao passar o mouse */
}

/*AnimaÃ§Ã£o do botÃ£o mudando de com quando o mouse estiver em cima---------------------------------------------------------------------------------------------------*/
.botao-mudando-cor {
    transition: filter 0.5s, transform 0.3s;
  }

  .botao-mudando-cor:hover {
    filter: brightness(1.55);
  }

  /*AnimaÃ§Ã£o do botÃ£o Pulsando---------------------------------------------------------------------------------------------------*/
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .botao-pulsando {
    cursor: pointer;
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; 
    transition: background-color 0.3s, filter 0.3s;
    animation: pulse 2s infinite;
  }
  
  .botao-pulsando:hover {
    filter: brightness(1.55); 
  }

/*AnimaÃ§Ã£o do BotÃ£o vibrando---------------------------------------------------------------------------------------------------*/
  @keyframes vibrate {
    0%{
        transform: rotate(0deg);
      }
      10%{
        transform: rotate(0deg);
      }
      12%, 16%, 20%, 24%, 28%, 32%, 36%{
      transform: rotate(2deg);
      }
      14%, 18%, 22%, 26%, 30%, 34%{
        transform: rotate(-2deg);
      }
      40%, 60%, 100%{
        transform: rotate(0deg);
      }
  }
  
  .botao-vibrar {
    cursor: pointer; 
    animation: vibrate 4s infinite;
  }

  .botao-vibrar:hover {
    filter: brightness(1.55); 
  }



.link-container {
    display: flex;
    justify-content: center;
}

</pre></body></html>