@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800;900&display=swap);

.material-symbols {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-style: normal;
  display: inline-block;
  line-height: 1 !important;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-family: Material Symbols Rounded !important;
  vertical-align: middle
}

.material-symbols-small {
  font-size: 16px
}

.material-symbols-medium {
  font-size: 24px
}

.material-symbols-large {
  font-size: 32px
}

.material-symbols-xlarge {
  font-size: 48px
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --cor-primaria: #1a1a2e;
  --cor-secundaria: #16213e;
  --cor-destaque: #0f3460;
  --cor-accent: #e94560;
  --cor-accent-hover: #d63651;
  --cor-success: #00d9a3;
  --cor-warning: #ffc107;
  --cor-info: #17a2b8;
  --gradiente-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradiente-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradiente-overlay: linear-gradient(to bottom, rgba(26, 26, 46, 0.2) 0%, rgba(26, 26, 46, 0.8) 100%);
  --cor-texto: #2d3748;
  --cor-texto-claro: #718096;
  --cor-branco: #ffffff;
  --cor-fundo: #f7fafc;
  --cor-fundo-escuro: #edf2f7;
  --cor-borda: #e2e8f0;
  --sombra-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --sombra-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --sombra-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --sombra-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
  --sombra-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transicao-suave: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif
}

body {
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  overflow-x: hidden
}

header {
  background-color: rgb(255 255 255 / .95);
  backdrop-filter: blur(10px);
  box-shadow: var(--sombra-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transicao)
}

header.scrolled {
  background-color: rgb(255 255 255 / .98);
  box-shadow: var(--sombra-lg)
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  text-decoration: none;
  transition: var(--transicao);
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: .5rem
}

.logo-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgb(0 0 0 / .1));
  transition: var(--transicao);
  display: block;
  flex-shrink: 0;
  vertical-align: middle
}

.logo:hover .logo-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgb(0 0 0 / .15))
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2)
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center
}

.nav-links a {
  text-decoration: none;
  color: var(--cor-texto);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  transition: var(--transicao);
  letter-spacing: .3px
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease
}

.nav-links a:hover {
  color: #667eea
}

.nav-links a:hover::after {
  width: 100%
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem
}

.pedidos-link-mobile {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  transition: all 0.3s ease;
  color: var(--cor-primaria)
}

.pedidos-link-mobile:hover {
  background-color: rgb(255 255 255 / .1);
  border-radius: 8px
}

.pedidos-link-mobile.active {
  background-color: rgb(255 255 255 / .15);
  border-radius: 8px
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transicao)
}

.menu-toggle:hover {
  background-color: var(--cor-fundo-escuro)
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: var(--transicao)
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 75vh;
  height: 75vh;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%)
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(.4, 0, .2, 1)
}

.carousel-slide.active {
  opacity: 1
}

.carousel-slide.active .carousel-image {
  animation: kenBurns 20s ease-out infinite
}

@keyframes kenBurns {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.7);
  transition: transform 20s ease-out
}

.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgb(26 26 46 / .3) 0%, rgb(26 26 46 / .6) 50%, rgb(26 26 46 / .8) 100%);
  text-align: center;
  padding: 2rem
}

.carousel-content .container {
  max-width: 900px
}

.carousel-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--cor-branco);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgb(0 0 0 / .5);
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease-out
}

.carousel-description {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgb(255 255 255 / .95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgb(0 0 0 / .4);
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both
}

.carousel-btn {
  animation: fadeInUp 1s ease-out 0.4s both;
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgb(233 69 96 / .4)
}

.carousel-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / .3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s
}

.carousel-btn:hover::before {
  width: 300px;
  height: 300px
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10
}

.carousel-nav-prev {
  left: 2rem
}

.carousel-nav-next {
  right: 2rem
}

.carousel-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(255 255 255 / .15);
  backdrop-filter: blur(10px);
  border: 2px solid rgb(255 255 255 / .3);
  color: var(--cor-branco);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transicao);
  display: flex;
  align-items: center;
  justify-content: center
}

.carousel-nav-btn:hover {
  background: rgb(255 255 255 / .25);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgb(0 0 0 / .3)
}

.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10
}

.carousel-dot {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: rgb(255 255 255 / .4);
  border: none;
  cursor: pointer;
  transition: var(--transicao);
  padding: 0;
  position: relative;
  overflow: hidden
}

.carousel-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--cor-branco);
  transition: width 0.3s ease
}

.carousel-dot:hover {
  background-color: rgb(255 255 255 / .6)
}

.carousel-dot.active {
  background-color: var(--cor-branco);
  width: 70px;
  box-shadow: 0 0 15px rgb(255 255 255 / .5)
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite
}

.scroll-indicator-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgb(255 255 255 / .6);
  border-radius: 25px;
  position: relative;
  cursor: pointer
}

.scroll-indicator-icon::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: rgb(255 255 255 / .8);
  border-radius: 3px;
  animation: scrollWheel 2s infinite
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 10px
  }

  100% {
    opacity: 0;
    top: 25px
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  40% {
    transform: translateX(-50%) translateY(-10px)
  }

  60% {
    transform: translateX(-50%) translateY(-5px)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--cor-branco);
  padding: 8rem 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgb(255 255 255 / .1);
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: float 20s infinite ease-in-out
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgb(255 255 255 / .05);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: float 15s infinite ease-in-out reverse
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-20px) rotate(10deg)
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
  position: relative;
  z-index: 1
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: .95;
  position: relative;
  z-index: 1
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  color: var(--cor-branco);
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transicao);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 10px 30px rgb(233 69 96 / .3);
  position: relative;
  overflow: hidden;
  z-index: 1
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .3), transparent);
  transition: left 0.5s;
  z-index: -1
}

.btn:hover::before {
  left: 100%
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgb(233 69 96 / .4)
}

.btn:active {
  transform: translateY(-1px)
}

.btn-secundario {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 30px rgb(102 126 234 / .3)
}

.btn-secundario:hover {
  box-shadow: 0 15px 40px rgb(102 126 234 / .4)
}

.btn-sucesso {
  background: linear-gradient(135deg, var(--cor-success) 0%, #00b386 100%);
  box-shadow: 0 10px 30px rgb(0 217 163 / .3)
}

.btn-sucesso:hover {
  box-shadow: 0 15px 40px rgb(0 217 163 / .4)
}

section {
  padding: 6rem 0;
  position: relative
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  letter-spacing: -1px
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 1.5rem auto 3rem;
  border-radius: 2px
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem
}

.card {
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra-lg);
  transition: var(--transicao-suave);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgb(255 255 255 / .5)
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease
}

.card:hover::before {
  transform: scaleX(1)
}

.card:hover {
  box-shadow: var(--sombra-2xl)
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  color: var(--cor-branco);
  padding: .4rem .8rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgb(233 69 96 / .4)
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1)
}

.card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgb(255 255 255 / .95), rgb(255 255 255))
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: var(--cor-primaria);
  line-height: 1.3
}

.card-description {
  color: var(--cor-texto-claro);
  flex-grow: 1;
  line-height: 1.4;
  font-size: .95rem
}

.card-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  margin-bottom: 1rem
}

.card-footer {
  display: flex;
  gap: 1rem;
  margin-top: auto
}

.card-footer .btn {
  flex: 1;
  text-align: center;
  padding: .8rem 1.5rem;
  font-size: .9rem
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.5rem 0;
  font-size: .9rem;
  background: rgb(255 255 255 / .7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--sombra-sm)
}

.breadcrumb-item {
  color: var(--cor-texto-claro);
  text-decoration: none;
  transition: var(--transicao);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .6rem;
  border-radius: 6px
}

.breadcrumb-item:hover {
  color: #667eea;
  background: rgb(102 126 234 / .1)
}

.breadcrumb-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.breadcrumb-separator {
  color: var(--cor-texto-claro);
  opacity: .4;
  font-weight: 300
}

.breadcrumb-current {
  color: var(--cor-texto);
  font-weight: 600;
  padding: .3rem .6rem;
  background: rgb(102 126 234 / .15);
  border-radius: 6px
}

.produto-page {
  margin-top: 2rem
}

.produto-detalhes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--sombra-xl);
  margin-top: 2rem
}

.produto-imagem {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--sombra-lg);
  transition: var(--transicao)
}

.produto-imagem:hover {
  opacity: 0.8;
  filter: grayscale(10%);
}

.produto-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--cor-branco);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgb(102 126 234 / .3)
}

.produto-info h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--cor-primaria);
  line-height: 1.2
}

.produto-preco {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  margin: 1.5rem 0;
  display: block
}

.produto-descricao {
  margin-bottom: 2rem
}

.produto-descricao-titulo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 1rem
}

.produto-descricao p {
  line-height: 1.4;
  color: var(--cor-texto-claro);
  font-size: 1.05rem
}

.btn-comprar-produto {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-variation-settings: "FILL" 1;
  margin-top: 1rem;
  margin-bottom: 2rem
}

.produto-detalhes-box {
  margin-top: 1rem;
  padding: 1rem;
  background: rgb(247 250 252 / .8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid var(--cor-borda)
}

.produto-detalhes-titulo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 1rem
}

.produto-detalhes-box p {
  line-height: 1.5;
  color: var(--cor-texto-claro)
}

.produtos-relacionados-section {
  margin-top: 5rem
}

.catalogo-section {
  margin-top: 2rem
}

.catalogo-filtros {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 3rem
}

.filtro-btn {
  display: inline-block;
  padding: .8rem 1.8rem;
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(10px);
  color: var(--cor-texto);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transicao);
  border: 2px solid var(--cor-borda);
  box-shadow: var(--sombra-sm)
}

.filtro-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
  border-color: #667eea
}

.filtro-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--cor-branco);
  border-color: #fff0;
  box-shadow: 0 8px 20px rgb(102 126 234 / .4)
}

.catalogo-busca {
  max-width: 700px;
  margin: 0 auto 3rem
}

.busca-container {
  position: relative;
  display: flex;
  align-items: center
}

.busca-icon {
  position: absolute;
  left: 1.5rem;
  color: var(--cor-texto-claro);
  pointer-events: none;
  z-index: 2
}

.busca-input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  border: 2px solid var(--cor-borda);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transicao);
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(10px);
  box-shadow: var(--sombra-sm);
  font-family: var(--font-primary)
}

.busca-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgb(102 126 234 / .1), var(--sombra-md);
  background: var(--cor-branco)
}

.busca-input::placeholder {
  color: var(--cor-texto-claro)
}

.catalogo-contador {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--cor-borda)
}

.catalogo-contador p {
  color: var(--cor-texto-claro);
  font-size: 1rem
}

.catalogo-contador strong {
  color: var(--cor-texto);
  font-weight: 700
}

.catalogo-vazio {
  text-align: center;
  padding: 5rem 2rem;
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--sombra-lg)
}

.vazio-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: .5
}

.catalogo-vazio h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 1rem
}

.catalogo-vazio p {
  color: var(--cor-texto-claro);
  font-size: 1.1rem;
  margin-bottom: 2rem
}

.colecoes-section {
  margin-top: 2rem
}

.colecao-detalhes {
  margin-bottom: 3rem;
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--sombra-lg)
}

.colecao-hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: var(--sombra-md)
}

.colecao-descricao {
  font-size: 1.2rem;
  color: var(--cor-texto-claro);
  line-height: 1.8;
  margin-bottom: 2rem
}

.form-group {
  margin-bottom: .2rem
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--cor-primaria);
  font-size: .95rem
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--cor-borda);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transicao);
  background-color: var(--cor-branco);
  font-family: var(--font-primary)
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgb(102 126 234 / .1);
  background-color: var(--cor-branco)
}

textarea.form-control {
  resize: vertical;
  min-height: 140px
}

.form-help {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--cor-texto-claro);
  line-height: 1.5
}

.form-help-highlight {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--cor-accent);
  font-weight: 600;
  line-height: 1.5
}

.text-highlight {
  color: #667eea;
  font-weight: 700
}

.form-section-divider {
  margin: 3rem 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cor-borda), transparent)
}

.form-section-header {
  margin-bottom: 2rem
}

.form-section-description {
  color: var(--cor-texto-claro);
  font-size: .95rem;
  line-height: 1.6;
  margin-top: .5rem
}

.file-input {
  cursor: pointer;
  padding: .8rem 1.2rem
}

.file-input::-webkit-file-upload-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--cor-branco);
  border: none;
  padding: .6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 1rem;
  transition: var(--transicao)
}

.file-input::-webkit-file-upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgb(102 126 234 / .3)
}

.image-preview-container {
  margin-top: 1rem
}

.image-preview {
  display: none;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: var(--sombra-md);
  transition: var(--transicao)
}

.image-preview:hover {
  transform: scale(1.05);
  box-shadow: var(--sombra-lg)
}

.current-image-preview {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--cor-fundo);
  border-radius: 12px;
  border: 1px solid var(--cor-borda)
}

.current-image-label {
  margin-bottom: .8rem;
  color: var(--cor-texto);
  font-size: .95rem
}

.image-preview-current {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: var(--sombra-md);
  transition: var(--transicao)
}

.image-preview-current:hover {
  transform: scale(1.05);
  box-shadow: var(--sombra-lg)
}

.crop-container {
  display: none;
  margin-top: 1.5rem
}

.crop-wrapper {
  background: var(--cor-fundo);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--cor-borda)
}

.crop-title {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--cor-primaria);
  font-size: 1rem
}

.crop-image-container {
  max-height: 500px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cor-branco)
}

.crop-image {
  display: block;
  max-width: 100%
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--cor-borda)
}

.form-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.5rem
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none
}

.checkbox-input {
  margin-right: .8rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #667eea
}

.checkbox-text {
  font-weight: 600;
  color: var(--cor-texto);
  font-size: 1rem
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 1.5rem
}

.stat-card {
  background: rgb(255 255 255 / .95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--sombra-lg);
  transition: var(--transicao-suave);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgb(255 255 255 / .5);
  position: relative;
  overflow: hidden
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease
}

.stat-card:hover::before {
  transform: scaleX(1)
}

.stat-card:hover {
  box-shadow: var(--sombra-2xl)
}

.stat-icon {
  font-size: 3rem;
  line-height: 1;
  filter: grayscale(.2);
  transition: var(--transicao)
}

.stat-card:hover .stat-icon {
  filter: grayscale(0)
}

.stat-content {
  flex: 1
}

.stat-content h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: .3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text
}

.stat-content p {
  font-size: .95rem;
  color: var(--cor-texto-claro);
  font-weight: 600
}

.stat-card-produtos::before {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
}

.stat-card-colecoes::before {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%)
}

.stat-card-valor::before {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)
}

.stat-card-visualizacoes::before {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)
}

.stat-card-cliques::before {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%)
}

.stat-card-conversao::before {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%)
}

.acoes-rapidas {
  border-top: 3px solid var(--cor-borda);
  padding-top: 2.5rem
}

.btn-icon {
  font-size: 1.2rem;
  line-height: 1
}

.table-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center
}

.btn-info {
  background: linear-gradient(135deg, var(--cor-info) 0%, #138496 100%);
  box-shadow: 0 4px 15px rgb(23 162 184 / .3)
}

.btn-info:hover {
  box-shadow: 0 6px 20px rgb(23 162 184 / .4)
}

.btn-danger {
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  box-shadow: 0 4px 15px rgb(233 69 96 / .3)
}

.btn-danger:hover {
  box-shadow: 0 6px 20px rgb(233 69 96 / .4)
}

.table-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--cor-borda);
  text-align: center
}

.table-info {
  color: var(--cor-texto-claro);
  font-size: 1rem;
  font-weight: 500
}

.table-info strong {
  color: var(--cor-texto);
  font-size: 1.1rem
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgb(102 126 234 / .05) 0%, rgb(118 75 162 / .05) 100%);
  border-radius: 20px;
  border: 2px dashed var(--cor-borda)
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: .5;
  animation: float 3s ease-in-out infinite
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 1rem
}

.empty-state p {
  color: var(--cor-texto-claro);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

.sistema-info {
  background: linear-gradient(135deg, rgb(102 126 234 / .05) 0%, rgb(118 75 162 / .05) 100%)
}

.sistema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem
}

.info-card {
  background: rgb(255 255 255 / .8);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--cor-borda);
  transition: var(--transicao)
}

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

.info-icon {
  font-size: 2.5rem;
  line-height: 1
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem
}

.info-label {
  font-size: .85rem;
  color: var(--cor-texto-claro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.info-value {
  font-size: 1.1rem;
  color: var(--cor-texto);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap
}

.status-badge {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px
}

.status-success {
  background: linear-gradient(135deg, var(--cor-success) 0%, #00b386 100%);
  color: var(--cor-branco);
  box-shadow: 0 2px 8px rgb(0 217 163 / .3)
}

.status-error {
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  color: var(--cor-branco);
  box-shadow: 0 2px 8px rgb(233 69 96 / .3)
}

.badge {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  text-align: center
}

.badge-produtos {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--cor-branco);
  box-shadow: 0 2px 8px rgb(102 126 234 / .3)
}

.badge-ordem {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: var(--cor-branco);
  font-weight: 700;
  box-shadow: 0 2px 8px rgb(79 172 254 / .3)
}

.status-inactive {
  background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
  color: var(--cor-branco);
  box-shadow: 0 2px 8px rgb(160 174 192 / .3)
}

.banner-thumbnail {
  max-width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--sombra-sm);
  transition: var(--transicao)
}

.banner-thumbnail:hover {
  transform: scale(1.1);
  box-shadow: var(--sombra-md)
}

.banner-link {
  font-size: .85rem;
  color: #667eea;
  text-decoration: none;
  transition: var(--transicao)
}

.banner-link:hover {
  color: #764ba2;
  text-decoration: underline
}

.banner-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--cor-texto-claro)
}

.stat-item {
  display: flex;
  align-items: center;
  gap: .5rem
}

.stat-label {
  font-size: .95rem
}

.stat-item strong {
  color: var(--cor-texto);
  font-size: 1.1rem
}

.stat-separator {
  color: var(--cor-borda);
  font-weight: 300
}

.table-container {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: var(--sombra-md)
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--cor-branco)
}

table th,
table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--cor-borda)
}

table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--cor-branco);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

table tr:hover {
  background-color: var(--cor-fundo)
}

table img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--sombra-sm)
}

.btn-small {
  padding: .5rem 1.2rem;
  font-size: .85rem
}

.alert {
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  font-weight: 500;
  border-left: 4px solid;
  backdrop-filter: blur(10px)
}

.alert-success {
  background-color: rgb(212 237 218 / .9);
  color: #155724;
  border-color: var(--cor-success)
}

.alert-error {
  background-color: rgb(248 215 218 / .9);
  color: #721c24;
  border-color: var(--cor-accent)
}

.alert-info {
  background-color: rgb(209 236 241 / .9);
  color: #0c5460;
  border-color: var(--cor-info)
}

footer {
  background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
  color: var(--cor-branco);
  text-align: center;
  padding: 3rem 0;
  margin-top: 6rem;
  position: relative
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .5), transparent)
}

footer p {
  margin: .5rem 0;
  opacity: .9
}

@media (max-width:1024px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem
  }

  .carousel-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem
  }

  .carousel-nav-prev {
    left: 1rem
  }

  .carousel-nav-next {
    right: 1rem
  }
}

@media (max-width:768px) {
  .container {
    padding: 0 1.5rem
  }

  .logo {
    font-size: 1.25rem
  }

  .logo-icon {
    width: 48px;
    height: 48px
  }

  .nav-links {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: rgb(255 255 255 / .98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 0;
    gap: 1.5rem;
    transition: left 0.4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: var(--sombra-xl)
  }

  .nav-links.active {
    left: 0
  }

  .nav-links a {
    font-size: 1.2rem
  }

  .pedidos-link-mobile {
    display: flex
  }

  .menu-toggle {
    display: flex
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px)
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px)
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px)
  }

  .hero-carousel {
    min-height: 60vh;
    height: 60vh
  }

  .carousel-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem
  }

  .carousel-description {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin-bottom: 2rem
  }

  .carousel-btn {
    padding: 1rem 2rem;
    font-size: .95rem
  }

  .carousel-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem
  }

  .carousel-nav-prev {
    left: .5rem
  }

  .carousel-nav-next {
    right: .5rem
  }

  .carousel-indicators {
    bottom: 20px;
    gap: 8px
  }

  .carousel-dot {
    width: 35px;
    height: 3px
  }

  .carousel-dot.active {
    width: 50px
  }

  .scroll-indicator {
    display: none
  }

  .hero {
    padding: 4rem 0;
    min-height: 60vh
  }

  section {
    padding: 4rem 0
  }

  .section-title {
    margin-bottom: .5rem
  }

  .section-title::after {
    margin: 1rem auto 2rem
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .card-body {
    padding: 1rem
  }

  .card-footer {
    flex-direction: column
  }

  .card-footer .btn {
    width: 100%
  }

  .breadcrumb {
    font-size: .8rem;
    padding: .8rem 1rem;
    gap: .4rem
  }

  .breadcrumb-item {
    padding: .2rem .4rem;
    gap: .3rem
  }

  .breadcrumb-icon {
    width: 14px;
    height: 14px
  }

  .breadcrumb-current {
    padding: .2rem .4rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .produto-detalhes {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem
  }

  .produto-info h1 {
    font-size: 2rem
  }

  .produto-preco {
    font-size: 2.2rem
  }

  .btn-comprar-produto {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    text-align: center
  }

  .produtos-relacionados-section {
    margin-top: 3rem
  }

  .catalogo-filtros {
    gap: .8rem
  }

  .filtro-btn {
    padding: .7rem 1.5rem;
    font-size: .9rem
  }

  .busca-input {
    padding: 1rem 1.2rem 1rem 3rem;
    font-size: .95rem
  }

  .busca-icon {
    left: 1rem
  }

  .catalogo-contador {
    margin-top: 2rem
  }

  .catalogo-vazio {
    padding: 3rem 1.5rem
  }

  .vazio-icon {
    font-size: 3rem
  }

  .stat-card {
    padding: 1.5rem;
    gap: 1rem
  }

  .stat-icon {
    font-size: 2.5rem
  }

  .stat-content h3 {
    font-size: 2rem
  }

  .stat-content p {
    font-size: .9rem
  }

  .sistema-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .info-card {
    padding: 1.2rem;
    gap: 1rem
  }

  .info-icon {
    font-size: 2rem
  }

  .info-value {
    font-size: 1rem
  }

  .empty-state {
    padding: 3rem 1.5rem
  }

  .empty-icon {
    font-size: 4rem
  }

  .empty-state h3 {
    font-size: 1.5rem
  }

  .empty-state p {
    font-size: 1rem
  }

  .table-actions {
    gap: .4rem
  }

  .table-actions .btn {
    padding: .5rem .8rem;
    font-size: 1rem
  }

  table {
    font-size: .85rem
  }

  table th,
  table td {
    padding: .8rem
  }

  table img {
    width: 50px;
    height: 50px
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 1rem
  }

  nav {
    padding: 1rem 0
  }

  .logo {
    font-size: 1.1rem
  }

  .logo-icon {
    width: 32px;
    height: 32px
  }

  .hero-carousel {
    min-height: 50vh;
    height: 50vh
  }

  .carousel-title {
    font-size: 1.8rem
  }

  .carousel-description {
    font-size: .9rem
  }

  .carousel-btn {
    padding: .9rem 1.8rem;
    font-size: .9rem
  }

  .btn {
    padding: .8rem 1.8rem;
    font-size: .9rem
  }

  section {
    padding: 3rem 0
  }

  .card-image {
    height: 220px
  }

  .section-subtitle {
    font-size: 1.3rem
  }

  .info-card {
    padding: 1rem
  }

  .info-label {
    font-size: .75rem
  }

  .info-value {
    font-size: .95rem
  }

  .status-badge {
    font-size: .7rem;
    padding: .25rem .6rem
  }
  
  .empty-state {
    padding: 2.5rem 1rem
  }

  .empty-icon {
    font-size: 3.5rem
  }

  .empty-state h3 {
    font-size: 1.3rem
  }

  .empty-state p {
    font-size: .95rem
  }

  .table-info {
    font-size: .9rem
  }

  .form-actions {
    flex-direction: column
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center
  }

  .image-preview {
    max-width: 100%
  }

  .crop-wrapper {
    padding: 1rem
  }

  .crop-image-container {
    max-height: 300px
  }

  .banner-stats {
    flex-direction: column;
    gap: .8rem
  }

  .stat-separator {
    display: none
  }

  .banner-thumbnail {
    max-width: 80px;
    height: 50px
  }
}

.text-center {
  text-align: center
}

.mt-1 {
  margin-top: 1rem
}

.mt-2 {
  margin-top: 2rem
}

.mt-3 {
  margin-top: 3rem
}

.mb-1 {
  margin-bottom: 1rem
}

.mb-2 {
  margin-bottom: 2rem
}

.mb-3 {
  margin-bottom: 3rem
}

.flex {
  display: flex
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center
}

.gap-1 {
  gap: 1rem
}

.gap-2 {
  gap: 2rem
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0)
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 10px
}

@keyframes loading {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

.produto-preco-container {
  margin: 1.5rem 0
}

.produto-preco-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: 1rem
}

.produto-preco-original {
  font-size: 1.2rem;
  color: var(--cor-texto-claro);
  text-decoration: line-through;
  font-weight: 500
}

.produto-preco-promocional {
  font-size: 2rem;
  color: var(--cor-accent);
  font-weight: 800;
  font-family: var(--font-heading)
}

.produto-preco-promocional-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.produto-badge-desconto {
  display: inline-block;
  background: linear-gradient(135deg, #e94560 0%, #d63651 100%);
  color: var(--cor-branco);
  padding: .5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--sombra-md);
  animation: pulse-badge 2s infinite
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.card-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  margin: .75rem 0
}

.card-price-original {
  font-size: .95rem;
  color: var(--cor-texto-claro);
  text-decoration: line-through;
  font-weight: 500
}

.card-price-promocional {
  font-size: 2rem;
  color: var(--cor-accent);
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0
}

.card-price-promocional-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap
}

.card-badge-desconto {
  display: inline-block;
  background: linear-gradient(135deg, #e94560 0%, #d63651 100%);
  color: var(--cor-branco);
  padding: .5rem .5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--sombra-md)
}

.produto-cronometro {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: var(--sombra-lg);
  color: var(--cor-branco)
}

.cronometro-titulo {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  opacity: .9
}

.cronometro-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem
}

.cronometro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(255 255 255 / .15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: .75rem 1rem;
  min-width: 70px;
  box-shadow: 0 4px 15px rgb(0 0 0 / .1)
}

.cronometro-valor {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1
}

.cronometro-label {
  font-size: .75rem;
  opacity: .9;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .05em
}

.cronometro-separador {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: .7;
  animation: blink 1s infinite
}

@keyframes blink {

  0%,
  49% {
    opacity: .7
  }

  50%,
  100% {
    opacity: .2
  }
}

.cronometro-urgente {
  animation: pulse-urgente 1s infinite
}

@keyframes pulse-urgente {

  0%,
  100% {
    box-shadow: var(--sombra-lg)
  }

  50% {
    box-shadow: 0 0 20px rgb(233 69 96 / .6), var(--sombra-lg)
  }
}

.cronometro-urgente .cronometro-item {
  background: rgb(233 69 96 / .25)
}

.cronometro-expirado {
  opacity: .5;
  filter: grayscale(1)
}

@media (max-width:768px) {
  .produto-cronometro {
    padding: 1rem
  }

  .cronometro-item {
    padding: .5rem .75rem;
    min-width: 60px
  }

  .cronometro-valor {
    font-size: 1.5rem
  }

  .cronometro-label {
    font-size: .65rem
  }

  .cronometro-separador {
    font-size: 1.2rem
  }
}

@media (max-width:480px) {
  .cronometro-display {
    gap: .25rem
  }

  .cronometro-item {
    padding: .4rem .5rem;
    min-width: 50px
  }

  .cronometro-valor {
    font-size: 1.2rem
  }

  .cronometro-label {
    font-size: .6rem
  }
}

@media (max-width:768px) {
  .produto-preco-promocional {
    font-size: 2rem
  }

  .produto-preco-original {
    font-size: 1rem
  }

  .produto-badge-desconto {
    font-size: 1rem;
    padding: .4rem .8rem
  }
}

@media (max-width:480px) {
  .produto-preco-promocional {
    font-size: 2rem
  }

  .produto-preco-original {
    font-size: .9rem
  }

  .produto-badge-desconto {
    font-size: .9rem;
    padding: .35rem .7rem
  }

  .card-price-promocional {
    font-size: 2rem
  }

  .card-price-original {
    font-size: .85rem
  }
}

.modal-checkout {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.modal-checkout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .7);
  backdrop-filter: blur(5px)
}

.modal-checkout-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 10px 40px rgb(0 0 0 / .3);
  animation: modalSlideIn 0.3s ease-out
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal-checkout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff0;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-checkout-close:hover {
  color: #333
}

.modal-checkout-header {
  text-align: center;
  margin-bottom: 1.5rem
}

.modal-checkout-header .material-symbols {
  color: var(--cor-primaria);
  margin-bottom: 1rem
}

.modal-checkout-header h2 {
  color: var(--cor-primaria);
  margin-bottom: .5rem
}

.modal-checkout-header p {
  color: #666;
  font-size: .95rem
}

.modal-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.form-group label {
  font-weight: 600;
  color: var(--cor-texto);
  font-size: .95rem
}

.form-group input {
  padding: .875rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s
}

.form-group input:focus {
  outline: none;
  border-color: var(--cor-primaria);
  box-shadow: 0 0 0 3px rgba(var(--cor-primaria-rgb), .1)
}

.mensagem-erro {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: .875rem;
  border-radius: 8px;
  font-size: .9rem
}

.btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600
}

@media (max-width:768px) {
  .modal-checkout-content {
    padding: 1.5rem;
    width: 95%
  }

  .modal-checkout-header h2 {
    font-size: 1.5rem
  }
}

.pedidos-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  transition: all 0.3s ease
}

.pedidos-link:hover {
  background-color: rgb(255 255 255 / .1);
  border-radius: 8px
}

.pedidos-link.active {
  background-color: rgb(255 255 255 / .15);
  border-radius: 8px
}

.pedidos-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #F44336;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 4px rgb(0 0 0 / .2);
  animation: badge-pulse 2s infinite
}

@keyframes badge-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1)
  }
}

.meus-pedidos-section {
  padding: 3rem 1rem;
  min-height: 60vh
}

.meus-pedidos-section .section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem
}

.pedidos-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--cor-texto-claro)
}

.pedidos-loading .material-symbols {
  display: block;
  margin: 0 auto 1rem;
  color: var(--cor-primaria);
  animation: rotate 2s linear infinite
}

@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.pedidos-vazio {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

.pedidos-vazio .material-symbols {
  display: block;
  margin: 0 auto 1rem;
  color: var(--cor-texto-claro)
}

.pedidos-vazio h2 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  color: var(--cor-texto)
}

.pedidos-vazio p {
  color: var(--cor-texto-claro);
  margin-bottom: 2rem
}

.pedidos-lista {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.pedido-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(0 0 0 / .1);
  overflow: hidden;
  transition: all 0.3s ease
}

.pedido-card:hover {
  box-shadow: 0 4px 16px rgb(0 0 0 / .15);
  transform: translateY(-2px)
}

.pedido-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
  color: #fff
}

.pedido-info {
  display: flex;
  flex-direction: column;
  gap: .25rem
}

.pedido-id {
  font-weight: 700;
  font-size: 1.1rem
}

.pedido-data {
  font-size: .85rem;
  opacity: .9
}

.pedido-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 600;
  background: rgb(255 255 255 / .2);
  backdrop-filter: blur(10px)
}

.pedido-status-pending {
  color: #ffa726
}

.pedido-status-approved {
  color: #66bb6a
}

.pedido-status-in_process {
  color: #42a5f5
}

.pedido-status-rejected,
.pedido-status-cancelled {
  color: #ef5350
}

.pedido-body {
  padding: 1rem
}

.pedido-produto {
  display: flex;
  gap: 1.5rem;
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #f0f0f0
}

.pedido-produto-imagem {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

.pedido-produto-info {
  flex: 1
}

.pedido-produto-info h3 {
  font-size: 1.1rem;
  color: var(--cor-texto)
}

.pedido-produto-info p {
  color: var(--cor-texto-claro);
  line-height: 1.5
}

.pedido-detalhes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem
}

.pedido-detalhe {
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  background: #f8f9fa;
  border-radius: 8px
}

.pedido-detalhe-label {
  font-weight: 600;
  color: var(--cor-texto-claro);
  font-size: .9rem
}

.pedido-detalhe-valor {
  font-weight: 600;
  color: var(--cor-texto);
  font-size: 1rem
}

.pedido-reference {
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  color: var(--cor-primaria)
}

.pedido-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-top: 2px solid #e0e0e0
}

.btn-pequeno {
  padding: .625rem 1.25rem;
  font-size: .9rem;
  text-align: center
}

@media (max-width:768px) {
  .pedidos-badge {
    min-width: 16px;
    height: 16px;
    font-size: .65rem
  }

  .pedido-header {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start
  }

  .pedido-status {
    align-self: flex-start
  }

  .pedido-produto {
    flex-direction: column
  }

  .pedido-produto-imagem {
    width: 100%;
    height: 200px
  }

  .pedido-detalhes {
    grid-template-columns: 1fr
  }

  .pedido-footer {
    flex-direction: column
  }

  .btn-pequeno {
    width: 100%
  }
}

.pix-expiracao-aviso {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 15px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #856404;
}

.pix-expiracao-aviso .material-symbols {
  color: #ffc107;
}

.pix-cronometro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
}

.pix-cronometro .cronometro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 8px;
  min-width: 80px;
}

.pix-cronometro .cronometro-valor {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pix-cronometro .cronometro-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pix-cronometro .cronometro-separador {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.pix-qrcode-container {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.pix-qrcode-container img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border: 3px solid #ddd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pix-codigo-container {
  margin: 8px 0;
}

.pix-codigo-container h3 {
  font-size: 14px;
  color: var(--cor-primaria);
  margin-bottom: 10px;
  text-align: center;
}

.pix-header {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.pix-codigo {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  word-break: break-all;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #333;
  max-height: 120px;
  overflow-y: auto;
  line-height: 1.5;
}

.pix-instrucoes {
  font-size: 14px;
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: 8px;
  padding: 18px;
  margin-top: 16px;
}

.pix-instrucoes p {
  margin: 0 0 10px 0;
  color: #004085;
  font-weight: 600;
}

.pix-instrucoes ol {
  margin: 0;
  padding-left: 10px;
  color: #004085;
}

.pix-instrucoes li {
  margin-bottom: 1px;
  line-height: 1;
}

@media (max-width: 768px) {
  .produto-imagem {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }

  .pix-qrcode-container img {
    max-width: 220px;
  }

  .pix-cronometro .cronometro-item {
    min-width: 60px;
    padding: 10px 15px;
  }

  .pix-cronometro .cronometro-valor {
    font-size: 24px;
  }
}

/* ================================
   FOOTER STYLES
   ================================ */

.site-footer {
  background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
  color: var(--cor-branco);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Seção Sobre */
.footer-about {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cor-branco);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  transition: var(--transicao);
}

.footer-logo:hover {
  transform: translateX(5px);
  opacity: 0.9;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Títulos das Seções */
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--cor-branco);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--cor-accent) 0%, var(--cor-accent-hover) 100%);
  border-radius: 2px;
}

/* Links do Footer */
.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links li a,
.footer-contact li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transicao);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links li a:hover,
.footer-contact li a:hover {
  color: var(--cor-branco);
  transform: translateX(5px);
}

.footer-links li a .material-symbols,
.footer-contact li .material-symbols {
  opacity: 0.7;
}

/* Contato */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Redes Sociais */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--cor-branco);
  transition: var(--transicao);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0.5rem 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer-credits {
  font-variation-settings: "FILL" 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-credits .material-symbols {
  color: var(--cor-accent);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.15);
  }

  50% {
    transform: scale(1);
  }
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-about {
    max-width: 100%;
  }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
    font-size: 1.3rem;
  }

  .footer-logo-icon {
    width: 40px;
    height: 40px;
  }

  .footer-title {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .footer-links li a:hover,
  .footer-contact li a:hover {
    transform: translateX(0) scale(1.05);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-links li a,
  .footer-contact li a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
}