/* ========================================
   SHOPPING.CSS - ARQUIVO CARREGADO COM SUCESSO!
   ======================================== */

:root {
  --brand: #2f3fb1;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f6f8fc;
}

/* ESTILOS ESPECÍFICOS PARA PÁGINA DO SHOPPING */

/* TIPOGRAFIA */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
}

.lead-tight {
  line-height: 1.35;
}

/* HERO */
.hero {
  width: 100%;
  height: 40rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.24);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-hero {
  position: relative;
  top: 55%;
  text-align: center;
  color: white;
  font-weight: 200;
}

.redes-hero {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.redes-hero a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 2rem;
}

/* ABOUT */
.about .btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
}

.about .lead {
  color: #4b5563;
}

/* FICHA TÉCNICA */
.stats {
  padding: 10rem 0;
}

.stats img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 0.7rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1rem 0.5rem;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-2px);
}

.stat .num {
  font-size: 24px;
  font-weight: 300;
  color: #9b9b9b;
  transition: color 0.3s ease;
}

.stat:hover .num {
  color: var(--ink);
}

.stat .lbl {
  font-size: .85rem;
  color: #9b9b9b;
  font-weight: 300;
}

/* GALERIA */
.gallery .main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  position: relative;
}

.gallery .main .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.gallery .main .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.gallery .main .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery .main .swiper-button-prev,
.gallery .main .swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  transition: all 0.3s ease;
}

.gallery .main .swiper-button-prev:hover,
.gallery .main .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
}

.gallery .main .swiper-button-prev::after,
.gallery .main .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.gallery .main .swiper-pagination {
  bottom: 20px;
}

.gallery .main .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.gallery .main .swiper-pagination-bullet-active {
  background: #fff;
}

.gallery .thumbs {
  margin-top: 1rem;
}

.gallery .thumbs .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.gallery .thumbs .swiper-slide {
  opacity: .6;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery .thumbs .swiper-slide:hover {
  opacity: .8;
}

.gallery .thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--brand);
}

.gallery .thumbs img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
}

.gallery .thumbs .swiper-slide:hover img {
  transform: scale(1.05);
}

/* MAPA */
.map-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef2ff;
}

.map {
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

/* LOGOS */
.logos .logo-item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logos .logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.logos .swiper {
  padding: 8px 36px;
}

.logos .swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.logos .swiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
}

.logos .swiper-button-prev,
.logos .swiper-button-next {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}

.logos .swiper-button-prev:hover,
.logos .swiper-button-next:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.logos .swiper-button-prev::after,
.logos .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

/* ENCONTRE RÁPIDO */
.qf-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.qf-card:hover {
  transform: translateY(-4px);
}

.qf-card img {
  width: 100%;
  display: block;
}

.qf-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
}

.qf-caption strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.qf-caption span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* UTILITÁRIOS */
.bg-body {
  background: var(--bg);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero .hero-media {
    height: 60vw;
    min-height: 300px;
  }

  .hero .caption {
    padding: 20px 0 30px;
  }

  .hero .title {
    font-size: 24px;
  }

  .map {
    height: 300px;
  }

  .gallery .thumbs .swiper-slide {
    width: 120px !important;
  }

  .logos .logo-item {
    height: 60px;
  }

  .logos .swiper {
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-media {
    height: 70vw;
    min-height: 250px;
  }

  .hero .social {
    justify-content: center !important;
  }

  .hero .social a {
    width: 32px;
    height: 32px;
  }

  .map {
    height: 250px;
  }

  .logos .logo-item {
    height: 50px;
  }

  .logos .swiper {
    padding: 8px 16px;
  }

  .gallery .thumbs .swiper-slide {
    width: 100px !important;
  }

  .qf-card:hover {
    transform: none;
  }
}

/* BOTÕES */
.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-active-bg: var(--brand);
  --bs-btn-active-border-color: var(--brand);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 63, 177, 0.25);
}

.btn-outline-secondary {
  --bs-btn-color: var(--muted);
  --bs-btn-border-color: var(--muted);
  --bs-btn-hover-bg: var(--muted);
  --bs-btn-hover-border-color: var(--muted);
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
}