/* ===========================================
           RESET Y VARIABLES | test bub
=========================================== */

:root {
  --color-primary: #4B8B2D;
  --color-primary-dark: #1e5a6e;
  --color-secondary: #f5f5f5;
  --color-text: #333;
  --color-text-light: #666;
  --color-border: #e0e0e0;
  --color-white: #fff;
  --color-success: #4caf50;
  --transition: all 0.3s ease;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
}

/* ===========================================
           CONTENEDOR PRINCIPAL
=========================================== */

.destacados-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* ===========================================
           CABECERA CON CONTROLES
=========================================== */

.destacados-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: transparent;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.destacados-count {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}

.destacados-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.control-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.select-orden {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  background: var(--color-white);
  cursor: pointer;
  min-width: 180px;
  color: var(--color-text-light); /* Color gris para la opciÃ³n placeholder */
}

.select-orden:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Cuando tiene una opciÃ³n vÃ¡lida seleccionada */
.select-orden.has-value {
  color: var(--color-text); /* Negro cuando hay selecciÃ³n */
}

/* Color negro para las opciones del dropdown */
.select-orden option {
  color: var(--color-text); /* Color negro (#333) */
}

/* Color gris solo para el placeholder */
.select-orden option[disabled] {
  color: var(--color-text-light);
}

/* Botones de vista */
.view-buttons {
  display: flex;
  gap: 5px;
}

.view-buttons svg {
  color: #4B8B2D;
}
.view-buttons .view-btn.active svg {
  color: #fff;
}

.view-btn {
  width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.view-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.view-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.view-btn svg {
  width: 20px;
  height: 20px;
}

/* ===========================================
           CONTENEDOR DE VISTAS
=========================================== */

.view-container {
  display: none;
}

.view-container.active {
  display: block;
}

/* ===========================================
           VISTA GRID
=========================================== */

.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

/* ===========================================
           TARJETA DE INMUEBLE (GRID)
=========================================== */

.property-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.property-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* Carrusel de imÃ¡genes */
.card-carousel {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flechas del carrusel */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 10;
}

.property-card:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

.carousel-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--color-text);
}

/* Indicadores del carrusel */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--color-white);
}

/* Contador de fotos */
.carousel-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  z-index: 10;
}

/* Etiquetas sobre imagen */
.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: grid;
  gap: 5px;
  z-index: 10;
}

.badge {
  padding: 5px 12px;
  border-radius: 55px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-operacion {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.badge-tipo {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
}

/* Favoritos */
.btn-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  display: none;
}

.btn-favorite:hover {
  transform: scale(1.1);
}

.btn-favorite svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-light);
}

.btn-favorite.active svg {
  fill: #e53935;
  color: #e53935;
}

/* Contenido de la tarjeta */
.card-content {
  padding: 15px;
}

.card-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.card-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  line-height: 1.3;
  max-height: 2.6em; /* line-height (1.3) × 2 líneas */
  color: var(--color-text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
text-transform: lowercase;
}

.card-title::first-letter {
  text-transform: uppercase;
}

.card-title a {
  color: inherit;
  text-decoration: none !important;
}

.card-title a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .card-title {
    line-height: 2;
  }
}

/* 1 línea, line-height 1.3 */
-webkit-line-clamp: 1;
max-height: 1.3em;

/* 2 líneas, line-height 1.3 */
-webkit-line-clamp: 2;
max-height: 2.6em;

/* 3 líneas, line-height 1.3 */
-webkit-line-clamp: 3;
max-height: 3.9em;
.card-description {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CaracterÃ­sticas */
.card-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.feature svg {
  width: 16px;
  height: 16px;
}

/* Footer de la tarjeta */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-meta {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ===========================================
           PARTE CLICABLE DE LA TARJETA
=========================================== */

.property-card {
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.property-card .card-title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.property-card .card-carousel {
  position: relative;
  z-index: 2;
}

.property-card .carousel-arrow,
.property-card .btn-favorite {
  z-index: 3;
}

/* ===========================================
           VISTA LISTADO
=========================================== */

.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-view .property-card {
  display: flex;
  flex-direction: row;
}

.list-view .card-carousel {
  width: 350px;
  min-width: 350px;
  height: 220px;
}

.list-view .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.list-view .card-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.list-view .card-info {
  flex: 1;
}

.list-view .card-price-container {
  text-align: right;
}

.list-view .card-price {
  font-size: 1.5rem;
}

/* ===========================================
           VISTA MAPA
=========================================== */

.map-view {
  display: flex;
  gap: 20px;
  height: 700px;
}

#map-container {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

#map {
  width: 100%;
  height: 100%;
}

.map-sidebar {
  width: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-sidebar .property-card {
  cursor: pointer;
}

.map-sidebar .property-card.highlighted {
  border: 2px solid var(--color-primary);
}

.map-sidebar .card-carousel {
  height: 150px;
}

/* Popup del mapa */
.map-popup {
  min-width: 250px;
}

.map-popup-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.map-popup-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.map-popup-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.map-popup-link {
  display: inline-block;
  padding: 5px 15px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-top: 5px;
}

.map-popup-link:hover {
  background: var(--color-primary-dark);
}

.leaflet-container a {
  /* Arreglo de texto en boton de tarjeta en mapa */
  color: #fff !important;
}

/* ===========================================
           SIN RESULTADOS
=========================================== */

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--color-white);
  border-radius: var(--border-radius);
}

.no-results svg {
  width: 80px;
  height: 80px;
  color: var(--color-border);
  margin-bottom: 20px;
}

.no-results h3 {
  margin-bottom: 10px;
  color: var(--color-text);
}

.no-results p {
  color: var(--color-text-light);
}

/* ===========================================
           RESPONSIVE
=========================================== */

@media (max-width: 992px) {
  .map-view {
    flex-direction: column;
    height: auto;
  }

  #map-container {
    height: 400px;
  }

  .map-sidebar {
    width: 100%;
    max-height: 500px;
  }

  .list-view .property-card {
    flex-direction: column;
  }

  .list-view .card-carousel {
    width: 100%;
    min-width: 100%;
  }

  .list-view .card-main {
    flex-direction: column;
    gap: 15px;
  }

  .list-view .card-price-container {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .destacados-header {
    flex-direction: column;
    align-items: stretch;
  }

  .destacados-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .control-label {
    width: 100%;
  }

  .select-orden {
    width: 100%;
    min-width: unset;
  }

  .view-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  /* Ocultar botÃ³n mapa en mÃ³vil */
  .view-btn[data-view="map"] {
    display: none;
  }

  .grid-view {
    grid-template-columns: 1fr;
  }

  .destacados-container {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #bloque_buscador {
    padding: 20px;
  }

  .adv1-holder > div {
    flex: 0 0 100%;
  }

  .grupbuttons {
    flex-direction: column;
  }

  #advanced_submit_2,
  #extra {
    width: 100%;
  }

  .destacados-header {
    margin-bottom: 15px;
    padding: 15px 0px;
  }
  .view-buttons {
    display: none;
  }
}

/* Arreglos para ainctar en listado buscador */

/* Badge Exclusiva */
.badge-exclusiva {
  background: #EC670E;
  color: var(--color-white);
}

/* Features en grid 2 columnas */
.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 15px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text);
}

/* Footer rediseÃ±ado */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.card-referencia {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 4px 10px;
  border-radius: 55px;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* =============================================
   INTEGRACIÃ“N SMP - Estilos iAGestiÃ³n / Propiedades

   Estas reglas deberian estar en style.css del child de functions, 
   pero por temas de incompatibilidad con el diseÃ±o actual, se han dejado aquÃ­ para no romper 
   el diseÃ±o actual del resto de la pÃ¡gina.
   ============================================= */

/* =============================================
   HEADER Y PÃGINA DE PROPIEDADES
   ============================================= */

#top-bar {
  padding: 0;
  margin-top: -1px;
}

/* =============================================
   PAGINACIÃ“N Y ORDENACIÃ“N
   ============================================= */

.paginacion {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 22px;
  margin-top: 3%;
  background: white;
  margin-bottom: 5%;
  border-radius: 0px;
}

.Bfl {
  margin: 0 3%;
  font-weight: bold;
  color: black;
}

#resultsyorden h1,
#resultsyorden1 h3 {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  align-items: center;
  font-size: 30px !important;
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

#resultsyorden1 h3 {
  font-size: 20px !important;
}

#resultsyorden1 {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  align-items: center;
}

#resultsyorden h1 {
  margin-left: 10px;
}

#ordenacion {
  display: block;
  height: 40px;
  color: black;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #eee;
  border-radius: 3px;
  box-shadow: none;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  margin-bottom: 15px;
}

#listing_ajax_container {
  margin-top: 150px;
}

/* =============================================
   BUSCADOR - ESTILO NUEVO
   ============================================= */

#bloque_buscador {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -50px !important;
  margin-bottom: 20px;
  background: #4B8B2D;
  padding: 30px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 0px;
  border: none;
  position: relative;
}
.search_wrapper {
  width: 100%;
}

.adv-search-1 {
  width: 100%;
}

#adv-search-header-1 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.adv1-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 15px;
  padding: 0;
}

.adv1-holder > div {
  flex: 0 0 calc(33.333% - 10px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* Labels del buscador */
.field-label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  display: block;
  font-family: "Roboto", sans-serif;
}

/* Campos del buscador */
#bloque_buscador select,
#bloque_buscador input[type="text"],
#bloque_buscador input[type="number"],
#bloque_buscador .form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #fff;
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  height: auto;
}

#bloque_buscador select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

#bloque_buscador select:focus,
#bloque_buscador input:focus {
  border-color: #333 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 168, 138, 0.15);
}

#bloque_buscador input::placeholder {
  color: #999;
}

/* Botones del buscador */
.grupbuttons {
  flex: 0 0 100% !important;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#advanced_submit_2 {
  min-width: 200px;
  background-color: #fff;
  color: #333;
  padding: 14px 30px;
  border: none;
  border-radius: 55px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#advanced_submit_2:hover {
  background-color: #333;
  color: #fff;
}

#extra {
  background-color: #fff;
  color: #666;
  padding: 14px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 55px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Roboto", sans-serif;
  margin-top: 0 !important;
}

#extra:hover {
  border-color: #ccc;
  color: #333;
}

/* Opciones extra del buscador */
#extraOC {
  width: 100%;
  margin-top: 50px;
  padding: 20px;
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
}

#extraOC.hidden {
  display: none !important;
}

#extraOC > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

#extraOC label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

#extraOC input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}

#extraOC select#EstadoCons {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: white;
  font-size: 14px;
  color: #555;
}

/* Filtros seleccionados (Pills) */
.filtros-activos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filtro-pill {
  display: inline-flex;
  align-items: center;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #333;
  font-family: "Roboto", sans-serif;
}

.filtro-pill .remove {
  margin-left: 8px;
  cursor: pointer;
  color: #999;
  font-weight: bold;
}

.filtro-pill .remove:hover {
  color: #333;
}

/* =============================================
   UTILIDADES
   ============================================= */

.hidden {
  display: none;
}

#scroll-top {
  background-color: #222;
  border: 1px solid transparent;
}

.titnegro {
  color: #000;
}

button#wpforms-submit-119:hover {
  background-color: #ed9d81 !important;
}

.elementor-element.elementor-element-3a6230c.e-grid.e-con-full.e-con.e-parent.e-lazyloaded {
  z-index: 999;
  margin-top: -20px;
}

/* =============================================
   RESPONSIVE - TABLETS
   ============================================= */

@media (max-width: 1200px) {
  .adv1-holder > div {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 1024px) {
  .card-carrusel {
    height: 30vh;
  }
}

/* =============================================
   RESPONSIVE - MÃ“VILES
   ============================================= */

@media (max-width: 767px) {
  #bloque_buscador {
    padding: 20px;
  }

  .adv1-holder > div {
    flex: 0 0 100%;
  }

  .grupbuttons {
    flex-direction: column;
  }

  #advanced_submit_2,
  #extra {
    width: 100%;
  }
}

/* Arreglo de boton Contacto en Inicio */
.elementor-465
  .elementor-element.elementor-element-88db787
  .elementor-button:hover,
.elementor-465
  .elementor-element.elementor-element-88db787
  .elementor-button:focus {
  background-color: #016450;
  color: #fff;
}

/* Arreglo de color en boton de cookies */
.cky-btn-reject,
.cky-btn-preferences {
  color: #948473 !important;
  background: transparent;
  border: 2px solid #948473;
  border-color: #948473 !important;
}

/* Arreglo linea encima del menu */
#site-header {
  border-bottom: none;
}

/* Arreglo flechas zoom +/- de mapa */
.leaflet-control-zoom a {
  background-color: #016450 !important;
}

/* Arreglo botones BUSCAR y OPCIONES en mv */

@media (max-width: 640px) {
  #bloque_buscador .adv1-holder > div[style*="flex:0 0 auto"] {
    flex: 1 1 100% !important;
    width: 100%;
  }
  #bloque_buscador .adv1-holder > div[style*="flex:0 0 auto"] input,
  #bloque_buscador .adv1-holder > div[style*="flex:0 0 auto"] button {
    width: 100%;
  }

  .destacados-header,
  .property-card,
  .paginacion {
    width: 98%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .destacados-header {
    margin-top: -2rem;
  }

  .card-carousel {
    margin-top: 10px;
  }
}

/* =============================================
   FIX FLECHAS CARRUSEL
   ============================================= */

.carousel-arrow svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  stroke: #333333 !important;
  fill: none !important;
  flex-shrink: 0;
}

/* MÃ³vil: mostrar siempre sin hover */
@media (max-width: 1024px) {
  .carousel-arrow {
    opacity: 1 !important;
  }
}

.carousel-arrow:focus,
.carousel-arrow:focus-visible,
.carousel-arrow:active {
  outline: none !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: none !important;
}
