/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Child theme de Hello Elementor
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.producto-checklist-wrapper {
  margin: 20px 0;
} /* Lista */
.producto-checklist-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
} /* Cada ítem */
.producto-checklist-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important; /* ← AJUSTA: espacio entre ícono y texto */
  margin-bottom: 16px !important; /* ← AJUSTA: espacio entre ítems */
} /* Contenedor del ícono */
.checklist-icon-container {
  flex-shrink: 0;
  width: 65px !important; /* ← AJUSTA: ancho del ícono */
  height: 65px !important; /* ← AJUSTA: alto del ícono */
  display: flex;
  align-items: center;
  justify-content: center;
} /* Imagen del ícono (si usas imagen personalizada) */
.checklist-icon-img {
  width: 100% !important;
  height: auto !important;
  max-width: 65px !important; /* ← AJUSTA: tamaño máximo de la imagen */
  object-fit: contain;
} /* Ícono por defecto (✓) */
.checklist-icon-default {
  color: #4caf50; /* ← AJUSTA: color del check por defecto */
  font-size: 30px !important; /* ← AJUSTA: tamaño del check por defecto */
  font-weight: bold;
} /* Texto del checklist */
.checklist-text {
  flex: 1;
  line-height: 1.5 !important; /* ← AJUSTA: altura de línea */
  font-size: 22px !important; /* ← AJUSTA: tamaño de fuente */
  font-family:
    var(--e-global-typography-ddb9803-font-family), sans-serif; /* ← AJUSTA: tipo de fuente */
  font-weight: 400;
  color: #333; /* ← AJUSTA: color del texto */
}
.wc-forward {
  background-color: var(--e-global-color-accent);
  padding: 10px 15px;
  font-family: var(--e-global-typography-ddb9803-font-family), sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--e-global-color-29e8e8d);
  border-radius: 12px;
  margin: 10px;
}
.wc-forward:hover {
  background-color: var(--e-global-color-c912a5e);
  color: var(--e-global-color-29e8e8d);
} /* Estilo específico para tablets (entre 768px y 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .checklist-text {
    font-size: 20px !important;
  }
} /* Responsive para móviles */
@media (max-width: 768px) {
  .producto-checklist-item {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }
  .checklist-icon-container {
    width: 45px !important;
    height: 45px !important;
  }
  .checklist-text {
    font-size: 16px !important;
  }
}
