.elementor-46646 .elementor-element.elementor-element-acbf9a5{--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;}/* Start custom CSS for html, class: .elementor-element-475bc33 */body {
  font-family: 'Poppins', helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #14264D;
  padding: 0;
  width: 100%;
}

.carousel-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.carousel-container {
  max-width: 1080px;
  display: flex;
  overflow-x: hidden;
  align-items: stretch;
  padding: 15px 0 20px 7px;
}

.card {
  display: flex;
  flex: 0 0 341px;
  flex-direction: column;
  vertical-align: top;
  width: 300px;
  margin-right: 20px;
  background: white;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 0 20px 20px 20px;
  text-align: left;
  box-sizing: border-box;
}

.card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px auto
}

.card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 0px 0;
}

.card h3 {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  margin: 6px 0 5px 0;
  color: #14264D;
  font-weight: 300;
  letter-spacing: 1px;
}

.card p {
  font-size: 14px;
  margin-top: 9px;
  text-align: left;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
  flex-grow: 0;
  font-weight: 300;
}

.card a {
  display: inline-block;
  margin-top: auto;
  font-size: 14px;
  color: #14264D;
  text-decoration: none;
}

.card a::before {
  content: "in ";
  font-weight: bold;
  margin-right: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #14264D;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

.carousel-btn:focus {
  outline: none;
  box-shadow: none;
}

.carousel-btn:hover {
  background: #e6e6e6;
}

.carousel-btn:focus,
.carousel-btn:active {
  background: white;
  color: #14264D;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .carousel-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    overflow-x: hidden;
  }

  .card {
    flex: 0 0 300px;
    width: 300px;
    margin-right: 30px;
  }

  .card:nth-child(3n) {
    margin-right: 20px;
  }

  .carousel-btn {
    display: flex;
  }

  .carousel-btn:hover {
    background: #e6e6e6;
  }

  /* Clic, focus, o active: igual que normal */
  .carousel-btn:focus,
  .carousel-btn:active {
    background: white;
    color: #14264D;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

/* Movil */
@media screen and (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  .carousel-container {
    width: 100vw;
    max-width: 300px;
    margin: 0 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    display: flex;
    flex-direction: row;
  }

  .card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
    margin: 0;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .carousel-dot.active {
    background: #14264D;
  }
}/* End custom CSS */