.elementor-1010 .elementor-element.elementor-element-d86389b{--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-1010 .elementor-element.elementor-element-2a2341b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-1010 .elementor-element.elementor-element-02619f4{--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-560757c */.seccion-general {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* TITULOS */
.titulo {
  font-size: 34px;
  font-weight: 700;
  color: #245183;
  text-align: center;
}

.subtitulo {
  font-size: 24px;
  font-weight: 600;
  color: #245183;
  margin: 50px 0 20px;
  text-align: center;
}

.titulo-mini {
  color: #1FC8BE;
  font-size: 20px;
  margin-bottom: 10px;
}

.linea {
  width: 60px;
  height: 3px;
  background: #1FC8BE;
  margin: 15px auto 35px;
}

/* TEXTOS */
.texto {
  color: #666;
  line-height: 1.8;
  text-align: justify;
  margin: 0 auto 20px;
  width: 100%;
}

/* CARDS */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #eef2f5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.card.destacada {
  border-left: 5px solid #1FC8BE;
}

.card.suave {
  background: #f8fbfb;
}

/* BOTON */
.boton {
  display: inline-block;
  margin-top: 15px;
  background: #245183;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(36,81,131,0.15);
}

.boton:hover {
  background: #1FC8BE !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  margin-top: 45px;
}

/* IMAGEN */
.img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* LISTAS */
.lista {
  padding-left: 20px;
  text-align: left;
}

.lista li {
  margin-bottom: 10px;
  color: #555;
}

/* ACORDEON */
.acordeon-box {
  margin-top: 40px;
}

.acordeon-btn {
  width: 100%;
  padding: 16px;
  background: #f8fbfb !important;
  border: none !important;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #245183 !important;
  transition: 0.3s;
}

.acordeon-btn:hover,
.acordeon-btn:focus,
.acordeon-btn:active {
  background: #1FC8BE !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
}

.acordeon-content {
  display: none;
  padding: 20px;
  border: 1px solid #eef2f5;
  border-radius: 12px;
  margin-top: 10px;
  background: #ffffff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .titulo {
    font-size: 28px;
  }

  .subtitulo {
    font-size: 20px;
  }

  .img-box img {
    height: auto;
  }
}/* End custom CSS */