/* ============================================================================================
   COZINHA MINUTO - CSS FINAL UNIFICADO (AJUSTADO COM PRINT, INGREDIENTES, DESCRIÇÃO, LISTA E MOBILE)
============================================================================================ */

/* ============================================================================================
   BLOQUEIO GLOBAL DE OVERFLOW
============================================================================================ */
html, body {
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================================================================
   IMAGENS E INGREDIENTES SEM MEDIA QUERY (DESKTOP E MOBILE)
============================================================================================ */
.gt-overview-box img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.gt-lists.gt-style-4 li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5em;
  position: relative;
  padding-left: 18px;
}

.gt-lists.gt-style-4 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
}

/* ============================================================================================
   AJUSTES GERAIS PARA MOBILE
============================================================================================ */
@media (max-width: 768px) {
  .elementor-widget-container {
    padding: 10px;
  }

  .elementor-widget-container img {
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  img.alignnone.wp-image-2844 {
    max-width: 170px !important;
    height: auto !important;
    display: block;
    margin: 0 auto 20px auto;
  }

  .elementor-widget-button .elementor-button {
    padding: 6px 14px !important;
    font-size: 14px !important;
  }

  .whatsapp-box {
    max-height: 280px !important;
    overflow-y: auto !important;
  }

  .single-recipe h1 {
    font-size: 26px !important;
  }

  .single-recipe .gt-content-body {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .gt-lists.gt-style-4 li .gt-desc {
    word-break: break-word;
    font-size: 1rem;
  }
}

/* ============================================================================================
   AJUSTES PARA PÁGINAS DE RECEITA (single-recipe)
============================================================================================ */
.single-recipe .gt-item .gt-title {
  font-size: 26px !important;
}

.single-recipe .gt-recipe-ingredients .gt-title,
.single-recipe .gt-recipe-nutritions .gt-title {
  font-size: 100% !important;
}

.single-recipe .gt-ingredients {
  display: none !important;
}

.single-recipe .gt-item-directions .gt-desc p,
.single-recipe .gt-description p {
  font-size: 20px !important;
  line-height: 1.6 !important;
}

.single-recipe .gt-title span {
  display: none !important;
}

/* ============================================================================================
   AJUSTES VISUAIS DO BOTÃO DE PRINT
============================================================================================ */
.single-recipe .gt-social-share {
  display: flex !important;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 20px;
}

.single-recipe .gt-social-share a, 
.single-recipe .gt-social-share .print-button-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #555;
  color: white;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.single-recipe .gt-social-share a:hover, 
.single-recipe .gt-social-share .print-button-custom:hover {
  background-color: #e63946;
}

.single-recipe .gt-social-share .print-button-custom svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

/* ============================================================================================
   AJUSTES FINAIS VISUAIS
============================================================================================ */
.single-recipe .gt-overview-box .gt-details {
  font-size: 18px;
}

.single-recipe .gt-nutritions {
  font-size: 15px !important;
}

.single-recipe .gt-description {
  margin-top: 25px;
  font-size: 20px !important;
  line-height: 1.6 !important;
}

.single-recipe .gt-author-actions {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================================================================
   REMOVER NÚMEROS DA LISTA DE PASSOS
============================================================================================ */
.single-recipe ol {
  list-style: none !important;
  counter-reset: none !important;
  padding-left: 0 !important;
}

.single-recipe ol li::before {
  display: none !important;
  content: none !important;
}

/* ============================================================================================
   VISUAL PARA DIV .passos E .passo
============================================================================================ */
.single-recipe .passos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.single-recipe .passos .passo {
  font-size: 20px !important;
  line-height: 1.6;
}