@charset "UTF-8";
/* 1. VARIÁVEIS E ESTILOS GERAIS
-------------------------------------------------- */
:root {
  --primary-red: #D22630;
  --dark-gray: #4E5458;
  --light-gray: #D4D5D4;
  --green: #27AE60;
  --white: #FFFFFF;
  --off-white: #f8f9fa;
  --text-color: #343a40;
  --sidebar-bg: #343a40;
  --sidebar-hover: #2f3031;
  --border-color: #e9ecef;
}

/* --- PRELOADER CIRCULAR ORBITAL --- */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a3dbf 0%, #4a2c8f 100%);
  opacity: 1;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  overflow: hidden;
}

/* Partículas flutuantes */
#preloder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
  animation: particleFloat 20s linear infinite;
  z-index: 1;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50px, -50px); }
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Ícones flutuantes suaves */
.consumidor {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto 30px;
}

.consumidor .icon {
  position: absolute;
  width: 70px;
  height: 70px;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.consumidor .icon:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.25);
}

.consumidor .icon:nth-child(1) { 
  color: #c8a7ff;
  top: 50px;
  left: 50px;
  animation: float1 4s ease-in-out infinite;
}
.consumidor .icon:nth-child(2) { 
  color: #ffd6e8;
  top: 50px;
  right: 50px;
  animation: float2 3.5s ease-in-out infinite;
}
.consumidor .icon:nth-child(3) { 
  color: #a8d5ff;
  bottom: 50px;
  right: 50px;
  animation: float3 4.2s ease-in-out infinite;
}
.consumidor .icon:nth-child(4) { 
  color: #ffe4a8;
  bottom: 50px;
  left: 50px;
  animation: float4 3.8s ease-in-out infinite;
}
.consumidor .icon:nth-child(5) { 
  color: #ffd6e8;
  top: 10px;
  left: 50%;
  margin-left: -35px;
  animation: float1 3.6s ease-in-out infinite;
}
.consumidor .icon:nth-child(6) { 
  color: #c8a7ff;
  bottom: 10px;
  left: 50%;
  margin-left: -35px;
  animation: float2 4.1s ease-in-out infinite;
}
.consumidor .icon:nth-child(7) { 
  color: #ffe4a8;
  top: 50%;
  left: 10px;
  margin-top: -35px;
  animation: float3 3.9s ease-in-out infinite;
}
.consumidor .icon:nth-child(8) { 
  color: #a8d5ff;
  top: 50%;
  right: 10px;
  margin-top: -35px;
  animation: float4 3.7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -10px) rotate(5deg); }
  50% { transform: translate(10px, 15px) rotate(-3deg); }
  75% { transform: translate(-10px, 10px) rotate(4deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-12px, 15px) rotate(-4deg); }
  50% { transform: translate(-15px, -10px) rotate(6deg); }
  75% { transform: translate(10px, -12px) rotate(-5deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -15px) rotate(3deg); }
  50% { transform: translate(12px, -12px) rotate(-4deg); }
  75% { transform: translate(15px, 10px) rotate(5deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 12px) rotate(-6deg); }
  50% { transform: translate(-15px, 10px) rotate(4deg); }
  75% { transform: translate(-8px, -15px) rotate(-3deg); }
}

/* Título Semana do Consumidor */
.loader-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Contador de porcentagem grande */
.loader-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  letter-spacing: -2px;
}

/* Texto descritivo */
.loading-text {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Barra minimalista */
.loading-bar-container {
  width: 300px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.loading-bar-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
  border-radius: 10px;
  position: relative;
  transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Efeito de fade-out */
#preloder.fade-out {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.7s ease-out;
}



.SemanaConsumidor .CardProduto {
    border-color: #d1acfd;
}

/* Início do encapsulamento .SemanaConsumidor */
.SemanaConsumidor {
  font-family: var(--font-family);
  margin: 0px;
  padding: 0px;
  font-size: 1.4rem;
  color: var(--cinza-escuro);
  z-index: 0;
  display: block;
  position: relative;
  /* 2. LAYOUT PRINCIPAL
  -------------------------------------------------- */
  /* 3. COMPONENTES
  -------------------------------------------------- */
  /* --- AJUSTES PARA MOBILE (DROPDOWN) --- */
  /* Usando max-width para aplicar SÓ nas resoluções menores */
  /* --- Overlay --- */
  /* O restante do seu CSS permanece igual */
  /* --- Seção do Banner --- */
  /* --- Seção de Vitrine de Produtos --- */
  /* --- Grid de Produtos e Cards --- */
  /* --- Animações --- */
}
.SemanaConsumidor .layout-container {
  position: relative;
  min-height: 100vh;
}
@media (min-width: 1196px) {
  .SemanaConsumidor .layout-container {
    display: flex;
  }
}
.SemanaConsumidor .main-content {
  transition: margin-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.SemanaConsumidor .main-content main{
  background: #2830ff;
}
@media (min-width: 1196px) {
  .SemanaConsumidor .main-content {
    flex: 1;
  }
}
.SemanaConsumidor .container {
  width: 98%;
  max-width: 1824px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 99;
  display: block;
  position: relative;
}
.SemanaConsumidor .mobile-header {
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: -3px 1px 6px 4px rgba(0, 0, 0, 0.1);
  top: -30px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  height: 65px; /* Definindo uma altura fixa para referência */
  position: absolute;
  right: 0;
  border-radius: 5px 0 0 5px;
  transform: translateY(0px);
  transition: all 400ms;
}
.SemanaConsumidor .mobile-header .menu-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 45px;
  color: var(--dark-gray);
  transition: all 400ms;
}
.SemanaConsumidor .mobile-header .menu-button:hover {
  transform: scale(1.1);
}
.SemanaConsumidor .mobile-header.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-20px);
  transition: all 400ms;
  width: 280px;
  right: 0;
  position: absolute;
  left: auto;
  background: #571b4c;
  border-radius: 5px 0 0 0;
}
.SemanaConsumidor .mobile-header.open button i.bi-list {
  color: #ffffff;
}
.SemanaConsumidor .mobile-header.open button i.bi-x-lg {
  color: #ffffff;
}
@media (min-width: 1196px) {
  .SemanaConsumidor .mobile-header {
    display: none;
  }
}
.SemanaConsumidor .sidebar {
  /* ESTILOS PADRÃO (DESKTOP FIRST) */
  background: #2830ff;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 110px 10px 20px 10px;
  position: static;
  height: auto;
  width: 300px;
  z-index: 1;
}
.SemanaConsumidor .sidebar #dna-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ficará atrás da navegação */
  opacity: 0.3;
  display: none;
}
.SemanaConsumidor .sidebar .sidebar-nav {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  /* Estilos de links, etc. */
}
.SemanaConsumidor .sidebar .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.SemanaConsumidor .sidebar .sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 10px;
  border-radius: 3px;
  transition: all 0.2s;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.SemanaConsumidor .sidebar .sidebar-nav a:hover {
  background-color: #d1acfd;
  color: #2830ff;
  transform: translateX(5px);
  font-weight: 700;
}
.SemanaConsumidor .sidebar .sidebar-nav a.active,
.SemanaConsumidor .sidebar .sidebar-nav a#destaque.active {
  background-color: #d1acfd;
  color: #2830ff;
  font-weight: 700;
  transition: all 400ms;
}
.SemanaConsumidor .sidebar .sidebar-nav a i {
  font-size: 18px;
  padding: 0 8px 0 0;
  width: 25px;
  text-align: center;
}
@media (max-width: 1195px) {
  .SemanaConsumidor .sidebar {
    position: fixed;
    top: 65px; /* Altura do mobile-header */
    left: 0;
    width: 100%; /* Largura total */
    height: auto; /* Altura baseada no conteúdo */
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 280px;
    right: 0;
    position: absolute;
    left: auto;
    top: 14px;
    transform: translateY(20px);
    transition: all 400ms;
    isolation: isolate;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 0px 0px 0px 8px;
  }
  .SemanaConsumidor .sidebar.open {
    opacity: 1;
    visibility: visible;
    transition: all 400ms;
    transform: translateY(0px);
    pointer-events: auto;
    border-radius: 0px 0px 0px 8px;
  }
}
.SemanaConsumidor .sidebar-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999; /* Fica abaixo do menu */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0s 0.4s;
  /* O overlay não é necessário no desktop */
}
.SemanaConsumidor .sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0s 0s;
}
@media (min-width: 1px) {
  .SemanaConsumidor .sidebar-overlay {
    display: none;
  }
}
.SemanaConsumidor .banner-section {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
}
.SemanaConsumidor .banner-section img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.SemanaConsumidor .banner-section .banner-overlay {
  position: absolute;
  inset: 0;
  border-bottom: 12px solid #2830ff;
}
.SemanaConsumidor .banner-section .banner_1920 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #000000;
}
.SemanaConsumidor .banner-section .banner_1480, .SemanaConsumidor .banner-section .banner_1024, .SemanaConsumidor .banner-section .banner_768, .SemanaConsumidor .banner-section .banner_540 {
  display: none;
}
@media (max-width: 1480px) {
  .SemanaConsumidor .banner-section .banner_1480 {
    display: block;
  }
  .SemanaConsumidor .banner-section .banner_1920, .SemanaConsumidor .banner-section .banner_1024, .SemanaConsumidor .banner-section .banner_768, .SemanaConsumidor .banner-section .banner_540 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .SemanaConsumidor .banner-section .banner_1024 {
    display: block;
  }
  .SemanaConsumidor .banner-section .banner_1920, .SemanaConsumidor .banner-section .banner_1480, .SemanaConsumidor .banner-section .banner_768, .SemanaConsumidor .banner-section .banner_540 {
    display: none;
  }
}
@media (max-width: 768px) {
  .SemanaConsumidor .banner-section .banner_768 {
    display: block;
  }
  .SemanaConsumidor .banner-section .banner_1920, .SemanaConsumidor .banner-section .banner_1480, .SemanaConsumidor .banner-section .banner_1024, .SemanaConsumidor .banner-section .banner_540 {
    display: none;
  }
}
@media (max-width: 540px) {
  .SemanaConsumidor .banner-section .banner_540 {
    display: block;
  }
  .SemanaConsumidor .banner-section .banner_1920, .SemanaConsumidor .banner-section .banner_1480, .SemanaConsumidor .banner-section .banner_1024, .SemanaConsumidor .banner-section .banner_768 {
    display: none;
  }
}
.SemanaConsumidor .showcase-section {
  padding: 3rem 0;
  background: #ffffff;
  /*background-image: radial-gradient(var(--light-gray) 1px, transparent 1px);
  background-size: 20px 20px;*/
  width: 100%;
  border-radius: 60px 0 0 0;
}
.SemanaConsumidor .showcase-header {
  background-color: #d1acfd;
  padding: 15px 10px;
  border-radius: 20px 10px 20px 10px;
}
.SemanaConsumidor .showcase-header.SemanaConsumidorPromo {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    font-size: 22px;
    color: #1b1c26;
}
.SemanaConsumidor .showcase-header.SemanaConsumidorPromo h1{font-size: 22px;}
.SemanaConsumidor .showcase-header.SemanaConsumidorPromo h2 {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}
.SemanaConsumidor .showcase-title {
  font-size: 27px;
    font-weight: 700;
    color: #782a3e;
    margin: 0;
}
.SemanaConsumidor .product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .SemanaConsumidor .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .SemanaConsumidor .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1196px) {
  .SemanaConsumidor .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.SemanaConsumidor .product-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.SemanaConsumidor .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.SemanaConsumidor .product-card img {
  height: 224px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.SemanaConsumidor .product-card .product-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.SemanaConsumidor .product-card .category {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-red);
}
.SemanaConsumidor .product-card h3 {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
}
.SemanaConsumidor .product-card .description {
  margin-top: 8px;
  color: #6c757d;
  flex-grow: 1;
  margin-bottom: 16px;
}
.SemanaConsumidor .product-card .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.SemanaConsumidor .product-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
}
.SemanaConsumidor .product-card .buy-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.SemanaConsumidor .product-card .buy-button:hover {
  background-color: #a71d26;
  transform: scale(1.05);
}
.SemanaConsumidor .product-card .buy-button.green {
  background-color: var(--green);
}
.SemanaConsumidor .product-card .buy-button.green:hover {
  background-color: #1e8449;
}
.SemanaConsumidor .fade-in-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transform: translateY(20px);
}
.SemanaConsumidor .fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=40anos.css.map */