/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24/05/2019, 08:13:09
    Author     : EGSM
*/
/*@import url(//db.onlinewebfonts.com/c/f80bfefb1798998a9f13904efc67d707?family=GeoSlab703+Md+BT);*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #8a0000;
    --cor-segundaria: #f0151f;
    --cor-tercearia: #6e0000;
    --text-color: #555555;
}

body {
    font-family: Roboto, Helvetica, sans-serif;
    padding-top: 160px;
    background-color: #ffffff;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #555555;
}

input,
textarea,
select:focus-visible {
    border-color: #6e0000;
}

input,
textarea,
select:focus {
    border-color: #6e0000;
}

/* CONTAINER PADRÃO */
.container {
    width: 1420px;
    margin: 0 auto;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.view {
    width: 100%;
    background-color: none;
    float: right;
    margin-left: 1%;
}

.box {
    width: 100%;
    background-color: white;
    padding: 25px;
    margin-bottom: 25px;
    clear: both;
    min-height: 500px;
}

.banner-top {
    width: 100%;
    margin-top: 20px;
}

.banner-top img {
    width: 100%;
}

.clear {
    clear: both;
}


/*Nossas Lojas*/
.lista-lojas {
    width: 100%;
    display: flex;
    justify-content: first baseline;
    flex-wrap: wrap;
    gap: 20px;
}

.lista-lojas .loja {
    width: 400px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    overflow: hidden;
}

.lista-lojas .loja-nome {
    padding: 5px;
    padding-bottom: 0;
    color: #333;
}

.lista-lojas .loja-endereco {
    padding: 5px;
    font-size: smaller;
    color: rgb(141, 141, 141);
}

.lista-lojas img {
    width: 400px;
    height: 200px;
    object-fit: cover;
}


.lista-lojas .loja a {
    background-color: var(--cor-primaria);
    padding: 15px;
    display: flex;
    flex-direction: column;
    color: white;
    text-decoration: none;
    flex-direction: row;
}

/*detalhe lojas*/
.detalhe-lojas {
    display: flex;
    flex-direction: column;
}

.detalhe-lojas .thumbnail {
    width: 100%;
    margin-bottom: 25px;
}

.detalhe-lojas .thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.detalhe-lojas .informacao {
    display: flex;
    flex-direction: row;
    padding: 20px;
    color: white;
    background-color: var(--cor-primaria);
    margin-bottom: 25px;
    border-radius: 15px;
}

.detalhe-lojas .ofertas {
    display: flex;
    flex: 1;
    flex-direction: row;
    border-radius: 15px;
    padding: 20px;
    color: #333;
    background-color: white;
}

.detalhe-lojas .ofertas button {
    width: 100%;
    padding: 12px 0;
    color: white;
    background-color: green;
    border: none;
    border-radius: 8px;
    margin-top: 5px;
}

.detalhe-lojas .ofertas button:hover {
    cursor: pointer;
    background-color: #29c901;
}

.detalhe-lojas .ofertas img {
    width: 128px;
    height: 128px;
    margin-right: 20px;
}

.detalhe-lojas .horario-servicos {
    display: flex;
    gap: 20px;
}

.detalhe-lojas .horario-servicos .column-01 {
    width: 100%;
}

.detalhe-lojas .catalogos {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.detalhe-lojas .column-01 h1 {
    margin-bottom: 15px;
}

.detalhe-lojas .catalogos .recente-catalogo {
    flex: 2;
    display: flex;
    flex-direction: column;
    padding: 10px;
    row-gap: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detalhe-lojas .catalogos .recente-catalogo img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
}

.detalhe-lojas .catalogos .recente-catalogo .title {
    font-weight: bold;
    color: var(--cor-primaria);
}

.detalhe-lojas .catalogos .ultimos-catalogos {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.detalhe-lojas .catalogo-item {
    padding: 10px;
    row-gap: 5px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detalhe-lojas .catalogo-item img {
    width: 100%;
    object-fit: cover;
}

.detalhe-lojas .catalogos .title {
    font-weight: bold;
    color: var(--cor-primaria);
}

.detalhe-lojas .catalogos .data {
    color: var(--text-color);
    font-size: small;
}

/*Fale conosco*/
.fale-conosco {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 25px;
    background-color: #f2f2f2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-radius: 5px;
}

.fale-conosco h1 {
    font-size: x-large;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}

.fale-conosco .input-text,
textarea,
select {
    padding: 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.fale-conosco .radio {
    padding: 55px;
    background-color: red;
}

.fale-conosco-formulario {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.fale-conosco-formulario .fale-conosco-button {
    width: 100%;
    padding: 15px;
    background-color: var(--cor-tercearia);
    color: white;
    border-radius: 5px;
    border: none;
}

.fale-conosco .fale-conosco-button:hover {
    cursor: pointer;
}

.fale-conosco .row-col-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-content: space-around;
}

.fale-conosco .row-col-2 label {
    flex: 1;
}

.my-app {
    height: 400px;
    padding: 50px;
    border-radius: 20px;
    background-color: #8a0000;
    display: flex;
    row-gap: 120px;
    color: white;
    margin-top: 250px;
    justify-content: center;
}

.my-app-thumbnail {
    width: 666px;
    height: 658px;
    position: relative;
    top: -307px;
}

.my-app .content {
    display: flex;
    flex-direction: column;
    justify-items: center;
    row-gap: 20px;
}

.my-app label {
    font-size: 2.4em;
}

.my-app p {
    font-size: larger;
}

.my-app-download-apps {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.icon-card {
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.card-visa {
    background-image: url('../../uploads/card-visa.png');

}

.card-mastercard {
    background-image: url('../../uploads/card-mastercard.png');
}

.card-hipercard {
    background-image: url('../../uploads/card-hypercard.png');
}

.card-elo {
    background-image: url('../../uploads/card-elo.png');
}

.card-diner-club-internacional {
    background-image: url('../../uploads/card-diner-club-internacional.png');
}

.card-american-express {
    background-image: url('../../uploads/card-american-express.png');
}


.politicas {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.politicas h1 {
    font-size: x-large;
    margin-bottom: 20px;
}

.politicas .content {
    flex: 2;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}
.politicas .content p{
    line-height: 2.5ch;
    margin-bottom: 10px;
}
.politicas .content li{
    list-style: outside;
    margin-left: 30px;
}
.politicas .content ul{
    margin: 10px;
}
.politicas .nav-politicas {
    flex: 1;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    
}
.politicas .nav-politicas li{
    margin: 10px 0;
}

.politicas .nav-politicas a:hover {
    color: var(--cor-primaria);
    font-weight: bold;
}

/*Footer*/
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    box-shadow: 15px 0px 10px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

.footer li {
    list-style: none;
}

.footer p {
    text-align: center;
    padding: 30px 0px;
    background-color: var(--text-color);
    /*f2f2f2*/
    color: white;
}



.footer .footer-item-list {
    display: flex;
    justify-content: space-between;
}

.footer .footer-item-list h1 {
    font-size: large;
    margin-bottom: 10px;
}

.footer .footer-item-list li {
    list-style: none;
    padding: 4px 0;
}

.footer .footer-item-list li a {
    text-decoration: none;
}

.footer .footer-block-01 {
    width: 100%;
    background-color: #ccc;
}

.footer .footer-block-02 {
    width: 100%;
}

.footer .footer-item {
    padding: 25px;
}

.footer .redes-sociais {
    display: inline-flex;
    justify-content: space-between;
    gap: 15px;
}

.footer .forma-pagamentos {
    display: inline-flex;
    justify-content: space-between;
    gap: 15px;
}

.footer .redes-sociais-icon {
    font-size: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #6e0000;
    color: white;
}

.link {
    list-style: none;
    text-decoration: none;
    color: #6e0000;
}

.link:hover {
    text-decoration: underline;
}



div#load_screen {
    background: #6e0000;
    position: fixed;
    z-index: 100000;
    top: 0px;
    width: 100vW;
    height: 100vH;
    display: flex;
    align-items: center;
    justify-content: center;
}

div#load_screen>img#loading {
    width: 200px;
    background-size: contain;
}

.error-404 {
    display: flex;
    width: 1300px;
    min-height: 500px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 50px;
}

/*================Menssage Error, Confirm, Question e Alert=================*/
.Error {
    width: 100%;
    background-color: #FE8484;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid brown;
    color: #900000;
    padding-left: 45px;
    background-image: url(icon-error.png);
    background-position: 12px 12px;
    background-repeat: no-repeat;
    background-size: 25px;
}

.alert {
    width: 100%;
    background-color: #ff9900;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid brown;
    color: black;
    padding-left: 45px;
    background-image: url(icon-inf.png);
    background-position: 12px 12px;
    background-repeat: no-repeat;
    background-size: 25px;
}

.Confirm {
    width: 100%;
    background-color: #01A992;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid #01A992;
    color: white;
    padding-left: 45px;
    background-image: url(icon-confirme.png);
    background-position: 12px 12px;
    background-repeat: no-repeat;
    background-size: 25px;
}

.Question {
    width: 100%;
    background-color: #FFFAA3;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid #ffcc00;
    color: black;
    font-weight: bold;
    padding-left: 45px;
    background-image: url(icon-question.png);
    background-position: 12px 12px;
    background-repeat: no-repeat;
    background-size: 25px;
}

.Question a {
    text-decoration: none;
    color: black;
}

.Question a:hover {
    text-decoration: underline;
}

@media only screen and (max-width:1419px) {
    .container {
        width: 100%;
    }
}


@media only screen and (max-width:1024px) {
    .container {
        width: 100%;
    }
}



@media only screen and (max-width: 1023px) {
    .footer .footer-item-list {
        flex-direction: row;
    }

    .footer-item {
        width: 100%;
    }
}

@media only screen and (max-width: 424px) {}




@media print {
    div {
        visibility: hidden;
    }

    .print {
        visibility: visible;
    }
}