/* =========================================================
   SEÇÃO DE SHOWROOMS
========================================================= */

.arkos-stores {
  position: relative;
  padding: 50px 0 40px;
  overflow: hidden;
  background-color: #f4f4f2;
}

.arkos-stores__header {
  max-width: 650px;
  margin-bottom: 36px;
}

.arkos-stores__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #cc3a32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arkos-stores__title {
  max-width: 620px;
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.arkos-stores__description {
  max-width: 560px;
  margin: 0;
  color: #686868;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================================================
   CARROSSEL PRINCIPAL
========================================================= */

.arkos-stores__carousel-wrapper {
  position: relative;
  padding-bottom: 54px;
}

.arkos-stores__swiper {
  width: 100%;
  overflow: visible;
}

.arkos-stores__swiper > .swiper-wrapper {
  align-items: stretch;
}

.arkos-stores__swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
}

/* =========================================================
   CARD
========================================================= */

.arkos-store-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.07);
}

.arkos-store-card--featured {
  border-color: rgba(204, 58, 50, 0.28);
}

/* =========================================================
   GALERIA DE IMAGENS
========================================================= */

.arkos-store-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #dddddd;
}

.arkos-store-card__gallery,
.arkos-store-card__gallery .swiper-wrapper,
.arkos-store-card__gallery .swiper-slide {
  width: 100%;
  height: 100%;
}

.arkos-store-card__gallery {
  position: relative;
}

.arkos-store-card__gallery .swiper-slide {
  overflow: hidden;
}

.arkos-store-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.arkos-store-card:hover .arkos-store-card__image {
  transform: scale(1.025);
}

/* =========================================================
   SELO DE DESTAQUE
========================================================= */

.arkos-store-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  padding: 8px 13px;
  border-radius: 999px;
  background-color: #cc3a32;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* =========================================================
   CONTEÚDO DO CARD
========================================================= */

.arkos-store-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.arkos-store-card__title {
  margin: 0 0 20px;
  color: #111111;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.arkos-store-card__information {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arkos-store-card__item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: #696969;
  font-size: 14px;
  line-height: 1.45;
}

.arkos-store-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #171717;
  font-size: 12px;
}

.arkos-store-card__item span:last-child,
.arkos-store-card__item a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.arkos-store-card__item a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms ease;
}

.arkos-store-card__item a:hover {
  color: #cc3a32;
}

/* =========================================================
   BOTÃO VER NO MAPA
========================================================= */

.arkos-store-card__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  width: auto;
  min-width: 0;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid #171717;
  border-radius: 999px;
  background-color: transparent;
  color: #171717;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 250ms ease,
    color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.arkos-store-card__map-link:hover {
  border-color: #171717;
  background-color: #171717;
  color: #ffffff;
  transform: translateY(-2px);
}

.arkos-store-card__map-link i {
  margin: 0;
  font-size: 9px;
  transition: transform 250ms ease;
}

.arkos-store-card__map-link:hover i {
  transform: translateX(3px);
}

/* =========================================================
   SETAS DA GALERIA INTERNA
========================================================= */

.arkos-store-card__gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background-color: rgba(17, 17, 17, 0.78);
  color: #ffffff;
  font-size: 9px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    opacity 250ms ease;
}

.arkos-store-card__gallery-arrow--previous {
  left: 12px;
}

.arkos-store-card__gallery-arrow--next {
  right: 12px;
}

.arkos-store-card__gallery-arrow:hover {
  border-color: #cc3a32;
  background-color: #cc3a32;
}

.arkos-store-card__gallery-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

/* =========================================================
   NAVEGAÇÃO ENTRE SHOWROOMS
========================================================= */

.arkos-stores__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.arkos-stores__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 50%;
  background-color: #171717;
  color: #ffffff;
  font-size: 9px;
  cursor: pointer;
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease,
    opacity 250ms ease;
}

.arkos-stores__arrow:hover {
  border-color: #cc3a32;
  background-color: #cc3a32;
  transform: translateY(-2px);
}

.arkos-stores__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

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

.arkos-stores-map {
  position: relative;
  width: 100%;
  padding: 35px 0 80px;
  background-color: #f4f4f2;
}

.arkos-stores-map__content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.08);
}

.arkos-stores-map__content iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {
  .arkos-stores {
    padding: 50px 0 40px;
  }

  .arkos-store-card {
    min-height: 550px;
  }

  .arkos-store-card__image-wrapper {
    height: 230px;
  }

  .arkos-store-card__content {
    padding: 24px;
  }

  .arkos-stores-map__content iframe {
    height: 420px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .arkos-stores {
    padding: 45px 0 30px;
  }

  .arkos-stores__header {
    margin-bottom: 28px;
  }

  .arkos-stores__eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .arkos-stores__title {
    margin-bottom: 12px;
    font-size: 34px;
    letter-spacing: -1px;
  }

  .arkos-stores__description {
    font-size: 14px;
    line-height: 1.55;
  }

  .arkos-stores__carousel-wrapper {
    padding-bottom: 50px;
  }

  .arkos-store-card {
    min-height: auto;
    border-radius: 20px;
  }

  .arkos-store-card__image-wrapper {
    height: 240px;
  }

  .arkos-store-card__badge {
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    font-size: 8px;
  }

  .arkos-store-card__content {
    padding: 24px 20px;
  }

  .arkos-store-card__title {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .arkos-store-card__information {
    gap: 13px;
  }

  .arkos-store-card__item {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    font-size: 13px;
  }

  .arkos-store-card__map-link {
    margin-top: 24px;
    padding: 10px 14px;
  }

  .arkos-store-card__gallery-arrow {
    width: 30px;
    height: 30px;
  }

  .arkos-store-card__gallery-arrow--previous {
    left: 10px;
  }

  .arkos-store-card__gallery-arrow--next {
    right: 10px;
  }

  .arkos-stores__arrow {
    width: 34px;
    height: 34px;
  }

  .arkos-stores-map {
    padding: 30px 0 60px;
  }

  .arkos-stores-map__content {
    border-radius: 20px;
  }

  .arkos-stores-map__content iframe {
    height: 350px;
  }
}

/* botoes */

 .arkos-store-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding-top: 20px;
  }

.arkos-store-card__map-link,
.arkos-store-card__calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 13px;
  border: 1px solid #171717;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

.arkos-store-card__map-link {
  background-color: transparent;
  color: #171717;
}

.arkos-store-card__calendar-link {
  background-color: #171717;
  color: #ffffff;
}

.arkos-store-card__map-link:hover,
.arkos-store-card__calendar-link:hover {
  background-color: #cc3a32;
  border-color: #cc3a32;
  color: #ffffff;
  transform: translateY(-2px);
}