/* Luzia Brindes — atelier editorial */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #c44b68;
  --primary-soft: #e07a92;
  --primary-deep: #8f3349;
  --accent-gold: #b8954a;
  --accent-gold-soft: #d4b87a;
  --cream: #faf6f1;
  --cream-deep: #efe6db;
  --dark: #1a1614;
  --gray-900: #1a1614;
  --gray-800: #2d2825;
  --gray-700: #4a433e;
  --gray-600: #6b635c;
  --gray-500: #9a9189;
  --gray-400: #c4bbb2;
  --gray-300: #ddd5cc;
  --gray-200: #ebe4db;
  --gray-100: #f5f0ea;
  --white: #fffcf8;
  --success: #2a9d6a;
  --gradient-primary: linear-gradient(135deg, #e07a92 0%, #c44b68 55%, #8f3349 100%);
  --gradient-soft: linear-gradient(160deg, #faf6f1 0%, #fffcf8 50%, #f5ebe3 100%);
  --shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 22, 20, 0.08);
  --shadow-lg: 0 20px 48px rgba(26, 22, 20, 0.12);
  --shadow-glow: 0 12px 40px rgba(196, 75, 104, 0.22);
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Navbar Limpo */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  padding: 0.75rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.logo-img {
  height: 95px;
  width: auto;
  transition: var(--transition);
}

.footer-logo {
  max-height: 60px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  margin: 0 1rem;
  transition: var(--transition);
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

/* Dropdown de Produtos e Promoções */
.dropdown-menu-produtos,
.dropdown-menu-promocoes {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 250px;
  background: var(--white);
  backdrop-filter: blur(10px);
}

.dropdown-menu-produtos .dropdown-item,
.dropdown-menu-promocoes .dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--gray-700);
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.dropdown-menu-produtos .dropdown-item:hover,
.dropdown-menu-promocoes .dropdown-item:hover {
  background: linear-gradient(135deg, rgba(255,0,110,0.1) 0%, rgba(255,70,145,0.05) 100%);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-menu-produtos .dropdown-item i,
.dropdown-menu-promocoes .dropdown-item i {
  color: var(--gray-500);
  transition: var(--transition);
  width: 20px;
}

.dropdown-menu-produtos .dropdown-item:hover i,
.dropdown-menu-promocoes .dropdown-item:hover i {
  color: var(--primary);
  transform: scale(1.1);
}

.dropdown-divider {
  margin: 0.5rem 1rem;
  border-color: var(--gray-200);
}

#cart-count {
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 0 6px;
  font-size: 0.75rem;
  position: relative;
  top: -2px;
  margin-left: 4px;
}

.btn-whatsapp {
  background: var(--success);
  color: white !important;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section Elegante */
.hero-section-elegant {
  background: var(--gradient-soft);
  position: relative;
  margin-top: 70px;
  padding: 72px 0 48px;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

/* Elementos Flutuantes */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(196, 75, 104, 0.14), rgba(184, 149, 74, 0.06) 70%, transparent);
  animation: float 12s ease-in-out infinite;
  filter: blur(1px);
}

.element-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.element-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: 8s;
  animation-duration: 20s;
}

.element-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 5%;
  animation-delay: 12s;
  animation-duration: 16s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}

/* Conteúdo do Hero */
.hero-content {
  position: relative;
  z-index: 2;
  animation: slideInLeft 1s ease-out;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 252, 248, 0.85);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 75, 104, 0.18);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.hero-title-elegant {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--dark);
  overflow: visible;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-text {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: fit-content;
  height: 1.3em;
}

.rotating-text .text-item {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  min-width: 100%;
  text-align: left;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(20px);
  white-space: nowrap;
}

.rotating-text .text-item.active {
  opacity: 1;
  transform: translateY(0);
}

.accent-word {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Estatísticas */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

/* Visual do Hero */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: slideInRight 1s ease-out;
}

.products-showcase {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 2rem auto;
}

.showcase-item {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-item:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.showcase-item:hover .item-label {
  transform: translateY(0);
}

.item-1 {
  top: 20%;
  right: 30%;
  animation: float 8s ease-in-out infinite;
}

.item-2 {
  top: 10%;
  left: 20%;
  animation: float 10s ease-in-out infinite;
  animation-delay: 2s;
}

.item-3 {
  bottom: 30%;
  right: 10%;
  animation: float 12s ease-in-out infinite;
  animation-delay: 4s;
}

.item-4 {
  bottom: 10%;
  left: 40%;
  animation: float 9s ease-in-out infinite;
  animation-delay: 6s;
}

/* Botão WhatsApp Hero */
.hero-cta-wrapper {
  margin: 1.5rem 0;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-whatsapp-hero {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: white !important;
}

.btn-whatsapp-hero i {
  font-size: 1.3rem;
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  margin-top: 3rem;
}

.btn-scroll-elegant {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid var(--gray-300);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.btn-scroll-elegant:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-scroll-elegant i {
  animation: bounce 2s infinite;
}

/* Animações */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: var(--transition);
  animation: bounce 2s infinite;
  margin-top: 1.5rem;
}

.btn-scroll-down:hover {
  transform: translateY(5px);
  color: var(--primary);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Layout Principal */
.main-shopping-section {
  padding: 40px 0;
  min-height: 70vh;
}

/* Seção de Categorias Destacada */
.categories-showcase-section {
  background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
  position: relative;
}

.categories-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.categories-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.category-showcase-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.category-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.category-showcase-card:hover::before {
  left: 100%;
}

.category-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255,0,110,0.15);
  border-color: var(--primary);
}

.category-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.category-showcase-card:hover .category-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255,0,110,0.3);
}

.category-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.category-showcase-card:hover .category-icon-wrapper i {
  transform: scale(1.1);
}

.category-showcase-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.category-showcase-card:hover .category-showcase-title {
  color: var(--primary);
}

.category-showcase-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.category-showcase-card:hover .category-showcase-description {
  color: var(--gray-700);
}

.category-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.category-showcase-card:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Categorias Horizontais */
.categories-horizontal-bar {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.categories-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.categories-horizontal {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  flex: 1;
}

.categories-horizontal::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: 30px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.category-pill:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-pill.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,0,110,0.2);
}

.category-pill i {
  font-size: 1.1rem;
}

.category-scroll-btn {
  display: none;
}


/* Sidebar de Categorias - Removido */
.categories-sidebar {
  display: none;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-200);
}

.sidebar-title i {
  margin-right: 0.5rem;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
}

.category-link:hover {
  background: var(--gray-100);
  color: var(--primary);
  transform: translateX(5px);
}

.category-link.active {
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 500;
}

.category-link.active .category-icon i {
  color: var(--white);
}

.category-icon {
  margin-right: 1rem;
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-icon i {
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.category-link:hover .category-icon i {
  color: var(--primary);
}

.category-arrow {
  margin-left: auto;
  opacity: 0;
  transition: var(--transition);
}

.category-link:hover .category-arrow,
.category-link.active .category-arrow {
  opacity: 1;
}

/* Carrossel de Destaques */
.featured-carousel {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.carousel-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.carousel-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  right: 0;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--gray-100);
  border-color: var(--primary);
  color: var(--primary);
}

.products-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  margin: 0 -0.5rem;
  padding: 0 0.5rem;
  justify-content: center;
}

.products-carousel::-webkit-scrollbar {
  height: 6px;
}

.products-carousel::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 3px;
}

.products-carousel::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 3px;
}

.carousel-item-product {
  flex: 0 0 200px;
  animation: fadeIn 0.5s ease;
}

.featured-card {
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 8px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.featured-card:hover .featured-overlay {
  opacity: 1;
}

.btn-quick-add {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  transform: translateY(10px);
}

.featured-card:hover .btn-quick-add {
  transform: translateY(0);
}

.btn-quick-add:hover {
  background: var(--primary);
  color: var(--white);
}

.featured-info {
  padding: 0.75rem 0;
}

.featured-name {
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

/* Header dos Produtos */
.products-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  position: relative;
}

.products-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.products-sort {
  position: absolute;
  right: 0;
}

.products-sort .form-select {
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.9rem;
  min-width: 150px;
}

/* Grid de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cards de Produtos Clean */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: auto;
  animation: fadeIn 0.5s ease;
  width: 100%;
  max-width: 300px;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 1;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0.75rem 0;
}

.btn-add-cart-clean {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  width: 100%;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-add-cart-clean:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,0,110,0.3);
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção de Benefícios */
.benefits-section {
  background: var(--cream-deep);
  padding: 5rem 0;
  position: relative;
}

.benefit-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-radius: 20px;
  text-align: left;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(196, 75, 104, 0.2);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: rgba(196, 75, 104, 0.08);
  border-radius: 14px;
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Modal Limpo */
.modal-content {
  border: none;
  border-radius: 12px;
}

.modal-header {
  background: var(--gray-100);
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.modal-body {
  padding: 1.5rem;
}

.cart-item {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.modal-footer {
  border-top: 1px solid var(--gray-200);
  padding: 1.5rem;
}

.btn-success {
  background: var(--success);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.btn-success:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Estilos para o rodapé */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsividade Mobile Aprimorada */
@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .logo-img {
    height: 80px;
  }
  
  .navbar-nav .nav-link {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }
  
  .btn-whatsapp {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.4rem 0;
  }
  
  .logo-img {
    height: 70px;
  }
  
  .navbar-nav {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .navbar-nav .nav-link:hover {
    background: var(--gray-100);
  }
  
  .btn-whatsapp {
    width: 100%;
    margin: 0.5rem 1rem;
    justify-content: center;
  }
  
  .nav-whatsapp-mobile {
    background: var(--success) !important;
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 0.8rem !important;
    font-weight: 600;
    font-size: 0.9rem !important;
    margin: 0.5rem 1rem !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    transition: var(--transition);
    width: calc(100% - 2rem) !important;
    box-sizing: border-box !important;
  }
  
  .nav-whatsapp-mobile:hover {
    background: #128C7E !important;
    color: white !important;
    transform: translateY(-1px);
  }
  
  .dropdown-menu-produtos,
  .dropdown-menu-promocoes {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: 1px solid var(--gray-200);
    margin: 0.5rem 1rem;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.3rem 0;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Toast */
.toast {
  border-radius: 8px;
  border: none;
  box-shadow: var(--shadow-lg);
}

.toast-header {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 8px 8px 0 0;
  border: none;
}

/* Monitores Ultrawide */
@media (min-width: 1400px) {
  .hero-section-elegant .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hero-section-elegant .row {
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-title-elegant {
    text-align: center;
  }
  
  .rotating-text .text-item {
    text-align: center;
    width: max-content;
    min-width: 100%;
  }
  
  .hero-description {
    text-align: center;
    margin: 0 auto 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

/* Responsividade */
@media (max-width: 991px) {
  .categories-wrapper {
    padding: 0 40px;
  }
  
  .category-pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero-section-elegant {
    padding: 30px 0 20px;
    min-height: 70vh;
    margin-top: 70px;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-badge {
    margin: 0 auto 1.5rem;
    text-align: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-title-elegant {
    font-size: 2rem;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .title-line {
    margin-bottom: 0.2rem;
  }
  
  .highlight-text {
    min-width: 100%;
    text-align: center;
    height: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .rotating-text .text-item {
    text-align: center;
    width: max-content;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .btn-whatsapp-hero {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .products-showcase {
    display: none;
  }
  
  .showcase-item {
    display: none;
  }
  
  .floating-element {
    display: none;
  }
}
  
  /* Categorias em 2 linhas para mobile */
  .categories-horizontal-bar {
    padding: 1rem;
  }
  
  .categories-wrapper {
    padding: 0;
    display: block;
  }
  
  /* Seção de categorias destacada mobile */
  .categories-showcase-section {
    padding: 3rem 0 !important;
  }
  
  .categories-title {
    font-size: 2rem;
  }
  
  .categories-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .category-showcase-card {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }
  
  .category-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .category-icon-wrapper i {
    font-size: 2rem;
  }
  
  .category-showcase-title {
    font-size: 1.1rem;
  }
  
  .category-showcase-description {
    font-size: 0.9rem;
  }

  /* Mobile specific styles for category cards */
  .categories-showcase-section {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-around !important;
    padding: 10px !important; /* Add some padding to the section */
  }

  .category-showcase-card {
    width: 48% !important; /* Two cards per row, with some space */
    margin-bottom: 15px !important; /* Space between rows */
    padding: 10px !important; /* Padding inside the card */
    min-height: auto !important; /* Remove fixed min-height */
    box-sizing: border-box !important; /* Ensure box-sizing is applied */
  }

  .category-showcase-card .category-icon-wrapper {
    width: 50px !important; /* Smaller icon wrapper */
    height: 50px !important;
    margin: 0 auto 0.5rem !important; /* Adjust margin */
  }

  .category-showcase-card .category-icon-wrapper i {
    font-size: 1.8rem !important; /* Smaller icon */
  }

  .category-showcase-card .category-showcase-title {
    font-size: 1rem !important; /* Smaller font for the name */
    margin-bottom: 0 !important; /* Remove bottom margin */
  }

  .category-showcase-card .category-showcase-description {
    display: none !important; /* Hide description on mobile */
  }

  .categories-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    overflow: visible;
    padding: 0;
  }
  
  .category-pill {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .category-pill span {
    display: none;
  }
  
  .category-pill i {
    font-size: 1.2rem;
    margin: 0;
  }
  
  /* Esconder botões de scroll em mobile */
  .category-scroll-btn {
    display: none;
  }
  
  .carousel-item-product {
    flex: 0 0 150px;
  }
  
  .featured-image {
    height: 150px;
  }
  
  .products-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  .products-sort {
    position: static;
    width: 100%;
  }
  
  .products-sort .form-select {
    width: 100%;
  }
  
  .carousel-controls {
    position: static;
    margin-top: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .card-img-wrapper {
    height: 200px;
  }
}

/* Mobile específico já definido acima */

/* Catálogo Moderno (reintroduzido) */
.catalog-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.catalog-header { margin-bottom: 3rem; }
.catalog-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.catalog-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }

.category-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 2rem; box-shadow: 0 6px 22px rgba(0,0,0,0.08); transition: var(--transition); display: flex; flex-direction: column; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--primary); }

.category-header { text-align: center; margin-bottom: 1.5rem; }
.category-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.category-icon i { color: #fff; font-size: 1.9rem; }
.category-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin: 0 0 .25rem; }
.category-description { font-size: .95rem; color: var(--gray-600); margin: 0; }

.products-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.product-preview { height: 180px; border-radius: 12px; overflow: hidden; }
.product-image { position: relative; width: 100%; height: 100%; background: var(--gray-100); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.product-info { color: #fff; text-align: center; padding: .75rem; }
.product-info h5 { font-size: 1rem; margin: 0 0 .35rem; font-weight: 600; }
.product-info .price { font-size: 1.1rem; margin: 0 0 .6rem; font-weight: 700; }
.btn-add-cart { background: #fff; color: var(--primary); border: 0; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.product-preview:hover .product-overlay { opacity: 1; }
.product-preview:hover .product-image img { transform: scale(1.06); }

.product-preview.placeholder { background: transparent; }
.product-placeholder { height: 100%; border: 2px dashed var(--gray-300); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-400); background: var(--gray-50); }
.product-placeholder i { font-size: 1.8rem; margin-bottom: .35rem; }
.product-placeholder span { font-size: .85rem; font-weight: 500; }

.category-cta { text-align: center; padding-top: 1rem; border-top: 1px solid var(--gray-200); margin-top: .25rem; }
.btn-whatsapp-category { background: var(--success); color: #fff; border: 0; padding: .7rem 1.2rem; border-radius: 10px; font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.btn-whatsapp-category:hover { background: #128C7E; }
.category-cta small { display: block; color: var(--gray-500); margin-top: .5rem; }

.final-cta { background: var(--gradient-primary); color: #fff; padding: 2.5rem 1.5rem; border-radius: 16px; }
.final-cta h3 { font-size: 2rem; font-weight: 700; margin: 0 0 .5rem; }
.final-cta p { opacity: .95; margin-bottom: 1.25rem; }
.btn-whatsapp-final { background: #fff; color: var(--primary) !important; border: 0; padding: .9rem 1.6rem; border-radius: 999px; font-weight: 700; display: inline-flex; align-items: center; gap: .6rem; }
.btn-whatsapp-final:hover { background: var(--gray-100); }

@media (max-width: 768px) {
  .catalog-title { font-size: 2rem; }
  .catalog-subtitle { font-size: 1rem; padding: 0 1rem; }
  .categories-grid { grid-template-columns: 1fr; gap: 1.25rem; padding: 0 1rem; }
  .category-card { padding: 1.25rem; }
  .products-preview { grid-template-columns: 1fr; }
  .product-preview { height: 150px; }
  .final-cta { padding: 2rem 1rem; }
}

@media (max-width: 480px) {
  .category-title { font-size: 1.25rem; }
  .product-preview { height: 130px; }
}

/* Timeline Responsiva */
.timeline-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.timeline-heading {
  margin-bottom: 3rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.timeline-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(var(--primary), var(--primary-soft));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin: 0 0 3rem 0;
}

.timeline-item.left { justify-content: flex-end; }
.timeline-item.right { justify-content: flex-start; }

.timeline-dot {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px #fff;
  z-index: 2;
}

.timeline-dot i { color: #fff; font-size: 1.4rem; }

.timeline-card {
  width: 48%;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  padding: 1.5rem;
}

.timeline-item.left .timeline-card { margin-right: 6%; }
.timeline-item.right .timeline-card { margin-left: 6%; }

.timeline-card-header { margin-bottom: 1rem; }
.timeline-category-title { font-size: 1.35rem; font-weight: 700; color: var(--dark); margin: 0 0 .25rem; }
.timeline-category-desc { font-size: .95rem; color: var(--gray-600); margin: 0; }

.timeline-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.tl-product { border-radius: 10px; overflow: hidden; height: 160px; }
.tl-image { position: relative; width: 100%; height: 100%; background: var(--gray-100); }
.tl-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.tl-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.tl-info { color: #fff; text-align: center; padding: .75rem; }
.tl-name { font-size: .95rem; font-weight: 600; margin: 0 0 .25rem; }
.tl-price { font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; }
.tl-add { background: #fff; color: var(--primary); border: 0; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

.tl-product:hover .tl-overlay { opacity: 1; }
.tl-product:hover .tl-image img { transform: scale(1.06); }

.tl-placeholder { height: 100%; border: 2px dashed var(--gray-300); color: var(--gray-400); display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--gray-50); }
.tl-placeholder i { font-size: 1.6rem; margin-bottom: .25rem; }
.tl-placeholder span { font-size: .85rem; font-weight: 500; }

.btn-timeline-whatsapp { background: var(--success); color: #fff; border: 0; padding: .6rem 1.1rem; border-radius: 8px; font-weight: 600; }
.btn-timeline-whatsapp:hover { background: #128C7E; }

.btn-timeline-final { background: var(--gradient-primary); color: #fff; border: 0; padding: .9rem 1.4rem; border-radius: 999px; font-weight: 700; }
.btn-timeline-final:hover { filter: brightness(1.05); }

/* Responsivo */
@media (max-width: 991px) {
  .timeline-card { width: 60%; }
  .timeline-item.left .timeline-card { margin-right: 8%; }
  .timeline-item.right .timeline-card { margin-left: 8%; }
}

@media (max-width: 768px) {
  .timeline-line { left: 28px; transform: none; }
  .timeline-dot { left: 28px; transform: none; width: 48px; height: 48px; }
  .timeline { padding: 0 10px; }
  .timeline-item { margin-bottom: 2rem; }
  .timeline-card { width: calc(100% - 60px); margin-left: 60px !important; margin-right: 0 !important; }
  .timeline-products { grid-template-columns: 1fr; }
  .tl-product { height: 140px; }
  .timeline-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .timeline-card { padding: 1rem; }
  .tl-product { height: 120px; }
  .tl-name { font-size: .9rem; }
  .tl-price { font-size: 1rem; }
}

/* Landing Page de Categorias */
.landing-categories-section {
  padding: 96px 0;
  background: var(--white);
  position: relative;
}

.landing-header {
  margin-bottom: 4rem;
}

.landing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.landing-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.landing-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.landing-category-item {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  gap: 4rem;
  position: relative;
}

.landing-category-item.category-left {
  flex-direction: row;
}

.landing-category-item.category-right {
  flex-direction: row-reverse;
}

.category-content {
  flex: 1;
  max-width: 500px;
}

.category-visual {
  flex: 1;
  max-width: 500px;
}

.category-info {
  padding: 2rem 0;
}

.category-icon-landing {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.category-icon-landing i {
  font-size: 2.5rem;
  color: white;
}

.category-title-landing {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.category-description-landing {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-stats {
  margin-bottom: 2rem;
}

.products-count {
  background: rgba(196, 75, 104, 0.1);
  color: var(--primary-deep);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(196, 75, 104, 0.2);
}

.btn-category-explore {
  background: var(--dark);
  color: var(--white) !important;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-category-explore:hover {
  transform: translateY(-3px);
  background: var(--primary-deep);
  box-shadow: var(--shadow-glow);
  color: var(--white) !important;
}

.featured-product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  will-change: transform;
}

.featured-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Otimizações para mobile - reduzir animações e melhorar touch */
@media (max-width: 768px) {
  .featured-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  }
  
  /* Melhorar área de toque em mobile */
  .btn-category-explore,
  .btn-add-to-cart,
  .btn-whatsapp-final-landing {
    min-height: 44px; /* Padrão Apple para área de toque */
    touch-action: manipulation; /* Evita delay no touch */
  }
  
  /* Otimizar overlays para touch devices */
  .product-overlay-landing {
    opacity: 0.8; /* Mostrar parcialmente em mobile */
  }
  
  /* Reduzir motion em dispositivos que preferem motion reduzido */
  @media (prefers-reduced-motion: reduce) {
    .featured-product-card,
    .btn-category-explore,
    .category-icon-landing {
      transition: none;
    }
    
    .featured-product-card:hover {
      transform: none;
    }
  }
}

.product-image-landing {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.product-image-landing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-product-card:hover .product-image-landing img {
  transform: scale(1.1);
}

.product-overlay-landing {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 2rem;
}

.featured-product-card:hover .product-overlay-landing {
  opacity: 1;
}

.product-details {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.featured-product-card:hover .product-details {
  transform: translateY(0);
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.btn-add-to-cart {
  background: white;
  color: var(--primary) !important;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-add-to-cart:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-2px);
}

.featured-product-card.placeholder {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.placeholder-content {
  text-align: center;
  color: var(--gray-400);
}

.placeholder-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.placeholder-content span {
  font-size: 1.1rem;
  font-weight: 600;
}

.landing-final-cta {
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 4rem 2rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.landing-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.landing-final-cta h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.landing-final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-whatsapp-final-landing {
  background: white;
  color: var(--primary) !important;
  border: none;
  border-radius: 15px;
  padding: 1.2rem 2.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-final-landing:hover {
  background: var(--gray-100);
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Responsividade Mobile Otimizada */
@media (max-width: 991px) {
  .landing-categories-section {
    padding: 50px 0;
  }
  
  .landing-categories {
    padding: 0 1.5rem;
  }
  
  .landing-category-item {
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .category-content,
  .category-visual {
    max-width: 100%;
  }
  
  .category-title-landing {
    font-size: 2rem;
  }
  
  .product-image-landing {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .landing-categories-section {
    padding: 40px 0;
  }
  
  .landing-header {
    margin-bottom: 3rem;
  }
  
  .landing-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .landing-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
    line-height: 1.5;
  }
  
  .landing-categories {
    padding: 0 1rem;
  }
  
  /* Mobile: Layout em timeline vertical otimizado */
  .landing-category-item,
  .landing-category-item.category-left,
  .landing-category-item.category-right {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }
  
  .category-content {
    order: 1;
  }
  
  .category-visual {
    order: 2;
  }
  
  .category-content,
  .category-visual {
    max-width: 100%;
    width: 100%;
  }
  
  .category-info {
    padding: 1rem 0;
  }
  
  .category-icon-landing {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  
  .category-icon-landing i {
    font-size: 1.8rem;
  }
  
  .category-title-landing {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  
  .category-description-landing {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .category-stats {
    margin-bottom: 1.5rem;
  }
  
  .products-count {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .btn-category-explore {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }
  
  .product-image-landing {
    height: 250px;
    border-radius: 16px;
  }
  
  .featured-product-card {
    margin: 0 auto;
    max-width: 320px;
    border-radius: 16px;
  }
  
  .product-details {
    padding: 1rem;
  }
  
  .product-name {
    font-size: 1.1rem;
  }
  
  .product-price {
    font-size: 1.3rem;
  }
  
  .btn-add-to-cart {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .landing-final-cta {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
    border-radius: 20px;
  }
  
  .landing-final-cta h3 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .landing-final-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-whatsapp-final-landing {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .landing-categories-section {
    padding: 30px 0;
  }
  
  .landing-header {
    margin-bottom: 2rem;
  }
  
  .landing-title {
    font-size: 1.7rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }
  
  .landing-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .landing-categories {
    padding: 0 0.75rem;
  }
  
  .landing-category-item,
  .landing-category-item.category-left,
  .landing-category-item.category-right {
    padding: 1rem;
    margin-bottom: 2rem;
    gap: 1rem;
    border-radius: 16px;
  }
  
  .category-info {
    padding: 0.5rem 0;
  }
  
  .category-icon-landing {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
    border-radius: 12px;
  }
  
  .category-icon-landing i {
    font-size: 1.5rem;
  }
  
  .category-title-landing {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .category-description-landing {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  .category-stats {
    margin-bottom: 1rem;
  }
  
  .products-count {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }
  
  .btn-category-explore {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }
  
  .product-image-landing {
    height: 200px;
    border-radius: 12px;
  }
  
  .featured-product-card {
    max-width: 280px;
    border-radius: 12px;
  }
  
  .product-details {
    padding: 0.75rem;
  }
  
  .product-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .product-price {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .btn-add-to-cart {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  
  .landing-final-cta {
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-radius: 16px;
  }
  
  .landing-final-cta h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .landing-final-cta p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .btn-whatsapp-final-landing {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
}

/* Páginas de Categoria */
.category-hero {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.category-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.category-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.category-breadcrumb a:hover {
  text-decoration: underline;
}

.category-breadcrumb i {
  margin: 0 0.5rem;
  font-size: 0.8rem;
}

.category-icon-hero {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

.category-icon-hero i {
  font-size: 2.5rem;
  color: white;
}

.category-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.category-hero-description {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.category-stats-hero {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.category-stats-hero .stat-item {
  text-align: left;
}

.category-stats-hero .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.category-stats-hero .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.btn-hero-whatsapp {
  background: var(--gradient-primary);
  color: white !important;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
}

.btn-hero-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 0, 110, 0.4);
  color: white !important;
}

.hero-products-showcase {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 2rem auto;
}

.hero-product-item {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.6s ease;
}

.hero-product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-item:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-product-item.item-1 {
  top: 20%;
  right: 30%;
  animation: float 8s ease-in-out infinite;
}

.hero-product-item.item-2 {
  top: 10%;
  left: 20%;
  animation: float 10s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-product-item.item-3 {
  bottom: 30%;
  right: 10%;
  animation: float 12s ease-in-out infinite;
  animation-delay: 4s;
}

.hero-product-item.item-4 {
  bottom: 10%;
  left: 40%;
  animation: float 9s ease-in-out infinite;
  animation-delay: 6s;
}

.category-products-section {
  padding: 80px 0;
  background: var(--white);
}

.products-header-category {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header-category h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.products-header-category p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-card-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card-category:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-overlay-category {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.product-card-category:hover .product-overlay-category {
  opacity: 1;
}

.btn-quick-view {
  background: white;
  color: var(--primary) !important;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(20px);
}

.product-card-category:hover .btn-quick-view {
  transform: translateY(0);
}

.btn-quick-view:hover {
  background: var(--primary);
  color: white !important;
}

.product-info-category {
  padding: 1.5rem;
}

.product-name-category {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-price-category {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.btn-product-whatsapp {
  background: var(--success);
  color: white !important;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-product-whatsapp:hover {
  background: #128C7E;
  color: white !important;
  transform: translateY(-2px);
}

.category-cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.category-cta-content {
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}

.cta-icon i {
  font-size: 2.5rem;
  color: white;
}

.category-cta-content h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.category-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: white;
  color: var(--primary) !important;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  background: var(--gray-100);
  color: var(--primary) !important;
  transform: translateY(-3px);
}

.btn-cta-secondary {
  background: transparent;
  color: white !important;
  border: 2px solid white;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: white;
  color: var(--primary) !important;
}

/* Responsividade para Páginas de Categoria */
@media (max-width: 768px) {
  .category-hero {
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .category-hero .row {
    justify-content: center;
  }
  
  .category-hero .col-lg-6 {
    max-width: 100%;
  }
  
  .category-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .category-breadcrumb {
    order: 1;
    margin-bottom: 1.5rem;
  }
  
  .category-icon-hero {
    order: 2;
    margin: 0 auto 1rem;
  }
  
  .category-hero-title {
    order: 3;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .category-hero-description {
    order: 4;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto 2rem;
  }
  
  .category-stats-hero {
    order: 5;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .category-stats-hero .stat-item {
    text-align: center;
  }
  
  .btn-hero-whatsapp {
    order: 6;
    width: 100%;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-products-showcase {
    display: none;
  }
  
  .hero-product-item {
    display: none;
  }
  
  .products-grid-category {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .products-header-category h2 {
    font-size: 2rem;
  }
  
  .category-cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section-elegant {
    padding: 20px 0 15px;
    min-height: 60vh;
    margin-top: 60px;
  }
  
  .hero-title-elegant {
    font-size: 1.7rem;
  }
  
  .rotating-text .text-item {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .hero-stats {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .btn-whatsapp-hero {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .products-showcase {
    display: none;
  }
  
  .showcase-item {
    display: none;
  }
  
  /* Páginas de categoria mobile */
  .category-hero {
    padding: 100px 0 40px;
  }
  
  .category-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .category-breadcrumb {
    order: 1;
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }
  
  .category-icon-hero {
    order: 2;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin: 0 auto 0.75rem;
  }
  
  .category-icon-hero i {
    font-size: 1.8rem;
  }
  
  .category-hero-title {
    order: 3;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  
  .category-hero-description {
    order: 4;
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto 1.5rem;
  }
  
  .category-stats-hero {
    order: 5;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-hero-whatsapp {
    order: 6;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .products-header-category h2 {
    font-size: 1.6rem;
  }
  
  .category-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .products-grid-category {
    padding: 0 0.5rem;
  }
  
  .product-card-category {
    border-radius: 12px;
  }
  
  .product-image-wrapper {
    height: 200px;
  }
  
  .product-info-category {
    padding: 1rem;
  }
  
  .product-name-category {
    font-size: 1rem;
  }
  
  .product-price-category {
    font-size: 1.3rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0;
  }
  
  .footer-logo {
    max-height: 45px;
  }
  
  .footer h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/* Sistema de Galeria com Miniaturas */
.product-gallery-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main-image-container {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-height: 200px;
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
  transform: scale(1.05);
}

.thumbnails-container {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.03);
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.thumbnails-container::-webkit-scrollbar {
  display: none;
}

.thumbnail-item {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.thumbnail-item:hover {
  opacity: 1;
  border-color: var(--gray-400);
}

.thumbnail-item.active {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.2);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .thumbnail-item {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .thumbnails-container {
    padding: 6px;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .thumbnail-item {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  
  .thumbnails-container {
    padding: 4px;
    gap: 3px;
  }
}

/* Scrollbar Global */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Estilos para o Formulário do Carrinho */
.customer-info-form {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  display: none; /* Inicialmente oculto */
}

.customer-info-form h6 {
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 1rem;
}

.customer-info-form .form-label {
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.customer-info-form .form-control,
.customer-info-form .form-select {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem;
  transition: var(--transition);
  background: var(--white);
}

.customer-info-form .form-control:focus,
.customer-info-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 110, 0.15);
  outline: none;
}

.customer-info-form .form-control::placeholder {
  color: var(--gray-500);
}

/* Checkbox de autorização */
.customer-info-form .form-check {
  margin-top: 1rem;
}

.customer-info-form .form-check-input {
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  margin-top: 0.2rem;
}

.customer-info-form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.customer-info-form .form-check-label {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.4;
}

.customer-info-form .form-check-label a {
  color: var(--primary);
  font-weight: 500;
}

.customer-info-form .form-check-label a:hover {
  text-decoration: underline !important;
}

/* Modal do Carrinho */
#cartModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#cartModal .modal-header {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem;
}

#cartModal .modal-title {
  color: var(--gray-800);
  font-weight: 600;
}

#cartModal .modal-body {
  padding: 1.5rem;
}

#cartModal .modal-footer {
  border-top: 1px solid var(--gray-200);
  padding: 1.5rem;
}

/* Botões do Carrinho */
#btn-next-step {
  background: var(--primary);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

#btn-next-step:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

#btn-finalize-order {
  background: var(--success);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

#btn-finalize-order:hover {
  background: #1ea952;
  transform: translateY(-1px);
}

/* Itens do Carrinho */
.cart-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.cart-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.cart-item h6 {
  color: var(--gray-800);
  font-weight: 600;
}

.cart-item .btn-outline-danger {
  border-color: var(--primary);
  color: var(--primary);
  transition: var(--transition);
}

.cart-item .btn-outline-danger:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Responsividade do Formulário */
@media (max-width: 576px) {
  .customer-info-form {
    padding: 1rem;
  }
  
  .customer-info-form .row {
    margin: 0;
  }
  
  .customer-info-form .col-md-6 {
    padding: 0 0.5rem;
  }
  
  #cartModal .modal-body,
  #cartModal .modal-footer {
    padding: 1rem;
  }
}