.experiencia-section {
  width: 100%;
  background: #f8f9fa;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
}
.experiencia-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.experiencia-col {
  flex: 1;
}
.izquierda h2 {
  margin-bottom: 0.5rem;
  font-family: 'Onest', sans-serif;
  font-size: 40px;

}
.negrita {
  font-weight: 700;
}
.color-principal {
  color: #23c1d3;
  font-weight: 700;
}
.izquierda p {
  font-size: 17px;
  font-family: 'Onest', sans-serif;
  color: #222;
  margin-bottom: 28px;
}
.experiencia-datos {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.dato {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dato-num {
  color: #23c1d3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.dato-desc {
  font-size: 12px;
  color: #222;
  font-weight: 500;
}
.btn-experiencia {
  background: #23c1d3;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-experiencia:hover {
  background: #1ba2b3;
}
.derecha {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.derecha img {
  max-width: 100%;
  height: auto;
}

/* Responsive Mejorado */
@media (max-width: 900px) {
  .experiencia-container {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  .derecha {
    min-height: 120px;
  }
}
@media (max-width: 600px) {
  .experiencia-section {
    padding: 32px 0 24px 0;
  }
  .experiencia-container {
    padding: 0 10px;
    gap: 18px;
  }
  .izquierda h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .izquierda p {
    font-size: 1rem;
    text-align: center;
  }
  .experiencia-datos {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .dato {
    min-width: 0;
    width: 90%;
    max-width: 320px;
    padding: 14px 10px;
  }
  .btn-experiencia {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.98rem;
    margin-top: 10px;
  }
  .derecha {
    min-height: 80px;
  }
  .derecha img {
    max-width: 90vw;
    height: auto;
  }
}

/* Testimonios Swiper */
.testimonios-section {
    background: #f8f9fa;
  padding: 60px 0 80px 0;
}
.testimonios-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: 'Onest', sans-serif;

}
.testimonios-swiper {
  width: 100%;
  padding-bottom: 40px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.testimonio-card {
  max-width: 350px;
  width: 100%;
  min-height: 420px; /* Nuevo: altura mínima consistente */
  height: 420px;     /* Nuevo: altura fija para uniformidad */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinea todo el contenido a la izquierda */
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 24px 18px 32px 18px;
  border-radius: 18px;
  margin: 0 auto;
}

.testimonio-img-container {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 16px;
}

.testimonio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.testimonio-nombre, .testimonio-texto {
  width: 100%;
  text-align: left; /* Alinea el texto a la izquierda */
}

.testimonio-play {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 48px;   /* Más pequeño */
  height: 48px;  /* Más pequeño */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem; /* Más pequeño */
  color: #00bcd4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s;
  border: 2px solid #00bcd4; /* Opcional: borde para mejor visibilidad */
  z-index: 2;
}
.testimonio-play:hover {
  background: #00bcd4;
  color: #fff;
  border-color: #0097a7;
}
.testimonio-nombre {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 12px 0 6px 0;
}
.testimonio-texto {
  font-size: 1rem;
  color: #222;
  margin-bottom: 18px;
}
.btn-testimonio {
  align-self: flex-start; /* Botón alineado a la izquierda */
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 220px;
  background: #23c6e0;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 10px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,188,212,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-testimonio:hover {
  background: #00bcd4;
  box-shadow: 0 4px 16px rgba(0,188,212,0.18);
}
@media (max-width: 991px) {
  .testimonios-swiper {
    padding-bottom: 30px;
  }
  .testimonio-card {
    max-width: 95vw;
  }
}
@media (max-width: 767px) {
  .testimonios-title {
    font-size: 2rem;
  }
  .testimonio-img-container {
    height: 160px;
  }
  .testimonio-card {
    padding: 16px 12px 24px 12px;
    max-width: 90vw;
    min-height: 0;
    height: auto;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #00bcd4;
    opacity: 0.6;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

/* Sección: ¿Quieres vender con nosotros? */
.vender-con-nosotros-section {
    background: #fbb03b;
    border-radius: 28px 28px 0 28px;
    margin: 62px auto 67px auto;
    max-width: 1089px;
    padding: 50px 0px 64px 99px;
    position: relative;
    overflow: visible;
    min-height: 260px;
}

@media (max-width: 600px) {
  .vender-con-nosotros-section {
    padding: 28px 8px 0px 8px;
    border-radius: 18px 18px 0 18px;
    margin: 32px 0 32px 0;
    min-height: unset;
  }
  .vender-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  .vender-subtitle {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }
  .vender-con-nosotros-datos {
    gap: 10px;
    margin-bottom: 10px;
  }
  .vender-dato {
    min-width: 0;
    font-size: 0.95rem;
  }
  .dato-num {
    font-size: 1.3rem;
  }
  .dato-desc {
    font-size: 0.95rem;
  }
  .btn-vender-con-nosotros {
    padding: 10px 0;
    width: 100%;
    font-size: 1rem;
    max-width: 100%;
  }
  .vender-con-nosotros-img {
    margin-top: 16px;
    justify-content: center;
    align-items: center;
  }
  .vender-con-nosotros-info {
    padding: 0;
  }
}


.vender-con-nosotros-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  position: relative;
  height: 100%;
}

.vender-con-nosotros-info {
  color: #fff;
  max-width: 60%;
  z-index: 2;
}

.vender-title {
  font-size: 2.3rem;
  font-weight: 700;
  font-family: 'Onest', sans-serif;

  margin-bottom: 8px;
  line-height: 1.1;
}

.vender-subtitle {
  font-size: 1.1rem;
  color: #fff6d6;
  margin-bottom: 22px;
  font-weight: 400;
}

.vender-con-nosotros-datos {
  display: flex;
  gap: 48px;
  margin-bottom: 18px;
  justify-content: flex-start;
}

.vender-dato {
  text-align: center;
  min-width: 120px;
}

.dato-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: #18c6e3;
  display: block;
  margin-bottom: 2px;
}

.dato-desc {
  font-size: 1.05rem;
  color: #222;
  font-weight: 600;
  display: block;
}

.vender-btn-container {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.btn-vender-con-nosotros {
  background: #23c1d3;
  color: #fff;
  border: none;
  font-family: 'Onest', sans-serif;
  border-radius: 12px;
  padding: 10px 100px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-vender-con-nosotros:hover {
  background: #1ba2b3;
}

.vender-con-nosotros-img {
    position: absolute;
    right: -104px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    height: 100%;
    top: 131px;
}

.vender-con-nosotros-img img {
    max-width: 370px;
    width: auto;
    height: 528px;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
  .vender-con-nosotros-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vender-con-nosotros-info {
    max-width: 100%;
  }
  .vender-con-nosotros-datos {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .vender-btn-container {
    justify-content: center;
  }
  .vender-con-nosotros-img {
    position: static;
    margin-top: 20px;
    right: 0;
    height: auto;
    align-items: center;
    justify-content: center;
  }
  .vender-con-nosotros-img img {
    max-width: 367px;
  }
}

.contact-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}