.acf-swiper-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.slide-grid .swiper-slide {
  text-align: left;
}

/* === GRID 40/60 === */
.acf-swiper-container .slide-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}

.acf-swiper-container .slide-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

@media(max-width: 768px) {
  .acf-swiper-container .slide-text h2 {
    font-size: 20px;
  }
}

.acf-swiper-container .slide-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

@media(max-width: 768px) {
  .acf-swiper-container .slide-text p {
    font-size: 14px;
  }
}

.acf-swiper-container .slide-text .btn {
  background: #E30614;
  color: #fff;
  padding: 12px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}

.acf-swiper-container .slide-text .btn:hover {
  background: #C70511;
}

/* === IMAGEN === */
.acf-swiper-container .slide-image {
  display: flex;
  justify-content: flex-end;
}

.acf-swiper-container .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mantiene proporción */
.acf-swiper-container .slide-image {
  aspect-ratio: 3 / 2;
  width: 100%;
}

/* === CONTROLES === */
.acf-swiper-container .slide-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 20px;
  margin-inline: auto;
  padding-left: 40%;
}

.acf-swiper-container .slide-count {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  justify-self: start;
}

.acf-swiper-container .slide-nav {
  justify-self: end;
  display: flex;
  gap: 18px;
}

.acf-swiper-container .swiper-button-prev,
.acf-swiper-container .swiper-button-next {
  position: static !important;
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: #E30614;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s ease;
}

/* ====== FLECHAS PERSONALIZADAS (SVG INLINE) ====== */

/* Flecha Izquierda */
.acf-swiper-container .swiper-button-prev::after {
    content: "";
    width: 36px;
    height: 36px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Cg opacity='0.75'%3E%3Cmask id='path-2-inside-1_3813_6532' fill='white'%3E%3Cpath d='M20.375 27.8828L9.73006 17.9563L19.6594 7.30829L30.3044 17.2348L20.375 27.8828Z'/%3E%3C/mask%3E%3Cpath d='M9.73006 17.9563L7.06802 15.4739L4.58563 18.1359L7.24767 20.6183L9.73006 17.9563ZM20.375 27.8828L22.8574 25.2208L12.2124 15.2942L9.73006 17.9563L7.24767 20.6183L17.8926 30.5449L20.375 27.8828ZM9.73006 17.9563L12.3921 20.4386L22.3215 9.79068L19.6594 7.30829L16.9974 4.8259L7.06802 15.4739L9.73006 17.9563Z' fill='%23E30614' mask='url(%23path-2-inside-1_3813_6532)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Flecha Derecha */
.acf-swiper-container .swiper-button-next::after {
    content: "";
    width: 36px;
    height: 36px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Cg opacity='0.75'%3E%3Cmask id='path-2-inside-1_3813_6534' fill='white'%3E%3Cpath d='M15.7734 6.69531L26.0684 16.9903L15.7734 27.2852L5.47848 16.9903L15.7734 6.69531Z'/%3E%3C/mask%3E%3Cpath d='M26.0684 16.9903L28.6422 19.5641L31.216 16.9903L28.6422 14.4164L26.0684 16.9903ZM15.7734 6.69531L13.1996 9.26914L23.4946 19.5641L26.0684 16.9903L28.6422 14.4164L18.3473 4.12149L15.7734 6.69531ZM26.0684 16.9903L23.4946 14.4164L13.1996 24.7114L15.7734 27.2852L18.3473 29.8591L28.6422 19.5641L26.0684 16.9903Z' fill='%23E30614' mask='url(%23path-2-inside-1_3813_6534)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Quitamos estilos heredados */
.acf-swiper-container .swiper-button-prev,
.acf-swiper-container .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
    background: transparent !important;
    color: transparent !important;
}

.acf-swiper-container .swiper-button-prev:hover,
.acf-swiper-container .swiper-button-next:hover {
  color: #C70511;
}

.acf-swiper-container .swiper-pagination {
  display: none;
}

/* === FIX SWIPER INTERNO === */
.acf-swiper-container .slide-text .swiper,
.acf-swiper-container .slide-image .swiper {
  width: 100%;
  height: 100%;
}
.acf-swiper-container .slide-text {
  display: flex;
  padding-right: 60px;
  align-items: center;
}

.wp-paragraph-faqs-about{
  font-weight: 400 !important;
}

/* === MOBILE FIX === */
@media (max-width: 767px) {
  .wp-paragraph-faqs-about {
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  .acf-swiper-container .slide-grid {
    display: block;
  }

  .acf-swiper-container .slide-text {
    order: 1;
    text-align: center;
    padding: 0 20px;
    min-height: auto;
    margin-bottom: 30px;
  }

  .acf-swiper-container .slide-image {
    order: 2;
    justify-content: center;
    aspect-ratio: auto;
  }

  .acf-swiper-container .slide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 320px;
  }

  .acf-swiper-container .slide-controls {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-top: 10px;
    padding: 0 20px;
  }

  .acf-swiper-container .slide-nav {
    display: none;
  }

  .acf-swiper-container .swiper-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0px !important;
    bottom: 0 !important;
    position: relative;
    width: 100%;
  }

  .acf-swiper-container .swiper-pagination-bullet {
    background: #ddd;
    width: 20px;
    height: 4px;
    border-radius: 3px;
    opacity: 1;
    margin: 0 4px;
    transition: all .3s ease;
  }

  .acf-swiper-container .swiper-pagination-bullet-active {
    background: #E30614;
    width: 26px;
  }
}
