.elementor-1960 .elementor-element.elementor-element-fe7e8d3{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1960 .elementor-element.elementor-element-5f5fcb4{width:var( --container-widget-width, 92.625% );max-width:92.625%;--container-widget-width:92.625%;--container-widget-flex-grow:0;}.elementor-1960 .elementor-element.elementor-element-5f5fcb4.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-1960 .elementor-element.elementor-element-72f2cde{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-1960 .elementor-element.elementor-element-72f2cde.e-con{--align-self:center;}/* Start custom CSS for container, class: .elementor-element-fe7e8d3 */h1.entry-title {
  display: none;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eadc404 *//* CONTENEDOR GENERAL */
.lf-blog-container {
  background: #050510;
  color: #ddd;
  font-family: 'Arial', sans-serif;
}

/* HERO */
.lf-blog-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.lf-blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.lf-blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.lf-blog-overlay h1 {
  color: #00e0ff;
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0,224,255,0.5);
}

.lf-blog-overlay p {
  max-width: 900px;
  font-size: 22px;
  line-height: 1.8;
  color: #f1f1f1;
}

/* CONTENIDO */
.lf-blog-content {
  max-width: 1000px;
  margin: auto;
  padding: 70px 20px;
  line-height: 1.9;
  font-size: 18px;
}

/* TITULOS */
.lf-blog-content h2 {
  color: #00e0ff;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 34px;
  text-shadow: 0 0 10px rgba(0,224,255,0.3);
}

/* PARRAFOS */
.lf-blog-content p {
  margin-bottom: 25px;
  color: #ddd;
}

/* LISTAS */
.lf-blog-content ul {
  margin-bottom: 30px;
  padding-left: 25px;
}

.lf-blog-content li {
  margin-bottom: 12px;
}

/* CTA */
.blog-cta {
  text-align: center;
  margin-top: 60px;
}

.blog-cta a {
  display: inline-block;
  padding: 16px 38px;
  background: #00e0ff;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0,224,255,0.3);
}

.blog-cta a:hover {
  transform: scale(1.05);
  background: #00bcd4;
  box-shadow: 0 0 30px rgba(0,224,255,0.5);
}

/* MOBILE */
@media (max-width: 768px) {

  .lf-blog-hero {
    height: 350px;
  }

  .lf-blog-overlay h1 {
    font-size: 32px;
  }

  .lf-blog-overlay p {
    font-size: 16px;
  }

  .lf-blog-content {
    font-size: 16px;
    padding: 40px 16px;
  }

  .lf-blog-content h2 {
    font-size: 26px;
  }

}

.lf-blog-content li {
    color: #ffffff;
}

/* ITEM */
.lf-faq-item {
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10,10,30,0.85);
  border: 1px solid rgba(0,224,255,0.2);
  box-shadow: 0 0 15px rgba(0,224,255,0.08);
  transition: all 0.3s ease;
}

/* HOVER */
.lf-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,224,255,0.2);
}

/* PREGUNTA */
.lf-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #00e0ff;
  padding: 22px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* ICONO + */
.lf-faq-question span {
  font-size: 24px;
  transition: transform 0.3s ease;
}

/* RESPUESTA */
.lf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(0,0,0,0.25);
}

/* TEXTO RESPUESTA */
.lf-faq-answer p {
  color: #ddd;
  padding: 0 22px 22px;
  line-height: 1.8;
  font-size: 16px;
}

/* ACTIVO */
.lf-faq-item.active .lf-faq-answer {
  max-height: 500px;
}

.lf-faq-item.active .lf-faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {

  .lf-faq-section h2 {
    font-size: 32px;
  }

  .lf-faq-question {
    font-size: 16px;
    padding: 18px;
  }

  .lf-faq-answer p {
    font-size: 15px;
  }
}

/* CONTENEDOR TITULO FAQ */
.lf-faq-section h2,
.lf-faq-subtitle {
  position: relative;
  z-index: 2;
}

/* FONDO DIFUMINADO SOLO PARA TITULO */
.lf-faq-section::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 0 25px rgba(0,224,255,0.15);
}

/* NECESARIO PARA POSICIONAR */
.lf-faq-section {
  position: relative;
}

/* =========================
   AJUSTES MOBILE FAQ
========================= */
@media (max-width: 768px) {

  /* CONTENEDOR */
  .lf-faq-section {
    padding: 12px;
  }

  /* FONDO TITULO */
  .lf-faq-section::before {
    width: 95%;
    height: 150px;
    top: 0;
    border-radius: 18px;
  }

  /* TITULO */
  .lf-faq-section h2 {
    font-size: 24px;
    line-height: 1.3;
    padding-top: 10px;
  }

  /* SUBTITULO */
  .lf-faq-subtitle {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  /* BOTON FAQ */
  .lf-faq-question {
    font-size: 14px;
    line-height: 1.6;
    padding: 16px;
    gap: 12px;
    align-items: center;
  }

  /* TEXTO FAQ */
  .lf-faq-question {
    white-space: normal;
  }

  /* ICONO + */
  .lf-faq-question span {
    flex-shrink: 0;
    font-size: 20px;
  }

  /* RESPUESTAS */
  .lf-faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 16px 18px;
  }

}

/* ==========================================
   IMAGENES DE SECCIÓN (showcase)
   Agregado: la clase se usa en el HTML pero
   no tenía estilos propios. Ajusta a gusto.
========================================== */
.lf-showcase-image {
  margin: 30px 0;
}

.lf-showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0,224,255,0.1);
}/* End custom CSS */