/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Unexpected "{"
Line 8:3 Expected identifier but found "'featured-of-daily.css'"

**/
{{ 'featured-of-daily.css' | asset_url | stylesheet_tag }}

.destaque-do-dia {
  display: flex;
  align-items: stretch; 
  justify-content: space-between;
  background-color: #ffffff;
  overflow: hidden; 
  margin: 40px auto;
  max-width: 1500px;
  min-height: 400px;
}

/* Coluna da esquerda - Oferta do dia */
.oferta-do-dia {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
  overflow: hidden;
}

.oferta-do-dia img {
  width: 100%;
  max-width: 600px; 
  object-fit: cover; 
  display: block;
  height: 80%;
}

/* Coluna do centro - Imagem do produto e contador */
.destaque-do-dia-imagem {
  flex: 0.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.destaque-do-dia-imagem img {
  width: 100%;
  max-width: 240px;
  object-fit: cover;
  display: block;
}
/* Coluna da direita - Nome, preço e botão */
.destaque-do-dia-contexto {
  flex: 0.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 30px;
}

.destaque-do-dia-contexto .subtitulo {
  font-size: 24px;
  font-weight: bold;
  color: #495760;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0 !important;
  margin-left: 20px;
}

.destaque-do-dia-contexto p {
  color: #495760;
}


.preco-antigo {
  text-decoration: line-through;
  color: #777;
  font-size: 30px;
  font-weight: bold;
  margin-left: 20px;
  margin-bottom: 0 !important;
}

.destaque-do-dia-contexto .preco-atual {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-left: 20px;
}

/* Contador */
.contador {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.contador-tempo {
  display: flex; 
  align-items: center;
  justify-content: center; 
  font-size: 18px; /* Aumentado de 14px para 18px */
  color: #222222;
  font-weight: bold;
  width: 100%;
  max-width: 400px; /* Largura máxima aumentada */
}

.contador-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5px;
  flex: 1; /* Faz cada bloco expandir igualmente */
}

.contador-digitos {
  display: flex;
  gap: 4px;
}


.contador-digito-caixa {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 55px; 
  height: 75px; 
  background-color: #495760; 
  color: #fff;
  font-size: 38px; 
  font-weight: bold;
}

.contador-label {
  font-size: 16px; 
  color: #c3d602;
  font-weight: bold;
}

.contador-separador {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333; 
  font-size: 28px; 
  font-weight: bold;
  height: 60px; 
  margin: 0 -3px;
  margin-bottom: 30px;
}

.subtitulo-mobile {
  display: none;
}


/* Botão */
.botao {
  background-color: #c3d602;
  color: #000;
  text-decoration: none;
  padding: 1px 10px;
  text-align: center;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  font-size: 26px;
  margin-left: 20px;
}

.botao:after {
  box-shadow: none!important;
}

.botao:hover{
  background-color: rgb(175, 189, 27);
  transform: translateY(-2px);
}

/* Variantes (se necessário) */
.variantes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  margin-left: 20px;
}

.botao-variante {
  background: transparent;
  border: 2px solid transparent;
  padding: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.botao-variante:hover {
  border-color: #aaa;
}

.botao-variante.ativo {
  border-color: #454646;
}

.miniatura-variante {
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1140px) {
  .destaque-do-dia-contexto .subtitulo {
    font-size: 30px;
  }
  .botao{
    max-width: 400px;
    width: 100%;
    font-size: 36px;
    margin-top: 100px;
  }
  .oferta-do-dia img{
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .botao{
    margin-top: 80px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px){
  .destaque-do-dia-imagem{
    margin-top: 30px;
  }
  .contador-digito-caixa {
    width: 45px; 
    height: 65px; 
  }
  .destaque-do-dia-contexto{
    margin-top: 30px;
  }
  .oferta-do-dia img{
    height: 80%;
  }
  .botao{
    margin-top: 50px;
  }
}

@media (min-width: 769px) {
  .contador-mobile {
    display: none !important;
  }
  .contador-desktop {
    display: block !important;
  }
}

/* Responsividade */
@media (max-width: 1024px) {

  .destaque-do-dia-imagem img {
    max-width: 190px;
  }
}

@media (max-width: 768px) {

  .contador-desktop {
    display: none !important;
  }
  .destaque-do-dia {
    flex-direction: column;
  }
  
  .oferta-do-dia {
    flex: none;
    order: 1;
    padding: 0;
  }
  
  .oferta-do-dia img {
    max-width: 420px;
  }
  
  .destaque-do-dia-imagem {
    flex: none;
    order: 2;
  }
  
  .destaque-do-dia-imagem img {
    max-width: 360px;
  }
  
  .destaque-do-dia-contexto {
    flex: none;
    order: 3;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .destaque-do-dia-contexto .preco-atual {
    margin: 0;
    font-size: 50px;
  }
  .destaque-do-dia-contexto .preco-antigo {
    margin: 0;
    font-size: 35px;
    max-height: 35px;
  }
  .botao{
    width: fit-content;
    margin: 0;
  }

  .destaque-do-dia-contexto .subtitulo{
    display: none;
  }

  .subtitulo-mobile {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #495760;
    margin-bottom: 10px;
    width: 400px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .contador-tempo {
    max-width: 200px; /* Largura máxima aumentada */
  }
}

@media (max-width: 480px) {
  .destaque-do-dia-imagem img {
    max-width: 320px;
  }
  .oferta-do-dia img {
    max-width: 425px;
  }

  .subtitulo-mobile {
    width: 340px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .destaque-do-dia-contexto {
      padding: 0;
  }
  .contador-digito-caixa {
    width: 30px;
    height: 40px;
    font-size: 20px;
  }
  
  .contador-separador {
    font-size: 20px;
    height: 40px;
  }
  
  .botao {
    width: fit-content;
  }
}