.home-cat-link-img {
  object-fit: cover;
  width: 100px;
  height: 100px;
}
.carousel-container {
  background: #fff;
  border-radius: 1rem;
  box-shadow:
    0 8px 32px rgba(79, 70, 229, 0.12),
    0 1.5px 4.5px rgba(0, 0, 0, 0.07);
  width: 100%;
}
.carousel-title {
  color: #4f46e5;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.carousel-inner {
  border-radius: 1rem;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  object-fit: cover;
  height: 340px;
  border-radius: 1rem;
  background: #eef2ff;
  transition: filter 0.4s;
}
.carousel-item.active img,
.carousel-item-next img,
.carousel-item-prev img {
  filter: brightness(0.97) saturate(1.2);
}
.carousel-caption {
  background: #ffffff5e;
  border-radius: 0.7rem;
  padding: 1rem 1.3rem;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.8rem;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
  backdrop-filter: blur(2px);
}
/* Modern navigation buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  z-index: 2;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-doby) 70%, #f59e42 100%);
  box-shadow: 0 2px 14px rgba(79, 70, 229, 0.19);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: linear-gradient(135deg, #f59e42 30%, var(--red-doby) 100%);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 5px 20px rgba(79, 70, 229, 0.22);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: "";
}
.carousel-control-prev svg,
.carousel-control-next svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.carousel-indicators [data-bs-target] {
  background: var(--red-doby);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #f3f4f6;
  margin: 0 6px;
  opacity: 0.4;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.carousel-indicators .active {
  background: linear-gradient(135deg, var(--red-doby), #f59e42);
  opacity: 1;
  border: 2px solid #eef2ff;
}
@media (max-width: 600px) {
  /*   .carousel-container {
        padding: 0.8rem 0.2rem;
        max-width: 98vw;
      } */
  .carousel-title {
    font-size: 1.2rem;
  }
  .carousel-item img {
    height: 160px;
  }
  .carousel-caption {
    font-size: 0.7rem;
    padding: 0.6rem 0.7rem;
    bottom: 0.5rem !important;
  }
  .carousel-caption h5 {
    font-size: 0.8rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
    height: 38px;
  }
  .carousel-control-prev svg,
  .carousel-control-next svg {
    width: 18px;
    height: 18px;
  }
}

/* ========== ESTILOS MODERNOS ========== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #fbbf24;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: white;
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image {
  position: relative;
}

.image-floating {
  position: relative;
}

.floating-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.card-1 {
  top: 20px;
  left: -30px;
  color: var(--success);
}

.card-2 {
  bottom: 40px;
  right: -30px;
  color: var(--primary);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===== CATEGORIAS ===== */
.categories-section {
  padding: 80px 0;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--gray);
  font-size: 16px;
}

.section-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Cards de Categoria via JS */

/* ===== PRODUTOS SLICK ===== */
.featured-section {
  padding: 80px 0;
  background: #f8fafc;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.slick-prev-custom,
.slick-next-custom,
.slick-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: block;
  position: static !important;
}

/* ===== BANNER PROMOCIONAL ===== */
.promo-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  color: white;
}

.promo-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.promo-tag {
  display: inline-block;
  background: var(--warning);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promo-icon i {
  font-size: 120px;
  opacity: 0.8;
}

/* ===== VANTAGENS ===== */
.advantages-section {
  padding: 80px 0;
  background: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

.advantage-icon i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.advantage-card h3 {
  margin-bottom: 12px;
}

/* ===== MAIS VENDIDOS ===== */
.bestsellers-section {
  padding: 80px 0;
  background: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section-header {
    flex-direction: column;
    gap: 20px;
  }
}

.category-card {
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  flex: 1;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.category-card:hover .category-image {
  transform: scale(1.1);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}
.category-image i {
  font-size: 48px;
  color: white;
}
.category-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.categories-grid {
  overflow-x: auto !important;
  padding-top: 20px !important;
  scrollbar-width: none !important;
  scroll-behavior: smooth;
  justify-content: space-around;
}
