.elementor-14022 .elementor-element.elementor-element-f8db5eb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14022 .elementor-element.elementor-element-27b8f56{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overlay-opacity:0.5;}.elementor-14022 .elementor-element.elementor-element-27b8f56:not(.elementor-motion-effects-element-type-background), .elementor-14022 .elementor-element.elementor-element-27b8f56 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E5E5E5;}.elementor-14022 .elementor-element.elementor-element-27b8f56::before, .elementor-14022 .elementor-element.elementor-element-27b8f56 > .elementor-background-video-container::before, .elementor-14022 .elementor-element.elementor-element-27b8f56 > .e-con-inner > .elementor-background-video-container::before, .elementor-14022 .elementor-element.elementor-element-27b8f56 > .elementor-background-slideshow::before, .elementor-14022 .elementor-element.elementor-element-27b8f56 > .e-con-inner > .elementor-background-slideshow::before, .elementor-14022 .elementor-element.elementor-element-27b8f56 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:var( --e-global-color-6ca307c );--background-overlay:'';}.elementor-14022 .elementor-element.elementor-element-ec3ffd8{background-color:#D4D0D0;}.elementor-14022 .elementor-element.elementor-element-dfa6fd5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14022 .elementor-element.elementor-element-90abe5e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14022 .elementor-element.elementor-element-632262e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14022 .elementor-element.elementor-element-ae925ea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-14022 .elementor-element.elementor-element-f8db5eb{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-cc9f03d *//* ————— Reset mínimo ————— */
html, body {
  margin: 0;
  padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* ————— Contenedor principal ————— */
.custom-header {
  width: 100%;
  background: none !important;     /* MENÚ PRINCIPAL TRANSPARENTE */
  border-bottom: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  overflow: visible !important;
  z-index: 1000;
}

.custom-header .inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: visible !important;
}

/* ————— Logo ————— */
.logo img {
  height: 105px;
  width: auto;
  object-fit: contain;
}

/* ————— Hamburguesa (móvil) ————— */
#menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #222;
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* animación de la “X” */
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ————— Navegación principal ————— */
.main-nav {
  flex: 1;
  overflow: visible !important;
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.menu li {
  position: relative;
}
.menu a,
.dropdown-trigger {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
  transition: color .2s;
}
.menu a:hover,
.dropdown-trigger:hover {
  color: #00C6C6;
}

/* ————— Sub-menú desplegable ————— */
.submenu {
  display: none;                    /* oculto por defecto */
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff !important;      /* SUB-MENÚ CON FONDO BLANCO */
  border: 1px solid #e2e2e2;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 1000;
}
.submenu li {
  list-style: none;
}
.submenu li a {
  display: block;
  padding: 10px 25px;
  font-size: 15px;
  color: #222;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.submenu li a:hover {
  background: #00C6C6;
  color: #fff;
}

/* ————— Botón CTA ————— */
.cta {
  background: #00C6C6;
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s;
}
.cta:hover {
  background: #009ea1;
}

/* ————— Escritorio (≥769px) ————— */
@media (min-width: 769px) {
  /* Hover abre el sub-menú */
  .dropdown:hover > .submenu {
    display: block;
  }
  /* Ocultar botón móvil */
  .btn-mobile {
    display: none;
  }
  /* Hamburguesa oculta */
  .hamburger {
    display: none;
  }
}

/* ————— Móvil (≤768px) ————— */
@media (max-width: 768px) {
  /* Mostrar hamburguesa */
  .hamburger {
    display: block;
  }

  /* Menú principal vertical */
  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid #eee;
    padding: 14px 0;
    display: none;
    width: 100%;
    background: inherit;
  }
  #menu-toggle:checked ~ .main-nav .menu {
    display: flex;
  }

  /* Sub-menú dentro del flujo */
  .submenu {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding-left: 18px;
    background: #fff !important;    /* sigue blanco en móvil */
  }
  /* Siempre visible en móvil (o puedes implementar un toggle si deseas) */
  .menu .dropdown > .submenu {
    display: block;
  }

  .submenu li a {
    padding: 8px 30px;
  }
  .submenu li a:hover {
    background: rgba(0,0,0,.05);
    color: #222;
  }

  /* Ocultar CTA escritorio y mostrar móvil */
  .desktop-only {
    display: none;
  }
  .btn-mobile {
    display: block;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bc652e3 *//* Reset rápido */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fuente global */
body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  text-align: center;
}

/* ===== Sección Donativos y Tienda ===== */
.donativos-section {
  background: transparent;
  padding: 60px 20px;
  color: #333;
}

/* Contenedor título y descripción */
.donativos-header {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.donativos-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  border-bottom: 3px solid #FF1200;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.donativos-header .descripcion {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  margin-top: 10px;
}

/* Grid responsive */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tarjetas */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px 35px;
  transition: .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 46px;
  color: #FF1200;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}

.card p {
  font-size: .97rem;
  line-height: 1.55;
  color: #444;
}

/* Mensaje inferior */
.footer-mensaje {
  margin-top: 50px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ace11e *//* ===== Sección Medios para Donar ===== */
.donar-section {
  background: transparent;
  padding: 60px 20px;
  color: #333;
}

.donar-header {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.donar-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  border-bottom: 3px solid #FF1200;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.donar-header .descripcion {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  margin-top: 10px;
}

/* Reutilización del grid y tarjetas ya definidos */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px 35px;
  transition: .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 46px;
  color: #FF1200;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}

.card p {
  font-size: .97rem;
  line-height: 1.55;
  color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-31fb1f5 *//* ===== Sección Tienda ===== */
.tienda-section {
  background: transparent;
  padding: 60px 20px;
  color: #333;
}

.tienda-header {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.tienda-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  border-bottom: 3px solid #FF1200;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.tienda-header .descripcion {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  margin-top: 10px;
}

/* Reutiliza .grid y .card ya definidos */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px 35px;
  transition: .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 46px;
  color: #FF1200;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}

.card p {
  font-size: .97rem;
  line-height: 1.55;
  color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e4a130c */body {
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Sección general */
.tienda-accion {
  padding: 60px 20px;
  background: #fff;
}

.tienda-header {
  text-align: center;
  margin-bottom: 40px;
}

.tienda-header h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #d71920;
  border-bottom: 3px solid #d71920;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.tienda-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Grid */
.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Tarjeta de producto */
.producto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.icono-producto {
  font-size: 60px;
  color: #d71920;
  margin-bottom: 20px;
}

.info h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.precio {
  font-size: 1.2rem;
  color: #d71920;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Botón Comprar */
.btn-comprar {
  display: inline-block;
  background: #d71920;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-comprar i {
  margin-right: 8px;
  color: #fff;
  font-size: 1.1rem;
}

.btn-comprar:hover {
  background: #a51214;
  transform: scale(1.05);
}

.btn-comprar:active {
  background: #870f0f;
  transform: scale(0.97);
}/* End custom CSS */