.carrusel-noticias { position: relative; width: 100%; margin: 0 auto; }
.carrusel-slides { display: none; grid-template-columns: repeat(3, 1fr); gap: 32px; }
#slide1:checked ~ .carrusel-noticias .slide-1,
#slide2:checked ~ .carrusel-noticias .slide-2,
#slide3:checked ~ .carrusel-noticias .slide-3,
#slide4:checked ~ .carrusel-noticias .slide-4 { display: grid; }
.carrusel-controles { text-align: center; margin-top: 18px; }
.carrusel-controles label {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.flecha { display: none; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(8,202,232,0.85); color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-size: 2em; cursor: pointer; z-index: 2; transition: background 0.2s; box-shadow: 0 2px 8px rgba(8,202,232,0.18); border: none; opacity: 0.85; }
.flecha-izq { left: -24px; }
.flecha-der { right: -24px; }
#slide1:checked ~ .carrusel-noticias #carrusel-flecha-izq-1,
#slide1:checked ~ .carrusel-noticias #carrusel-flecha-der-1 {
  display: flex;
}
#slide2:checked ~ .carrusel-noticias #carrusel-flecha-izq-2,
#slide2:checked ~ .carrusel-noticias #carrusel-flecha-der-2 {
  display: flex;
}
#slide3:checked ~ .carrusel-noticias #carrusel-flecha-izq-3,
#slide3:checked ~ .carrusel-noticias #carrusel-flecha-der-3 {
  display: flex;
}
#slide4:checked ~ .carrusel-noticias #carrusel-flecha-izq-4,
#slide4:checked ~ .carrusel-noticias #carrusel-flecha-der-4 {
  display: flex;
}
@media (max-width: 900px) {
  .flecha { display: none !important; }
}
#slide1:checked ~ .carrusel-noticias .control-1,
#slide2:checked ~ .carrusel-noticias .control-2,
#slide3:checked ~ .carrusel-noticias .control-3,
#slide4:checked ~ .carrusel-noticias .control-4 {
  background: #08cae8;
}
@media (max-width: 1100px) {
  .carrusel-slides { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .carrusel-slides { grid-template-columns: 1fr; }
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
#sub-footer {
  flex-shrink: 0;
  background: #f2f2f2;
  margin-top: 0;
}


.bg-block {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f2f2f2;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}

.team-member {
  background: #f2f2f2;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 100%;
  box-shadow: 0 2px 16px rgba(8,202,232,0.10);
}

.team-member img {
  max-width: 100%;
  height: 110px;
  width: 110px;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member .name {
  margin-top: 10px;
  font-weight: bold;
}

.team-member .btn {
  background-color: #08cae8;
  color: white;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 24px;
  display: inline-block;
  font-size: 1.08em;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: 0;
  min-width: 100px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(8,202,232,0.10);
}

.team-member .btn:hover {
  background-color: #099bb2;
  box-shadow: 0 4px 16px rgba(8,202,232,0.18);
}

#services-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.services-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 24px;
}
.service-col {
  flex: 0 1 25%;
  width: 480px;
  max-width: 520px;
  min-width: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.service {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(85,222,239,0.13);
  border: 1px solid #e6f3f7;
  padding: 20px 18px 12px 18px;
  min-height: 200px;
  margin-bottom: 0;
}
#services-block .col-xs-12.text-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
}
#services-block .button {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .services-row {
    max-width: 1200px;
    gap: 18px;
  }
  .service-col {
    max-width: 420px;
    min-width: 280px;
  }
}
@media (max-width: 1100px) {
  .services-row {
    max-width: 900px;
    gap: 10px;
  }
  .service-col {
    max-width: 98vw;
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .services-row {
    flex-direction: column;
    align-items: center;
    max-width: 98vw;
  }
  .service-col {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
  }
}

.testimonios-component {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
}
.testimonio {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(85,222,239,0.13);
  border: 1px solid #e6f3f7;
  padding: 28px 24px 18px 24px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonio-img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 2px solid #55deef;
  margin-bottom: 16px;
}
.testimonio-nombre {
  margin: 0 0 4px 0;
  color: #1a9db6;
  font-size: 1.1em;
  font-weight: 700;
}
.testimonio-empresa {
  font-size: 0.98em;
  color: #888;
  margin-bottom: 10px;
}
.testimonio-frase {
  font-style: italic;
  color: #444;
  font-size: 1.08em;
}
@media (max-width: 700px) {
  .testimonios-component {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .testimonio {
    width: 98vw;
    max-width: 350px;
  }
}
.home
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
.testimonials-fila {
display: flex;
gap: 15px;
justify-content: center;
align-items: stretch;
margin-top: 32px;
padding: 32px;
}
.tarjetas {
background: #fff;
border-radius: 16px;
box-shadow: 0 2px 16px rgba(85,222,239,0.13);
border: 1px solid #e6f3f7;
padding: 28px 24px 18px 24px;
width: 50%;
max-width: 350px;
min-width: 260px;
display: flex;
flex-direction: column;
align-items: center;
margin: 0 auto;
transition: box-shadow 0.2s;
justify-content: flex-start;
min-height: 340px;
flex: 1 1 0;
box-sizing: border-box;
}
.tarjetas:hover {
box-shadow: 0 4px 24px rgba(85,222,239,0.22);
}
.tarjetas .descripcion {
font-style: italic;
color: #1a9db6 !important;
margin-bottom: 18px;
text-align: center;
font-size: 1.08em;
min-height: 60px;
flex-grow: 1;
width: 100%;
display: flex;
align-items: flex-start;
justify-content: center;
}
.tarjetas img {
border-radius: 50%;
margin-bottom: 12px;
border: 2px solid #55deef;
margin-top: 0;
width: 90px;
height: 90px;
object-fit: cover;
}
.tarjetas .nombre {
font-style: italic;
color: #1a9db6 !important;
margin-bottom: 18px;
text-align: center;
font-size: 1.08em;
min-height: 60px;
width: 100%;
padding: 0 8px;
box-sizing: border-box;
background: none;
border-radius: 8px;
align-self: stretch;
display: block;
}
.tarjetas .posicion{
font-style: italic;
color: #1a9db6 !important;

}
p.posicion {
margin-top: -45px;
}

@media (max-width: 900px) {
.testimonials-fila {
flex-direction: column;
gap: 18px;
align-items: center;
}
.tarjetas {
max-width: 98vw;
width: 100%;
min-height: unset;
}
}
    .tarjetaNoticia a,
      .tarjetaNoticia h4 a,
      .tarjetaNoticia .read-more-wrapper a {
        text-decoration: none;
        color: #08cae8;
        transition: color 0.2s;
      }
      .tarjetaNoticia a:hover,
      .tarjetaNoticia h4 a:hover,
      .tarjetaNoticia .read-more-wrapper a:hover {
        color: #099bb2;
        text-decoration: underline;
      }
      .tarjetasgrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        justify-content: center;
        align-items: stretch;
        margin: 32px auto;
        max-width: 1200px;
      }
      .tarjetaNoticia {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(85,222,239,0.13);
        border: 1px solid #e6f3f7;
        padding: 0 0 18px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: box-shadow 0.2s;
        justify-content: flex-start;
        min-height: 420px;
        box-sizing: border-box;
        overflow: hidden;
        padding: 15px;
      }
      .tarjetaNoticia:hover {
        box-shadow: 0 4px 24px rgba(85,222,239,0.22);
      }
      .tarjetaNoticia img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        border-bottom: 1px solid #e6f3f7;
      }
      .tarjetaNoticia .caption {
        padding: 18px 18px 0 18px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }
      .tarjetaNoticia .mt-date {
        color: #1a9db6;
        font-size: 0.98em;
        margin-bottom: 6px;
      }
      .tarjetaNoticia h4 {
        font-size: 1.1em;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: #222;
      }
      .tarjetaNoticia p {
        font-size: 1em;
        color: #444;
        margin-bottom: 10px;
      }
      .tarjetaNoticia .read-more-wrapper {
        margin-top: auto;
      }
      @media (max-width: 1100px) {
        .tarjetasgrid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 700px) {
        .tarjetasgrid {
          grid-template-columns: 1fr;
        }
      }
      #testimonio-inicio {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #08cae8;
  box-sizing: border-box;
}

#team-block .team-member .hover {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: static !important;
  background: none !important;
  box-shadow: none !important;
  transition: none !important;
}
#team-block .team-member:hover .hover,
#team-block .team-member:focus .hover {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: static !important;
  background: none !important;
  box-shadow: none !important;
  transition: none !important;
}