@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
/* ================= VARIAVEIS E RESET ================= */
:root {
    --dark-color: #15161D;
    /* Alterado de vermelho para laranja para combinar com o footer */
    --primary-color: #FF8C00; /* Laranja vibrante */
    --white: #FFFFFF;
    --pompeii-ash: #6c757d;
    --dark-grey: #333;
    --black: #000;
    --yellow: #fed700;
    --yellow-dark: #f1ca00;
    --pastel: #f9f9e8;
    --mustard: #b48d01;
    --sand-castrle: #d9c07c;
    --orange: #ff8c00;
    --body-bg: #FFF;
    --smoke-bg: #f5f5f5;
    --orange-bg: #ff8c00;
    --text-color: #333;
    --text-color-orange: #ff8c00;
    --navbar-top-bg: #fed700;/*#FFFFF0;*/
    --footer-botton-bg: #fed700;
    /* Variáveis do Footer (Baseado na imagem 2) */
    --footer-top-bg: #FFFFFF;
    --footer-mid-bg: #FFFFFF;
    --footer-text-muted: #B0B1B4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif, Arial, Helvetica, Verdana;
}

/* set basic***************************** */
body {
    background-color: var(--body-bg);
    color: var(--text-color);
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: var(--dark-grey);
    transition: 0.3s ease-in-out;
}

a:hover {color: var(--yellow-dark);}

.img-fluid {
  max-width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

img {
  vertical-align: middle;
  border-style: none;
}

.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.img-border{
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

a:focus,
a:hover {
    color: #fed700;
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: .5rem;;
}

h1 {
    font-size: 2.0rem;
    color: var(--dark-grey);
    font-weight: bold;
}
h2 {
    font-size: 1.5rem;
    color: var(--dark-grey);
}
h3 {font-size: 1.70rem;}
h4 {font-size: 1.5rem;}
h5 {font-size: 1.25rem;}
h6 {font-size: 1rem;}

ul {
    margin: 0px;
    padding: 0px;
}
li {list-style: none}
p {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 22px;    
    font-weight: normal;
    margin-top: 1px;
    margin-bottom: 1px;
}
hr {
    margin: 60px 0;
    padding: 0px;
    border-bottom: 1px solid #fed700;
    border-top: 0px;
}
hr.style-2 {
    border-bottom: 1px dashed #f10;
}
hr.mp-0 {
    margin: 0;
    border-bottom: 1px solid #eceff8;
}
hr.mtb-40 {
    margin: 40px 0;
    border-bottom: 1px solid #eceff8;
    border-top: 0px;
}
label {
    font-size: 15px;
    font-weight: 400;
    color: #626262;
}
*::-moz-selection {
    background: #4fc1f0;
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background: #4fc1f0;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #4fc1f0;
    color: #fff;
    text-shadow: none;
}
.mark,
mark {
    background: #4fc1f0 none repeat scroll 0 0;
    color: #ffffff;
}
span.tooltip-content {
    color: #00a9da;
    cursor: help;
    font-weight: 600;
}

.title-efect{
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    /*text-shadow: 2px 2px 1px rgba(0,0,0,0.4);*/
    text-shadow: 1px 2px 2px rgba(0,0,0,0.49);
}

/*--------------------------------*/

.section-destaques{background: #f5f5f5;}

/* Utilitários de Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-gap {
    padding: 60px 0;
}

.section {
    padding: 30px 0;
}


/* ================= SISTEMA DE GRID CSS ================= */
/* Grid container de 12 colunas */
.grid-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

/* Classes para span de colunas */
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-6 { grid-column: span 6; }
.col-span-8 { grid-column: span 8; }
.col-span-9 { grid-column: span 9; }
.col-span-12 { grid-column: span 12; }

/* Grid utilitário rápido para 4 colunas (usado no footer) */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Grid rápido para produtos */
.product-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* ================= COMPONENTES CSS ================= */

.hidden{display:none;}

.aside img{
  width:300px;
  height:auto;
}


.hero-section{
    background-color: transparent;
    width: 100%;
    /*min-height: 263px; /* altura mínima baseada na imagem */
    aspect-ratio: 1573 / 170; /* mantém proporção exata */
    background-image: url("../images/banner-top-home.jpg");
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.hero-section h1{display:none;}

/* --- Botões --- */
.btn {
    padding: 10px 25px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s all;
    display: inline-block;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    text-align: center;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--yellow-dark);
    color: var(--white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--black);
    text-align: center;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.btn-block {
    display: block;
    width: 100%;
}



.tb_sb_f_btn{
    padding: 10px 25px!important;
    font-weight: 700!important;
    cursor: pointer!important;
    transition: 0.2s all!important;
    display: inline-block!important;
    background: transparent!important;
    border: 2px solid var(--yellow)!important;
    color: var(--black)!important;
    text-align: center!important;
    -webkit-border-radius: 40px!important;
    -moz-border-radius: 40px!important;
    border-radius: 40px!important;

}

.tb_sb_f_btn:hover {
    background: var(--yellow)!important;
    color: var(--black)!important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px!important;
}





/* --- Input Group (Usado na busca e newsletter) --- */
.input-group {
    display: flex;
    width: 100%;
}

.input-group .input {
    flex-grow: 1; /* Ocupa o espaço restante */
    padding: 0 15px;
    border: 1px solid #E4E7ED;
    height: 40px;
}

/* Elementos anexados antes ou depois do input */
.input-group .prepend {
    border-radius: 40px 0 0 40px;
    border-right: none;
}

.input-group .append {
    border-radius: 0 40px 40px 0;
}
/* Estilo específico para o select prepend no header */
.input-select.prepend {
    padding: 0 15px;
    background: var(--white);
    border: 1px solid #E4E7ED;
    border-right: none;
    height: 40px;
}

/* --- Alerts (Estilo Bootstrap) --- */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning {
    color: var(--text-color);
    background-color: #FFF;
    border: solid 1px var(--yellow-dark);


}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* --- Cards --- */
.card {
    background: #fff;
    border: 1px solid #FFF;/*E4E7ED*/
    transition: 0.2s box-shadow;
    /*-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px; */


    /*display: flex;
    position: relative;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #E4E7ED;
    border-radius: .25rem;*/


}
.card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-border{
    border: 1px solid #E4E7ED;
    border-radius: .25rem;

}

.card-body {
    padding: 20px;
    /*flex: 1 1 auto;
    padding: 1rem 1rem;*/
}


.card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: .5rem;
}

.card-title-cupom {
    font-size: 21px;
    font-weight: bold;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: .5rem;
}

.card-category{
    font-size: 12px;
    color: var(--mustard); /*pompeii-ash*/
}

/* Vertical Card (Produto) */
.vertical-card .card-img img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;


}

.vertical-card p{color: var(--dark-grey);}

.card-price {
    color: var(--mustard);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;


}
.card-price del {
    color: #8D99AE;
    font-size: 14px;
    font-weight: 400;
    margin-left: 5px;
}

/* Horizontal Card (ex: Blog) */
.horizontal-card {
    display: flex;
    align-items: center;
    webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.horizontal-card .card-img-side {
    flex-shrink: 0;
    width: 200px;
    height: 100%;
    webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.horizontal-card .card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


.cupom{
    border: 1px solid #E4E7ED!important;
    padding: 15px;
    webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

}

.cupom:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.cupom-codigo{
    color: var(--dark-grey);
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.cupom-destaque{
    position: relative;
    text-align: center;
    border-right: 2px dashed #D4D7DD;/*#E4E7ED*/;
    /*display: flex;
    align-items: center;*/
}


.cupom-destaque p{
    color: var(--yellow-dark);
    font-size: 23px;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;

    position: absolute;
    top: 50%; /* Moves the top edge to the middle */
    /*transform: translateY(-50%);  Moves the element up by half of its own height */
    left: 50%;
    transform: translate(-50%, -50%);



}

.cupom-title{
    font-size: 21px;
    font-weight: bold;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: .5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.copto{
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 16px;
}

/*.horizontal-card {
    display: flex;
    align-items: center;
}
.horizontal-card .card-img-side {
    flex-shrink: 0;
    width: 200px;
    height: 100%;
}
.horizontal-card .card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}*/


.faq-container { max-width: 100%; margin: 0 auto; background: #fff; padding: 20px; border-radius: .25rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.faq-item { border-bottom: 1px solid #eee; }

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    background-color: #fff;
    transition: background 0.3s;
    position: relative;
}

.faq-question:hover { background-color: #fed700; }

/* Adiciona um ícone de "+" simples */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
}

/* Estilo para quando a pergunta estiver aberta */
.faq-question.active::after { content: '-'; }

.faq-answer {
    display: none; /* Escondido por padrão */
    padding: 0 15px 15px;
    color: #555;
    line-height: 1.6;
}


.form-group {
    margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}



/* ================= ESTILOS DO HEADER (Mantidos do anterior) ================= */
#top-header {
    background-color: var(--navbar-top-bg);
    padding: 10px 0;
    font-size: 12px;
}
.header-links {
    list-style: none;
    display: flex;
    color: var(--dark-grey);
}
.header-links li {
    margin-right: 20px;
    display: flex; align-items: center; gap: 5px;
}
#main-header {
    background-color: var(--white);
    padding: 30px 0;
}


.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logo .eletro {
  color: #1f2933;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.49);
}

.logo .market {
  color: #fed700;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.49);

  /*text-shadow:
    0 2px 8px rgba(254, 215, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.25);*/
}

.logo::before {
  /*content: "🛒";
  font-size: 40px;
  margin-right: 10px;
  color: #fed700;*/
}

.header-search { width: 50%; } /* Largura da busca no desktop */

/* Widgets do header */
.header-widgets {
    display: flex;
    color: var(--yellow);
    text-align: center;
    gap: 25px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.widget { cursor: pointer; }
.widget span { display: block; font-size: 10px; margin-top: 5px;}
.icon-wrap { position: relative; font-size: 20px; }
.qty {
    position: absolute;
    top: -10px; right: -10px;
    background: var(--yellow);
    color: white;
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }
#navigation {
    background: var(--white);
    /*border-bottom: 2px solid #E4E7ED;*/
    border-top: 0px solid var(--white);
    border-bottom: 1px solid var(--yellow);
    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;*/
    /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
}
.main-nav { list-style: none; display: flex; }


.main-nav li { padding: 20px 0; margin-right: 30px; }


.main-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.2s color;
    font-weight: bold;
}
.main-nav li.active a, .main-nav li a:hover {
    color: var(--yellow);
    /*border-bottom: 2px solid var(--primary-color);*/
    padding-bottom: 5px;
}

/* ================= ESTILOS DO FOOTER (Novo) ================= */
#footer {
    color: var(--footer-text-muted);
}

/* Footer Top (Contatos) */
.footer-top {
    background-color: var(--footer-top-bg);
    padding: 60px 0;
}
.contact-widget {
    display: flex;
    align-items: center;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--pastel);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info h5 {
    color: var(--dark-grey);
    font-size: 16px;
    margin-bottom: 5px;
}
.contact-info p { font-size: 14px; margin: 0; }

/* Footer Middle (Links e Newsletter) */
.footer-middle {
    background-color: var(--pastel);
    padding: 80px 0;
}
.footer-title {
    color: var(--dark-grey);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links li a {
    text-decoration: none;
    color: var(--dark-grey);
    font-size: 14px;
    transition: 0.2s;
    display: flex; align-items: center;
}
/* Adiciona a setinha antes do link */
.footer-links li a::before {
    content: '\f054'; /* FontAwesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-right: 10px;
    color: var(--sand-castrle);
}
.footer-links li a:hover { color: var(--footer-botton-bg); margin-left: 5px;}

.texto-missao {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
    color: #333;
}

/* Newsletter Input Group específico */
.newsletter-group .input {
    border: none;
    border-radius: 30px; /* Borda arredondada no container todo */
    padding-left: 25px;
}
.newsletter-group {
    background: var(--white);
    border-radius: 30px;
    padding: 5px;
}
.newsletter-group .btn {
    border-radius: 30px;
    padding: 10px 30px;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    background-color: var(--footer-botton-bg);
    padding: 25px 0;
    color: var(--dark-grey);
    font-size: 14px;
    position: relative;
}


.copyright-text{
  margin: auto;
}


.copyright-text a:hover{color: var(--white)!important;}
.credits-text a:hover{color: var(--white)!important;}

.logo-symbol{
    width: 50%;
}

/* Scroll to top button */
#scroll-top-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--mustard);
    border: none;
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}
#scroll-top-btn:hover {
  background: var(--mustard);
  color: #333;
}


.tiker-link:hover{
   /* color: #c49d00!important;*/
    color: var(--dark-grey)!important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);

}

/* ================= ESTILOS  ================= */

.f-18{font-size: 18px!important;}
.f-20{font-size: 20px!important;}
.f-23{font-size: 23px!important;}
.f-30{font-size: 30px!important;}
.f-90{font-size: 90px!important;}
.f-100{font-size: 100px!important;}

.mb-2{margin-bottom: 2px;}
.mb-3{margin-bottom: 3px;}
.mb-4{margin-bottom: 4px;}
.mb-5{margin-bottom: 5px;}
.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}
.mb-30{margin-bottom: 30px;}
.mb-40{margin-bottom: 40px;}
.mb-50{margin-bottom: 50px;}
.mb-60{margin-bottom: 60px;}
.mb-70{margin-bottom: 70px;}
.mb-80{margin-bottom: 80px;}
.mb-90{margin-bottom: 90px;}
.mb-100{margin-bottom: 120px;}
.mt-2{margin-top: 2px;}
.mt-3{margin-top: 3px;}
.mt-4{margin-top: 4px;}
.mt-5{margin-top: 5px;}
.mt-10{margin-top: 10px;}
.mt-20{margin-top: 20px;}
.mt-30{margin-top: 30px;}
.mt-40{margin-top: 40px;}
.mt-50{margin-top: 50px;}
.mt-60{margin-top: 60px;}
.mt-70{margin-top: 70px;}
.mt-80{margin-top: 80px;}
.mt-90{margin-top: 90px;}
.mt-100{margin-top: 120px;}


.w-60{width: 60%;}


.text-center{text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.text-justify{text-align: justify;}


.text-destaque{
    text-decoration: none;
    color: var(--dark-grey)!important;
    text-transform: uppercase;
    /*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    */
}

.text-orange{color: var(--text-color-orange);}


.price {
    color: var(--dark-grey);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.efect{
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
}



/* ================= CAROUSEL Produto ================= */


.carousel-product {
    max-width: 500px;
    margin: auto;
}

.main-image {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.main-image img {
    width: 100%;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/*.zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    background-repeat: no-repeat;
    background-size: 200%;
    display: none;
    pointer-events: none;
}*/

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--yellow);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 25px;
    text-shadow: 1px 1px 3px #000;
}

.prev { left: 10px; }
.next { right: 10px; }


.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: hidden;
    padding: 7px 0px 7px 0px;
}

.thumbs img {
    width: 70px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.thumbs img.active {
    opacity: 1;
    border-color: var(--mustard);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.thumbs-control{
    text-align: center;
}

/* Responsivo */
@media (max-width: 480px) {
    /*.zoom-lens {
        display: none !important;
    }*/

    .thumbs img {
        width: 60px;
    }
}


/* ================= CAROUSEL  ================= */

/* ===== RESET LOCAL ===== */
.top-jumbotron *,
.top-jumbotron *::before,
.top-jumbotron *::after { box-sizing: border-box;}

/* ===== JUMBOTRON ===== */
.top-jumbotron {
  background: #fff;
  padding: 40px 0px;
}

.top-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

/* ===== CAROUSEL ===== */
.top-carousel-wrapper {
  flex: 0 0 60%;
  position: relative;
  /*background: #222;*/
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.top-carousel-item {
  display: none;
}

.top-carousel-item.top-active {
  display: block;
}

.top-carousel-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-top-carousel{width: 200px;}

.top-carousel-content img {
  width: 300px;/*55%*/;
  border-radius: 8px;
}

.top-carousel-info {
  color: #fff;
}

.top-carousel-title {
    font-size: 21px;
    margin: 10px 0;
    color: var(--dark-grey);
    text-shadow: none!important;
    letter-spacing: 0px!important;
    text-transform: none!important;


}

/* Navegação */
.top-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--black);
  border: none;
  width: 40px;
  height: 40px;
  /*border-radius: 50%;*/
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  /*box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;*/

}

.top-prev { left: 4px; /*15px*/ }


.top-next { right: 4px; }

/* ===== PRODUTOS LATERAIS ===== */
.top-products-wrapper {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-product {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-product img {
  width: 110px;
}

.top-product-info {
  display: flex;
  flex-direction: column;
}

.top-category {
  font-size: 14px;
  color: var(--dark-grey);
  margin-bottom: 5px;
}

.top-title {
    font-size: 16px;
    margin: 6px 0;
    color: var(--dark-grey);
}

.top-price {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-grey);
  font-weight: 700;

}

.top-button {
  background: #ffd400;
  border: none;
  padding: 10px 18px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
}

.top-divider {
  height: 1px;
  background: #fed700;
  margin: 30px 0;
}


.top-progress {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.top-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--yellow);
}

/* ===== ADMIN ===== */
.fotos { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; border: 1px dashed #ccc; padding: 20px; }
.foto-item { position: relative; border: 1px solid #ddd; padding: 5px; }
.foto-item img { display: block; max-width: 150px; height: auto; }
.btn-excluir { background: #ff4d4d; color: white; border: none; padding: 5px; cursor: pointer; width: 100%; margin-top: 5px; }


/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .top-container {
    flex-direction: column;
  }

  .top-carousel-content {
    flex-direction: column;
    text-align: center;
  }

  .top-carousel-content img {
    width: 100%;
  }

   .cupom{
    text-align: center!important;
    }


  .cupom-destaque{
        border-right: none;
        border-bottom: 2px dashed #D4D7DD!important;/*#E4E7ED*/
        height: 100px;
   }




}

@media (max-width: 576px) {
  .top-product {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= BREADCRUMB  ================= */

.breadcrumb {
    padding: 21px 0 22px;
    background: #fff;
}
.breadcrumb-content li {
    color: #a4a4a4;
    display: inline-block;
    font-size: 14px;
    margin-right: 28px;
    position: relative;
}
.breadcrumb-content li a {
    color: #242424;
}

.breadcrumb-content li.active a{
    color: #C4C4C4!important;
}


.breadcrumb-content li a:hover {
    color: #242424;
}
.breadcrumb-content li::before {
    background-color: #aaaaaa;
    content: "";
    height: 2px;
    position: absolute;
    right: -22px;
    top: 10px;
    transform: rotate(-67deg);
    transition: all 0.4s ease 0s;
    width: 12px;
}
.breadcrumb-content li:last-child::before {
    display: none;
}

/* ================= INFO PRODUTOS  ================= */

.product-details .product-desc {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 25px;
}
.product-details.product-desc p {
    margin-bottom: 20px;
}

.product-details .product-info h2 {
  font-size: 18px;
  letter-spacing: -.025em;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 15px 0;
  color: var(--dark-grey);
  text-shadow: none;
}

.product-details .product-info p{
    color: var(--dark-grey);
    text-decoration: none;
}

.product-details .product-info p a{ text-decoration: none;}


.product-description{
    padding: 25px 0;
    color: var(--dark-grey)!important;
}


.product-description pre {
  white-space: pre-wrap;     /* Preserves spaces/tabs but wraps lines */
  overflow-wrap: break-word;
}


.product-description p{
    color: var(--dark-grey)!important;
}


.price-box span{
    color: var(--mustard);
    /*font-size: 18px;*/
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 1.1;
    /*text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;*/
}

.price-text{
  color: #333;
  font-size: 16px;
}

.txt-pst p{
    font-size: 18px!important;
    color: #333;
}




/* ================= RESPONSIVIDADE (Media Queries) ================= */
@media (max-width: 991px) {
    /* Header Responsivo */
    #top-header { display: block; }
    .header-search { width: 100%; order: 1; margin-top: 50px;} /* Busca vai para baixo do logo */
    

    .main-header-content { flex-direction: column; gap: 20px; position:relative; }

    .header-logo {
        order: 0;
        /*novo*/
        position: absolute;
        top: 0px;
        left: 10px;
        margin-bottom: 20px;

    }
    
    .header-widgets { 
        order: 0;
        /*novo*/ 
         position: absolute;
         top: 0px;
         right: 20px;
         margin-bottom: 20px;

    }





    .menu-toggle { display: block; }



    /* Menu Mobile Styles */
    .main-nav {
        display: none; flex-direction: column; width: 100%;
        background: #fff; position: absolute; left: 0;
        z-index: 100; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .main-nav.show { display: flex; }
    .main-nav li { padding: 15px 20px; margin: 0; border-bottom: 1px solid #eee; }




    /* Grid Responsivo (Quebra para 1 coluna) */
    .grid-row, .grid-4-col { grid-template-columns: 1fr; }
    .col-span-3, .col-span-9 { grid-column: span 1; }

    /* Footer Responsivo */
    .footer-top, .footer-middle { text-align: left; }
    .contact-widget { margin-bottom: 20px; }
    .footer-bottom .flex-between {
        flex-direction: column; gap: 10px; text-align: center;
    }
    #scroll-top-btn { position: static; margin: 20px auto 0; display: block; transform: none;}
    img{width: 100%;}

    .hero-section{
      min-height: 150px;
      background-position: center top;
    }
}

@media (max-width: 768px) {
    /* Horizontal card vira vertical no mobile */
    .horizontal-card { flex-direction: column; }
    .horizontal-card .card-img-side { width: 100%; height: 200px; }


    .carousel-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .item-content h2 {
        font-size: 26px;
    }

    img{width: 100%;}

    .hero-section{
      min-height: auto;
      background-size: contain;
      background-position: center top;
    }

}
