.elementor-2644 .elementor-element.elementor-element-ca173d8{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-2644 .elementor-element.elementor-element-fb292b3{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-2644 .elementor-element.elementor-element-c6bdab2{--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-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-d84b074 *//* ============================= */
/* SECCION GENERAL */
/* ============================= */
.seccion-general {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* ============================= */
/* TITULOS */
/* ============================= */
.titulo {
  font-size: 32px;
  font-weight: 700;
  color: #245183;
  text-align: center;
}

.subtitulo {
  font-size: 22px;
  font-weight: 600;
  color: #245183;
  margin-top: 50px;
}

.linea {
  width: 60px;
  height: 3px;
  background: #1FC8BE;
  margin: 15px auto 30px;
}

/* ============================= */
/* TEXTOS */
/* ============================= */
.texto {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.texto-institucional {
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* TEXTO DESTACADO */
.texto-institucional.highlighted {
  background: #f8fbfb;
  border-left: 4px solid #1FC8BE;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
}

/* ============================= */
/* CONTENEDOR SARLAFT / POLITICAS */
/* ============================= */
.sarlaft-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
}

/* LIMPIEZA DE ESTILOS DEL TEMA */
.sarlaft-box,
.sarlaft-box p,
.sarlaft-box strong {
  background-image: none !important;
  box-shadow: none !important;
}

/* ============================= */
/* BOTON DESCARGA */
/* ============================= */
.boton {
  display: inline-block;
  margin-top: 20px;
  background: #1FC8BE;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ICONO DOCUMENTO */
.boton::before {
  content: "📄 ";
}

/* HOVER */
.boton:hover {
  background: #17a89f;
  transform: translateY(-2px);
}

/* ============================= */
/* CARDS */
/* ============================= */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #eef2f5;
  transition: 0.3s;
}

.card.destacada {
  border-left: 5px solid #1FC8BE;
}

.card.suave {
  background: #f8fbfb;
}

/* ============================= */
/* GRID */
/* ============================= */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

/* ============================= */
/* IMAGEN */
/* ============================= */
.img-box {
  border-radius: 20px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ============================= */
/* LISTAS */
/* ============================= */
.lista {
  padding-left: 20px;
}

.lista li {
  margin-bottom: 8px;
}

/* ============================= */
/* ACORDEON */
/* ============================= */
.acordeon-btn {
  width: 100%;
  padding: 15px;
  background: #f8fbfb;
  color: #245183;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.acordeon-btn:hover {
  background: #1FC8BE;
  color: #ffffff;
}

.acordeon-content {
  display: none;
  padding: 20px;
  border: 1px solid #eef2f5;
  border-radius: 10px;
  margin-top: 10px;
  background: #ffffff;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media(max-width:768px){

  .titulo {
    font-size: 26px;
  }

  .subtitulo {
    font-size: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .img-box img {
    height: 200px;
  }

  .boton {
    width: 100%;
    text-align: center;
  }

}/* End custom CSS */