/* CSS Document */


.titulo-h1-contenido{
  font-family: var(--fuente);
  color: var(--terciario);
  font-weight: 800;
  font-size: 32px;
}

.subtitulo-h2-contenido{
    color: var(--parrafo);
  font-family: var(--fuente);
  font-weight: 800;
  font-size: 25px;
     word-wrap: break-word; /* Permite que las palabras largas se rompan */
    overflow-wrap: break-word; /* Hace lo mismo, pero es más moderno */
    white-space: normal; /* Asegura que el texto no se mantenga en una sola línea */
  margin: 0;
}

.subtitulo-h3-contenido {
  color: var(--parrafo);
  font-family: var(--fuente);
  font-weight: 500;
  word-wrap: break-word; /* Permite que las palabras largas se rompan */
  overflow-wrap: break-word; /* Hace lo mismo, pero es más moderno */
  white-space: normal; /* Asegura que el texto no se mantenga en una sola línea */
  font-size: 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  text-align: center;
  margin: 0px auto 20px auto;
  padding-top: 10px;
  border-bottom: 1px solid #d5d4d3;
}
.cke_editable{
  margin: 10px 20px;
}
.cuerpo_contenido p,
.cke_editable p {
    color: var(--parrafo);
    font-weight: 500;
  font-size: 19px;
  font-family: var(--fuente);
     word-wrap: break-word; /* Permite que las palabras largas se rompan */
    overflow-wrap: break-word; /* Hace lo mismo, pero es más moderno */
    white-space: normal; /* Asegura que el texto no se mantenga en una sola línea */
}
.cuerpo_contenido,
.cke_editable {
  color: var(--parrafo);
}
 .contenedor_detalle p ul li{
    color: var(--parrafo);
    font-weight: 500;
  font-size: 19px;
  font-family: var(--fuente);
}

.contenedor_detalle p a{
    color: var(--primario);
    text-decoration: underline;
    
}
.contenedor_detalle p a:hover,
.contenedor_detalle p a:link {
   color: var(--primario);
    text-decoration: underline;
    font-weight: 600;
    
}

.contenedor_detalle p img{
  display: block;
  margin: 15pzrem auto;
}



.modulo-plantilla-1 {
  background: var(--blanco);
  font-size: 16px;
  margin-bottom: 30px;
  border: var(--grisclaro) solid 0.1rem;
  border-radius: 0.5rem;
  padding: 25px 35px;
  -webkit-box-shadow: 0rem 0.2rem 2rem 0.2rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0rem 0.2rem 2rem 0.2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0rem 0.2rem 2rem 0.2rem rgba(0, 0, 0, 0.1);
}
.modulo-plantilla-1 .nombre_principal {
  font-size: 25px;
  display: flex;
  font-weight: 800;
  color: var(--primario);
  align-items: center;
  justify-content: space-between;
}
.modulo-plantilla-1 .nombre_principal p {
  font-size: 15px;
  color: var(--negro);
  text-transform: uppercase;
  font-weight: 600;
}
.modulo-plantilla-1 .nombre_principal .boton_mas_servicios {
  font-size: 14px;
  padding: 5px 15px;
}


.boton_mas_servicios {
  background: transparent;
  border: 0.2rem solid var(--primario);
  padding: 0.8rem 2rem;
  color: var(--primario);
  font-weight: 600;
  display: inline-block;
  border-radius: 0.5rem;
  margin: 1rem 0;
  transition: all 0.5s ease-in-out;
}
.boton_mas_servicios:hover,
.boton_mas_servicios:focus,
.boton_mas_servicios:active {
  background: var(--primario);
  color: var(--blanco);
  transition: all 0.5s ease-in-out;
}
.boton_mas_servicios a {
  color: var(--primario);
}

@media (max-width: 992px) {
  .subtitulo_seccion .seccion {
    font-size: 1.8rem;
    text-align: center;
    line-height: 2.2rem;
  }
  .modulo-plantilla-1 .nombre_principal {
    font-size: 2rem;
    flex-direction: column;
    text-align: center;
  }
  .contenedor_detalle_plantilla {
    padding-left: 0;
  }
}

/*Reseña*/
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px 0;
}
/* Línea central */
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primario);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.timeline-container {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}
.timeline-container::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 4px solid var(--primario);
  top: 20px;
  border-radius: 50%;
  z-index: 1;
}
.left {
  left: 0;
}
.right {
  left: 50%;
}
.left::after {
  right: -10px;
}
.right::after {
  left: -10px;
}
.content-timeline {
  padding: 20px;
  background-color: var(--blanco);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .timeline-container {
    width: 100%;
    padding-left: 50px;
    padding-right: 25px;
  }
  .timeline-container::after {
    left: 15px;
  }
  .left,
  .right {
    left: 0;
  }
}
@media (max-width: 768px) {
  .timeline::before {
    content-timeline: none !important;
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .timeline-container {
    width: 100%;
    margin-left: 0;
  }
  .timeline-container::before {
    left: 15px;
    /* Ajusta la línea azul */
  }
  .timeline-container.left::after,
  .timeline-container.right::after {
    left: 10px;
  }
}
.content-timeline:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.cke_combo_text {
    font-size: 12px !important;
    padding: 4px 8px;
}

.cke_combo_open {
    font-size: 12px !important;
    padding: 4px 8px;
}

.cke_combo_button {
    min-width: 100px; /* Ajusta el ancho del botón */
}

.cke_combo__styles .cke_combo_text {
    white-space: nowrap; /* Evitar salto de línea */
}

.cke_iframe {
    border: none;
    width: 100%;
    height: 300px;
}

.cuerpo_contenido img,
.contenedor_detalle img,
.cke_editable img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto ;
}

.cuerpo_contenido iframe,
.contenedor_detalle iframe,
.cke_editable iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  display: block;
}

.contenedor-botones{
  display: flex;
    min-width: 500px;
    gap: 5px;
    justify-content: center;
    align-items: center;
}    