@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 VOLTA ÀS AULAS --- */
#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, #fff2c8 0%, #ffeb8a 50%, #fff2c8 100%);
  opacity: 1;
  transition: opacity 0.8s ease-out;
  overflow: hidden;
}

/* Efeito sutil no fundo */
#preloder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 235, 138, 0.6) 0%, transparent 50%);
  z-index: 1;
}

/* Elementos flutuantes educacionais
#preloder::after {
  content: '📚 ✏️ 🎒 📝 📏 📐 ✂️ 📌';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 24px;
  line-height: 60px;
  word-spacing: 40px;
  text-align: center;
  animation: floatingElements 12s linear infinite;
  opacity: 0.2;
  z-index: 1;
}*/

@keyframes notebookLines {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatingElements {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-100px); }
}

/* Container principal do loader */
.loader-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: bounceIn 1s ease-out;
}

/* Ícones escolares animados */
.school-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.school-icons .icon {
  font-size: 40px;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.school-icons .icon:nth-child(1) { color: #e74c3c; }
.school-icons .icon:nth-child(2) { color: #f39c12; }
.school-icons .icon:nth-child(3) { color: #27ae60; }
.school-icons .icon:nth-child(4) { color: #3498db; }

.school-icons .icon i {
  font-size: 40px;
}

.school-icons .icon:nth-child(1) { animation-delay: 0s; }
.school-icons .icon:nth-child(2) { animation-delay: 0.2s; }
.school-icons .icon:nth-child(3) { animation-delay: 0.4s; }
.school-icons .icon:nth-child(4) { animation-delay: 0.6s; }

/* Título principal */
.loader-number {
  font-family: 'Fredoka', cursive;
  font-size: 52px;
  font-weight: 700;
  color: #2c3e50;
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  animation: textGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Subtítulo */
.loader-subtitle {
  font-family: 'Comic Neue', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 30px;
  animation: slideIn 1.5s ease-out;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

@keyframes bounceIn {
  0% { transform: scale(0.3) translateY(50px); opacity: 0; }
  50% { transform: scale(1.05) translateY(-10px); }
  70% { transform: scale(0.9) translateY(0); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes textGlow {
  0% {
    color: #2c3e50;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  100% {
    color: #3498db;
    text-shadow: 
      0 4px 8px rgba(0,0,0,0.2),
      0 0 20px rgba(52, 152, 219, 0.3);
  }
}

@keyframes slideIn {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Barra de carregamento temática */
.loading-bar-container {
  width: 320px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  margin: 25px auto;
  overflow: hidden;
  position: relative;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.loading-bar-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 200% 100%;
  border-radius: 15px;
  position: relative;
  transition: width 0.4s ease;
  animation: colorWave 2s ease-in-out infinite;
}

.loading-bar-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.8s infinite;
}

@keyframes colorWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}



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

/* Texto de carregamento */
.loading-text {
  font-family: 'Comic Neue', cursive;
  color: #34495e;
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
  letter-spacing: 0.5px;
  animation: fadeInOut 2.5s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}



.VoltaAsAulas .CardProduto {
    border-color: #782a3e;
}

/* Início do encapsulamento .VoltaAsAulas */
.VoltaAsAulas {
  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 --- */
}
.VoltaAsAulas .layout-container {
  position: relative;
  min-height: 100vh;
}
@media (min-width: 1196px) {
  .VoltaAsAulas .layout-container {
    display: flex;
  }
}
.VoltaAsAulas .main-content {
  transition: margin-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.VoltaAsAulas .main-content main{
  background: #ff5959;
}
@media (min-width: 1196px) {
  .VoltaAsAulas .main-content {
    flex: 1;
  }
}
.VoltaAsAulas .container {
  width: 98%;
  max-width: 1824px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 99;
  display: block;
  position: relative;
}
.VoltaAsAulas .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;
}
.VoltaAsAulas .mobile-header .menu-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 45px;
  color: var(--dark-gray);
  transition: all 400ms;
}
.VoltaAsAulas .mobile-header .menu-button:hover {
  transform: scale(1.1);
}
.VoltaAsAulas .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;
}
.VoltaAsAulas .mobile-header.open button i.bi-list {
  color: #ffffff;
}
.VoltaAsAulas .mobile-header.open button i.bi-x-lg {
  color: #ffffff;
}
@media (min-width: 1196px) {
  .VoltaAsAulas .mobile-header {
    display: none;
  }
}
.VoltaAsAulas .sidebar {
  /* ESTILOS PADRÃO (DESKTOP FIRST) */
  background: #ff5959;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 110px 10px 20px 10px;
  position: static;
  height: auto;
  width: 300px;
  z-index: 1;
}
.VoltaAsAulas .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;
}
.VoltaAsAulas .sidebar .sidebar-nav {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  /* Estilos de links, etc. */
}
.VoltaAsAulas .sidebar .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.VoltaAsAulas .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;
}
.VoltaAsAulas .sidebar .sidebar-nav a:hover {
  background-color: #b7e3fc;
  color: #00acdd;
  transform: translateX(5px);
  font-weight: 700;
}
.VoltaAsAulas .sidebar .sidebar-nav a.active,
.VoltaAsAulas .sidebar .sidebar-nav a#destaque.active {
  background-color: #b7e3fc;
  color: #00acdd;
  font-weight: 700;
  transition: all 400ms;
}
.VoltaAsAulas .sidebar .sidebar-nav a i {
  font-size: 18px;
  padding: 0 8px 0 0;
  width: 25px;
  text-align: center;
}
@media (max-width: 1195px) {
  .VoltaAsAulas .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;
  }
  .VoltaAsAulas .sidebar.open {
    opacity: 1;
    visibility: visible;
    transition: all 400ms;
    transform: translateY(0px);
    pointer-events: auto;
    border-radius: 0px 0px 0px 8px;
  }
}
.VoltaAsAulas .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 */
}
.VoltaAsAulas .sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0s 0s;
}
@media (min-width: 1px) {
  .VoltaAsAulas .sidebar-overlay {
    display: none;
  }
}
.VoltaAsAulas .banner-section {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
}
.VoltaAsAulas .banner-section img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.VoltaAsAulas .banner-section .banner-overlay {
  position: absolute;
  inset: 0;
  border-bottom: 12px solid #ff5959;
}
.VoltaAsAulas .banner-section .banner_1920 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #000000;
}
.VoltaAsAulas .banner-section .banner_1480, .VoltaAsAulas .banner-section .banner_1024, .VoltaAsAulas .banner-section .banner_768, .VoltaAsAulas .banner-section .banner_540 {
  display: none;
}
@media (max-width: 1480px) {
  .VoltaAsAulas .banner-section .banner_1480 {
    display: block;
  }
  .VoltaAsAulas .banner-section .banner_1920, .VoltaAsAulas .banner-section .banner_1024, .VoltaAsAulas .banner-section .banner_768, .VoltaAsAulas .banner-section .banner_540 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .VoltaAsAulas .banner-section .banner_1024 {
    display: block;
  }
  .VoltaAsAulas .banner-section .banner_1920, .VoltaAsAulas .banner-section .banner_1480, .VoltaAsAulas .banner-section .banner_768, .VoltaAsAulas .banner-section .banner_540 {
    display: none;
  }
}
@media (max-width: 768px) {
  .VoltaAsAulas .banner-section .banner_768 {
    display: block;
  }
  .VoltaAsAulas .banner-section .banner_1920, .VoltaAsAulas .banner-section .banner_1480, .VoltaAsAulas .banner-section .banner_1024, .VoltaAsAulas .banner-section .banner_540 {
    display: none;
  }
}
@media (max-width: 540px) {
  .VoltaAsAulas .banner-section .banner_540 {
    display: block;
  }
  .VoltaAsAulas .banner-section .banner_1920, .VoltaAsAulas .banner-section .banner_1480, .VoltaAsAulas .banner-section .banner_1024, .VoltaAsAulas .banner-section .banner_768 {
    display: none;
  }
}
.VoltaAsAulas .showcase-section {
  padding: 3rem 0;
  background: #fff2c8;
  /*background-image: radial-gradient(var(--light-gray) 1px, transparent 1px);
  background-size: 20px 20px;*/
  width: 100%;
  border-radius: 60px 0 0 0;
}
.VoltaAsAulas .showcase-header {
  background-color: #571b4c;
  padding: 15px 10px;
  border-radius: 20px 10px 20px 10px;
}
.VoltaAsAulas .showcase-header.VoltaAsAulasPromo {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    font-size: 22px;
    color: #ffd3df;
}
.VoltaAsAulas .showcase-header.VoltaAsAulasPromo h1{font-size: 22px;}
.VoltaAsAulas .showcase-header.VoltaAsAulasPromo h2 {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}
.VoltaAsAulas .showcase-title {
  font-size: 27px;
    font-weight: 700;
    color: #782a3e;
    margin: 0;
}
.VoltaAsAulas .product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .VoltaAsAulas .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .VoltaAsAulas .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1196px) {
  .VoltaAsAulas .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.VoltaAsAulas .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;
}
.VoltaAsAulas .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.VoltaAsAulas .product-card img {
  height: 224px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.VoltaAsAulas .product-card .product-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.VoltaAsAulas .product-card .category {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-red);
}
.VoltaAsAulas .product-card h3 {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
}
.VoltaAsAulas .product-card .description {
  margin-top: 8px;
  color: #6c757d;
  flex-grow: 1;
  margin-bottom: 16px;
}
.VoltaAsAulas .product-card .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.VoltaAsAulas .product-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
}
.VoltaAsAulas .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;
}
.VoltaAsAulas .product-card .buy-button:hover {
  background-color: #a71d26;
  transform: scale(1.05);
}
.VoltaAsAulas .product-card .buy-button.green {
  background-color: var(--green);
}
.VoltaAsAulas .product-card .buy-button.green:hover {
  background-color: #1e8449;
}
.VoltaAsAulas .fade-in-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transform: translateY(20px);
}
.VoltaAsAulas .fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=40anos.css.map */