/*--------------------------------------------------------------
# Variáveis CSS e Reset
--------------------------------------------------------------*/
:root {
  --primary-color: #6ac5ca;
  --primary-dark: #4ba3a8;
  --primary-light: #8de2e7;
  --accent-color: #ff9d66;
  --secondary-color: #f5c8d0;
  --text-color: #2b3d4f;
  --light-text: #607489;
  --white: #ffffff;
  --light-bg: #f3f9fb;
  --dark-bg: #2b3d4f;
  --border-color: #e0f2f3;
  --shadow: 0 5px 20px rgba(106, 197, 202, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --border-radius-sm: 6px;
  
  /* Fontes */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
}

/*--------------------------------------------------------------
# SCROLL PERSONALIZADO E LIMPO
--------------------------------------------------------------*/
/* Scroll principal da página */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--light-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
  transform: scale(1.1);
}

/* Scroll da sidebar - mais fino */
.sidebar::-webkit-scrollbar,
.sidebar-content::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track,
.sidebar-content::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: var(--border-radius-sm);
}

.sidebar::-webkit-scrollbar-thumb,
.sidebar-content::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--border-radius-sm);
}

.sidebar::-webkit-scrollbar-thumb:hover,
.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-bg);
}


/*--------------------------------------------------------------
# Header Desktop
--------------------------------------------------------------*/
.desktop-header {
  padding: 15px 0;
  background: linear-gradient(to bottom, #f0fafc, #e6f7f8);
  position: relative;
}

.desktop-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
}

.logo-link {
  display: block;
  position: relative;
  z-index: 1;
}

.logo-img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: translateY(-3px);
}

/* Busca */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  font-size: 14px;
  background-color: var(--white);
  box-shadow: 0 3px 10px rgba(106, 197, 202, 0.1);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(106, 197, 202, 0.2);
}

.search-input::placeholder {
  color: var(--light-text);
  font-style: italic;
}

.search-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 8px rgba(75, 163, 168, 0.3);
}

.search-button:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 12px rgba(75, 163, 168, 0.4);
}

.search-button i {
  color: var(--white);
  font-size: 16px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: var(--text-color);
  position: relative;
  margin-left: 20px;
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.header-action-link:hover {
  background-color: rgba(106, 197, 202, 0.1);
  transform: translateY(-2px);
}

.header-action-link i {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--primary-dark);
  transition: var(--transition);
}

.header-action-link:hover i {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--accent-color);
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.user-info:hover {
  background-color: rgba(106, 197, 202, 0.1);
}

.user-info i {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

#userDropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
  margin-top: 15px;
  border-top: 3px solid var(--primary-color);
  animation: fadeIn 0.3s ease;
}

#userDropdown:before {
  content: '';
  position: absolute;
  top: -10px;
  right: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid var(--primary-color);
}

#userDropdown a {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text-color);
}

#userDropdown a:hover {
  background-color: var(--light-bg);
  padding-left: 25px;
}

#userDropdown a i {
  margin-right: 12px;
  font-size: 16px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/*--------------------------------------------------------------
# Menu de Categorias Desktop
--------------------------------------------------------------*/
.category-nav {
  background-color: var(--primary-color);
  position: relative;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-menu {
  display: flex;
  justify-content: center;
  position: relative;
}

.category-item {
  position: relative;
}

.category-link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.category-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.category-link:hover:before,
.category-item:hover .category-link:before {
  width: 80%;
}

.category-link i {
  margin-right: 10px;
  font-size: 18px;
  transition: var(--transition);
}

.category-link:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

.category-link:hover i {
  transform: scale(1.2);
}

.admin-link {
  color: #ffeb3b;
}

.admin-link i {
  color: #ffeb3b;
}

/* Dropdown */
.category-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 600px;
  background-color: var(--white);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 100;
  border-top: 3px solid var(--accent-color);
}

.category-item:hover .category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-column {
  flex: 1;
  padding: 25px;
}

.dropdown-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.dropdown-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.dropdown-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.dropdown-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
}

.dropdown-list a {
  color: var(--text-color);
  font-size: 14px;
  transition: var(--transition);
}

.dropdown-list a:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

/* Featured in Dropdown */
.dropdown-featured {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.featured-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.featured-label {
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  background-color: var(--accent-color);
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  transform: rotate(-2deg);
}

.featured-title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.featured-link {
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: var(--transition);
}

.featured-link:hover {
  color: var(--white);
  background-color: var(--primary-dark);
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Header Mobile
--------------------------------------------------------------*/
.mobile-header {
  background: linear-gradient(to bottom, #f0fafc, #e6f7f8);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mobile-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
}

.mobile-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(106, 197, 202, 0.1);
  transition: var(--transition);
}

.menu-toggle:hover {
  background-color: rgba(106, 197, 202, 0.2);
}

.mobile-logo {
  display: block;
}

.logo-mobile-img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cart-icon {
  position: relative;
  font-size: 22px;
  color: var(--primary-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(106, 197, 202, 0.1);
  transition: var(--transition);
}

.cart-icon:hover {
  background-color: rgba(106, 197, 202, 0.2);
}

.mobile-search-bar {
  padding: 0 15px 12px;
}

.mobile-search-bar .search-input {
  box-shadow: 0 2px 8px rgba(106, 197, 202, 0.15);
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: var(--white);
  z-index: 2000;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 15px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  color: var(--white);
}

.mobile-menu-header h5 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.close-menu {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.close-menu:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 15px 0;
}

.mobile-user {
  padding: 0 15px 15px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.user-greeting {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
}

.user-greeting i {
  font-size: 30px;
  margin-right: 12px;
  color: var(--primary-dark);
}

.user-actions {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.user-action {
  flex: 1;
  min-width: 50%;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
}

.user-action:before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: var(--primary-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.user-action:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.user-action i {
  margin-right: 8px;
  color: var(--primary-dark);
  font-size: 16px;
}

.login-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  padding: 12px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.login-link:hover {
  background-color: var(--primary-light);
}

.login-link i {
  font-size: 24px;
  margin-right: 12px;
  color: var(--primary-dark);
}

.mobile-categories {
  padding: 0 15px;
}

.mobile-category {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

.mobile-category i {
  margin-right: 10px;
  font-size: 16px;
  color: var(--primary-dark);
  width: 20px;
  text-align: center;
}

.mobile-category .submenu-toggle {
  margin-left: auto;
  transition: var(--transition);
}

.mobile-category .submenu-toggle.active {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding-left: 30px;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-contact {
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  border-top: 1px solid var(--border-color);
  margin-top: 10px;
}

.contact-link, .tracking-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
  font-size: 14px;
}

.contact-link i, .tracking-link i {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.contact-link:hover, .tracking-link:hover {
  color: var(--primary-dark);
}

/* Animação para os submenus */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-submenu.active {
  animation: slideDown 0.3s ease forwards;
}

/*--------------------------------------------------------------
# Seção de Benefícios
--------------------------------------------------------------*/
.benefits-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0fafc, #e6f7f8);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(106, 197, 202, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# GRID DESKTOP (Mostra até tablet)
--------------------------------------------------------------*/
.benefits-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 
    0 8px 25px rgba(106, 197, 202, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid rgba(106, 197, 202, 0.1);
  backdrop-filter: blur(15px);
  height: 100%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 250px;
}

/* Efeito de brilho no hover */
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(106, 197, 202, 0.15), 
    transparent
  );
  transition: left 0.6s ease;
}

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(106, 197, 202, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(106, 197, 202, 0.3);
}

/* Ícone melhorado */
.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 
    0 6px 20px rgba(106, 197, 202, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(8px);
}

.benefit-item:hover .benefit-icon::before {
  opacity: 0.7;
}

.benefit-icon i {
  color: var(--white);
  font-size: 28px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 10px 30px rgba(106, 197, 202, 0.5),
    inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.benefit-item:hover .benefit-icon i {
  transform: scale(1.1);
}

/* Texto melhorado */
.benefit-text {
  flex: 1;
  z-index: 2;
  position: relative;
}

.benefit-text h6 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--heading-font);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.benefit-text p {
  margin: 0;
  font-size: 15px;
  color: var(--light-text);
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-text h6 {
  color: var(--primary-dark);
}

.benefit-item:hover .benefit-text p {
  color: var(--text-color);
}

/*--------------------------------------------------------------
# CARROSSEL MOBILE INFINITO (UMA LINHA SÓ)
--------------------------------------------------------------*/
.mobile-carousel-container {
  display: none; /* Escondido por padrão */
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 130px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(106, 197, 202, 0.2);
}

.mobile-carousel {
  display: flex;
  animation: infiniteLoop 12s linear infinite;
  will-change: transform;
  height: 100%;
}

/* Animação de loop infinito */
@keyframes infiniteLoop {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Items do carrossel mobile */
.mobile-carousel .benefit-item {
  flex: 0 0 280px;
  margin-right: 20px;
  padding: 20px 18px;
  min-height: auto;
  height: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  min-width: auto;
}

.mobile-carousel .benefit-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.mobile-carousel .benefit-icon i {
  font-size: 22px;
}

.mobile-carousel .benefit-text h6 {
  font-size: 15px;
  margin-bottom: 5px;
}

.mobile-carousel .benefit-text p {
  font-size: 13px;
}

/*--------------------------------------------------------------
# RESPONSIVIDADE
--------------------------------------------------------------*/

/* Desktop grande */
@media (min-width: 1200px) {
  .benefits-row {
    gap: 35px;
  }
  
  .benefit-item {
    padding: 35px 30px;
  }
  
  .benefit-icon {
    width: 75px;
    height: 75px;
  }
  
  .benefit-icon i {
    font-size: 30px;
  }
}

/* Desktop médio */
@media (max-width: 1199px) {
  .benefits-row {
    gap: 25px;
  }
  
  .benefit-item {
    padding: 28px 22px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .benefits-row {
    gap: 20px;
  }
  
  .benefit-item {
    padding: 25px 20px;
    min-height: 110px;
    min-width: 200px;
  }
  
  .benefit-icon {
    width: 65px;
    height: 65px;
  }
  
  .benefit-icon i {
    font-size: 26px;
  }
}

/* Mobile - ATIVAR SÓ O CARROSSEL */
@media (max-width: 768px) {
  .benefits-section {
    padding: 50px 0;
  }
  
  /* Esconder row desktop */
  .benefits-row {
    display: none;
  }
  
  /* Mostrar carrossel mobile */
  .mobile-carousel-container {
    display: block;
  }
  
  .mobile-carousel .benefit-item {
    flex: 0 0 260px;
    margin-right: 15px;
  }
}

/* Mobile pequeno */
@media (max-width: 576px) {
  .mobile-carousel-container {
    height: 120px;
  }
  
  .mobile-carousel .benefit-item {
    flex: 0 0 240px;
    margin-right: 12px;
    padding: 18px 15px;
  }
  
  .mobile-carousel .benefit-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
  
  .mobile-carousel .benefit-icon i {
    font-size: 20px;
  }
  
  .mobile-carousel .benefit-text h6 {
    font-size: 14px;
  }
  
  .mobile-carousel .benefit-text p {
    font-size: 12px;
  }
}

/* Mobile muito pequeno */
@media (max-width: 400px) {
  .mobile-carousel-container {
    height: 110px;
  }
  
  .mobile-carousel .benefit-item {
    flex: 0 0 220px;
    margin-right: 10px;
    padding: 15px 12px;
  }
  
  .mobile-carousel .benefit-icon {
    width: 42px;
    height: 42px;
  }
  
  .mobile-carousel .benefit-icon i {
    font-size: 18px;
  }
  
  .mobile-carousel .benefit-text h6 {
    font-size: 13px;
  }
  
  .mobile-carousel .benefit-text p {
    font-size: 11px;
  }
}

/* Animações extras */
@keyframes benefitFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-item {
  animation: benefitFadeIn 0.6s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

/*--------------------------------------------------------------
# Seção Promocional Mágica - Design Revolucionário
--------------------------------------------------------------*/
.magic-promo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fafc, #e6f7f8);
  position: relative;
  overflow: hidden;
}

/* Background com elementos flutuantes */
.magic-promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(106, 197, 202, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 157, 102, 0.06) 0%, transparent 50%);
  background-size: 60px 60px, 80px 80px;
  animation: backgroundDrift 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes backgroundDrift {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-15px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-5px); }
}

/*--------------------------------------------------------------
# Elementos Flutuantes Decorativos
--------------------------------------------------------------*/
.promo-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  font-size: 24px;
  opacity: 0.7;
  animation: shapeFloat 12s ease-in-out infinite;
}

.floating-shape.shape-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-shape.shape-2 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape.shape-3 {
  top: 60%;
  left: 8%;
  animation-delay: 4s;
}

.floating-shape.shape-4 {
  top: 70%;
  right: 15%;
  animation-delay: 6s;
}

.floating-shape.shape-5 {
  top: 30%;
  left: 85%;
  animation-delay: 8s;
}

.floating-shape.shape-6 {
  top: 80%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes shapeFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.7; 
  }
  25% { 
    transform: translateY(-20px) rotate(90deg) scale(1.1); 
    opacity: 0.9; 
  }
  50% { 
    transform: translateY(-30px) rotate(180deg) scale(1.2); 
    opacity: 1; 
  }
  75% { 
    transform: translateY(-20px) rotate(270deg) scale(1.1); 
    opacity: 0.9; 
  }
}

/*--------------------------------------------------------------
# Card Promocional Principal
--------------------------------------------------------------*/
.magic-promo-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(106, 197, 202, 0.2);
  margin-bottom: 60px;
  z-index: 2;
}

/* Background com múltiplas camadas */
.promo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-gradient-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.layer-1 {
  background: linear-gradient(135deg, 
    #667eea 0%, 
    #764ba2 50%, 
    #f093fb 100%
  );
  animation: gradientShift 8s ease-in-out infinite;
}

.layer-2 {
  background: linear-gradient(45deg, 
    rgba(255, 154, 158, 0.6) 0%, 
    rgba(250, 208, 196, 0.6) 50%, 
    rgba(255, 209, 220, 0.6) 100%
  );
  animation: gradientShift 12s ease-in-out infinite reverse;
}

.layer-3 {
  background: linear-gradient(90deg, 
    rgba(168, 237, 234, 0.4) 0%, 
    rgba(254, 214, 227, 0.4) 100%
  );
  animation: gradientShift 16s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: translateX(0%) scale(1); }
  50% { transform: translateX(5%) scale(1.05); }
}

/* Padrões geométricos */
.geometric-patterns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pattern {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.pattern-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  animation: patternFloat 15s ease-in-out infinite;
}

.pattern-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  bottom: -30px;
  left: -30px;
  animation: patternFloat 20s ease-in-out infinite reverse;
}

.pattern-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: patternPulse 10s ease-in-out infinite;
}

@keyframes patternFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes patternPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.5); }
}

/* Partículas mágicas */
.magic-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.magic-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.9) 0%, 
    transparent 70%
  );
  border-radius: 50%;
  animation: magicParticleFloat 10s linear infinite;
}

.magic-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.magic-particles .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1.5s; }
.magic-particles .particle:nth-child(3) { top: 40%; left: 20%; animation-delay: 3s; }
.magic-particles .particle:nth-child(4) { top: 60%; left: 90%; animation-delay: 4.5s; }
.magic-particles .particle:nth-child(5) { top: 80%; left: 30%; animation-delay: 6s; }
.magic-particles .particle:nth-child(6) { top: 30%; left: 70%; animation-delay: 7.5s; }
.magic-particles .particle:nth-child(7) { top: 70%; left: 60%; animation-delay: 9s; }
.magic-particles .particle:nth-child(8) { top: 90%; left: 50%; animation-delay: 10.5s; }

@keyframes magicParticleFloat {
  0% { 
    transform: translateY(0px) scale(0); 
    opacity: 0; 
  }
  10% { 
    transform: translateY(-20px) scale(1); 
    opacity: 1; 
  }
  90% { 
    transform: translateY(-300px) scale(1.2); 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-320px) scale(0); 
    opacity: 0; 
  }
}

/*--------------------------------------------------------------
# Conteúdo do Card
--------------------------------------------------------------*/
.promo-content-wrapper {
  position: relative;
  z-index: 3;
  padding: 60px 40px;
}

.promo-content {
  color: white;
}

/* Badge Mágico */
.magic-promo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.9), 
    rgba(255, 69, 0, 0.9), 
    rgba(255, 20, 147, 0.9)
  );
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  transform: rotate(-2deg);
  box-shadow: 
    0 10px 30px rgba(255, 69, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  animation: badgeWiggle 4s ease-in-out infinite;
}

.badge-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.5), 
    rgba(255, 69, 0, 0.5), 
    rgba(255, 20, 147, 0.5)
  );
  border-radius: 30px;
  filter: blur(10px);
  z-index: -1;
  animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeWiggle {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  25% { transform: rotate(2deg) scale(1.05); }
  75% { transform: rotate(-1deg) scale(1.02); }
}

@keyframes badgeGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.badge-icon {
  font-size: 16px;
  animation: iconFlicker 2s ease-in-out infinite;
}

@keyframes iconFlicker {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.badge-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.badge-sparkles .sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkleFlash 3s ease-in-out infinite;
}

.badge-sparkles .sparkle:nth-child(1) { top: 10%; right: 20%; animation-delay: 0s; }
.badge-sparkles .sparkle:nth-child(2) { bottom: 15%; left: 25%; animation-delay: 1s; }
.badge-sparkles .sparkle:nth-child(3) { top: 60%; right: 10%; animation-delay: 2s; }

@keyframes sparkleFlash {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Título Mágico */
.magic-promo-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  font-family: var(--heading-font);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-line {
  display: flex;
  gap: 15px;
  align-items: baseline;
}

.word {
  position: relative;
  transition: all 0.4s ease;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

.word:hover {
  transform: scale(1.1) rotate(2deg);
  text-shadow: 6px 6px 18px rgba(0, 0, 0, 0.7);
}

.word.highlight {
  background: linear-gradient(45deg, 
    #ffd700, #ffeb3b, #ff9800, #ff5722
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: highlightGlow 3s ease-in-out infinite;
  font-size: 4rem;
}

@keyframes highlightGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Separador */
.title-separator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0;
  max-width: 300px;
}

.sep-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.8), 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  border-radius: 10px;
}

.sep-crystal {
  margin: 0 20px;
  font-size: 20px;
  animation: crystalTwirl 4s linear infinite;
}

@keyframes crystalTwirl {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Descrição */
.magic-promo-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

/* Botão Mágico */
.promo-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.magic-promo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.9), 
    rgba(255, 255, 255, 1)
  );
  transition: all 0.8s ease;
  z-index: 1;
}

.magic-promo-button:hover .btn-bg {
  left: 0;
}

.magic-promo-button:hover {
  color: var(--text-color);
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.btn-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-icon {
  transition: all 0.4s ease;
}

.magic-promo-button:hover .btn-icon {
  transform: translateX(8px) rotate(20deg);
}

.btn-effects {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.btn-effects .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: buttonRipple 3s ease-out infinite;
}

.btn-effects .ripple:nth-child(2) { animation-delay: 1s; }
.btn-effects .ripple:nth-child(3) { animation-delay: 2s; }

@keyframes buttonRipple {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 400px; height: 400px; opacity: 0; }
}

/* Timer de Oferta */
.offer-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 69, 0, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 69, 0, 0.3);
  animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.timer-icon {
  font-size: 16px;
  animation: timerTick 1s ease-in-out infinite;
}

@keyframes timerTick {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

.timer-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Seção da Imagem
--------------------------------------------------------------*/
.promo-image-container {
  position: relative;
  padding: 40px;
}

/* Decorações da Imagem */
.image-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: decorationFloat 12s ease-in-out infinite;
}

.circle-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 69, 0, 0.3));
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(74, 172, 254, 0.3), rgba(0, 242, 254, 0.3));
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
}

.circle-3 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 154, 158, 0.3), rgba(240, 147, 251, 0.3));
  top: 60%;
  right: 20%;
  animation-delay: 8s;
}

@keyframes decorationFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  33% { transform: translateY(-20px) scale(1.1); }
  66% { transform: translateY(10px) scale(0.9); }
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.float-icon {
  position: absolute;
  font-size: 20px;
  opacity: 0.8;
  animation: iconOrbit 15s linear infinite;
}

.icon-1 {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.icon-2 {
  top: 25%;
  right: 10%;
  animation-delay: 3.75s;
}

.icon-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 7.5s;
}

.icon-4 {
  bottom: 20%;
  right: 20%;
  animation-delay: 11.25s;
}

@keyframes iconOrbit {
  0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

/* Imagem Principal */
.magic-promo-image {
  position: relative;
  z-index: 2;
}

.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(2deg);
  transition: all 0.6s ease;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 10px 25px rgba(106, 197, 202, 0.3);
}

.magic-promo-image:hover .image-frame {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.3),
    0 15px 35px rgba(106, 197, 202, 0.4);
}

.frame-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, 
    rgba(106, 197, 202, 0.4), 
    rgba(255, 157, 102, 0.4), 
    rgba(245, 200, 208, 0.4)
  );
  border-radius: 35px;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.magic-promo-image:hover .frame-glow {
  opacity: 1;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(106, 197, 202, 0.1) 0%, 
    rgba(255, 157, 102, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.magic-promo-image:hover .image-overlay {
  opacity: 1;
}

.overlay-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.overlay-sparkles .sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  border-radius: 50%;
  animation: overlaySparkle 4s ease-in-out infinite;
}

.overlay-sparkles .sparkle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.overlay-sparkles .sparkle:nth-child(2) { top: 40%; right: 25%; animation-delay: 1s; }
.overlay-sparkles .sparkle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.overlay-sparkles .sparkle:nth-child(4) { bottom: 50%; right: 30%; animation-delay: 3s; }
.overlay-sparkles .sparkle:nth-child(5) { top: 60%; left: 50%; animation-delay: 0.5s; }

@keyframes overlaySparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
}

/* Badge de Desconto Flutuante */
.floating-discount {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 3;
  animation: discountBounce 3s ease-in-out infinite;
}

@keyframes discountBounce {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

.discount-badge {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  text-align: center;
  border-radius: 50%;
  box-shadow: 
    0 10px 30px rgba(255, 69, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.discount-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    #ff4757, #ff3742, #ff6b6b
  );
  border-radius: 50%;
  animation: discountPulse 2s ease-in-out infinite;
}

@keyframes discountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.discount-percent {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 1;
  font-family: var(--heading-font);
}

.discount-text {
  position: relative;
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
}

/* Estatísticas Flutuantes */
.floating-stats {
  position: absolute;
  z-index: 3;
}

.stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 18px;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  animation: statFloat 6s ease-in-out infinite;
}

.stat-1 {
  bottom: 60px;
  left: -30px;
  animation-delay: 0s;
}

.stat-2 {
  top: 40px;
  left: -40px;
  animation-delay: 3s;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.stat-icon {
  font-size: 16px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 10px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Responsividade da Seção Promocional */
@media (max-width: 1200px) {
  .magic-promo-title {
    font-size: 3rem;
  }
  
  .word.highlight {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .promo-content-wrapper {
    padding: 50px 30px;
  }
  
  .magic-promo-title {
    font-size: 2.5rem;
  }
  
  .word.highlight {
    font-size: 3rem;
  }
  
  .floating-stats {
    display: none;
  }
}

@media (max-width: 768px) {
  .magic-promo-section {
    padding: 80px 0;
  }
  
  .promo-content-wrapper {
    padding: 40px 25px;
  }
  
  .magic-promo-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .title-line {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .word.highlight {
    font-size: 2.5rem;
  }
  
  .title-separator {
    max-width: 100%;
    justify-content: center;
  }
  
  .magic-promo-description {
    text-align: center;
    margin: 0 auto 30px;
  }
  
  .promo-action {
    align-items: center;
  }
  
  .floating-discount {
    top: 10px;
    right: 10px;
  }
  
  .discount-badge {
    width: 60px;
    height: 60px;
  }
  
  .discount-percent {
    font-size: 16px;
  }
  
  .discount-text {
    font-size: 8px;
  }
}

@media (max-width: 576px) {
  .magic-promo-section {
    padding: 60px 0;
  }
  
  .promo-content-wrapper {
    padding: 30px 20px;
  }
  
  .magic-promo-title {
    font-size: 1.8rem;
  }
  
  .word.highlight {
    font-size: 2rem;
  }
  
  .magic-promo-description {
    font-size: 16px;
  }
  
  .magic-promo-button {
    padding: 18px 30px;
    font-size: 14px;
  }
  
  .promo-image-container {
    padding: 30px 20px;
    margin-top: 30px;
  }
  
  .floating-shape {
    display: none;
  }
}

/*--------------------------------------------------------------
# Seção Novidades Mágicas - Design Revolucionário
--------------------------------------------------------------*/
.magic-novelties-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fafc, #e6f7f8);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Elementos flutuantes de fundo */
.magic-novelties-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(106, 197, 202, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 157, 102, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(245, 200, 208, 0.05) 0%, transparent 50%);
  animation: floatingBackground 30s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatingBackground {
  0%, 100% { transform: translateY(0px) scale(1); }
  33% { transform: translateY(-20px) scale(1.02); }
  66% { transform: translateY(10px) scale(0.98); }
}

/*--------------------------------------------------------------
# Header Mágico
--------------------------------------------------------------*/
.magic-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

/* Elementos flutuantes no header */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.magic-star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  border-radius: 50%;
  animation: starFloat 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.magic-star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.magic-star:nth-child(2) { top: 20%; right: 20%; animation-delay: 1.2s; }
.magic-star:nth-child(3) { top: 30%; left: 70%; animation-delay: 2.4s; }
.magic-star:nth-child(4) { top: 50%; left: 10%; animation-delay: 3.6s; }
.magic-star:nth-child(5) { top: 40%; right: 10%; animation-delay: 4.8s; }

@keyframes starFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1) rotate(0deg); 
    opacity: 0.7; 
  }
  50% { 
    transform: translateY(-30px) scale(1.3) rotate(180deg); 
    opacity: 1; 
  }
}

/* Badge mágico */
.magic-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.9), 
    rgba(255, 193, 7, 0.9), 
    rgba(255, 152, 0, 0.9)
  );
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 
    0 10px 30px rgba(255, 193, 7, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 193, 7, 0.3), 
    rgba(255, 152, 0, 0.3)
  );
  border-radius: 50px;
  filter: blur(8px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.badge-icon {
  font-size: 18px;
  animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Título mágico */
.magic-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 30px;
  font-family: var(--heading-font);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.title-word {
  position: relative;
  background: linear-gradient(45deg, 
    #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowText 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.title-word:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes rainbowText {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

/* Separador cristal */
.magic-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.separator-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(106, 197, 202, 0.5), 
    rgba(255, 157, 102, 0.5), 
    transparent
  );
  border-radius: 10px;
}

.separator-crystal {
  margin: 0 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9), 
    rgba(106, 197, 202, 0.3)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: crystalSpin 6s linear infinite;
  box-shadow: 
    0 10px 30px rgba(106, 197, 202, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.crystal-inner {
  font-size: 24px;
  animation: crystalFloat 3s ease-in-out infinite;
}

@keyframes crystalSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes crystalFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Subtítulo */
.magic-subtitle {
  font-size: 1.3rem;
  color: var(--light-text);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .magic-title {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }
  
  .title-word {
    flex-shrink: 0 !important;
  }
}
/*--------------------------------------------------------------
# Grid de Cards Mágicos
--------------------------------------------------------------*/
.magic-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* Card Principal */
.magic-card {
  position: relative;
  height: 550px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.05);
  transform: perspective(1000px) rotateY(0deg);
}

.magic-card:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-25px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.2),
    0 20px 40px rgba(106, 197, 202, 0.15);
}

/* Background com imagem */
.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
  filter: brightness(0.7) saturate(1.3);
}

.magic-card:hover .bg-image {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(0.9) saturate(1.5);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: all 0.6s ease;
}

/* Overlays específicos por categoria */
.magic-card[data-category="meninos"] .bg-overlay {
  background: linear-gradient(135deg,
    rgba(74, 172, 254, 0.6) 0%,
    rgba(0, 242, 254, 0.3) 50%,
    rgba(102, 126, 234, 0.8) 100%
  );
}

.magic-card[data-category="meninas"] .bg-overlay {
  background: linear-gradient(135deg,
    rgba(255, 154, 158, 0.6) 0%,
    rgba(254, 207, 239, 0.3) 50%,
    rgba(240, 147, 251, 0.8) 100%
  );
}

.magic-card[data-category="acessorios"] .bg-overlay {
  background: linear-gradient(135deg,
    rgba(255, 216, 155, 0.6) 0%,
    rgba(252, 182, 159, 0.3) 50%,
    rgba(255, 144, 104, 0.8) 100%
  );
}

.magic-card[data-category="brinquedos"] .bg-overlay {
  background: linear-gradient(135deg,
    rgba(168, 237, 234, 0.6) 0%,
    rgba(132, 250, 176, 0.3) 50%,
    rgba(116, 185, 255, 0.8) 100%
  );
}

/* Partículas no background */
.bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-particles .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.8) 0%, 
    transparent 70%
  );
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
  opacity: 0;
}

.magic-card:hover .bg-particles .particle {
  opacity: 1;
}

.bg-particles .particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.bg-particles .particle:nth-child(2) { top: 30%; left: 70%; animation-delay: 1.5s; }
.bg-particles .particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 3s; }
.bg-particles .particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 4.5s; }
.bg-particles .particle:nth-child(5) { top: 40%; left: 10%; animation-delay: 6s; }
.bg-particles .particle:nth-child(6) { top: 70%; left: 60%; animation-delay: 7.5s; }

@keyframes particleFloat {
  0% { 
    transform: translateY(0px) scale(0); 
    opacity: 0; 
  }
  10% { 
    transform: translateY(-20px) scale(1); 
    opacity: 1; 
  }
  90% { 
    transform: translateY(-200px) scale(1.2); 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-220px) scale(0); 
    opacity: 0; 
  }
}

/* Conteúdo do Card */
.card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header do Card */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.category-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-bg {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}

/* Cores específicas dos ícones */
.magic-card[data-category="meninos"] .category-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.magic-card[data-category="meninos"] .icon-bg {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  filter: blur(10px);
}

.magic-card[data-category="meninas"] .category-icon {
  background: linear-gradient(135deg, #ff9a9e, #f093fb);
}

.magic-card[data-category="meninas"] .icon-bg {
  background: linear-gradient(135deg, #ff9a9e, #f093fb);
  filter: blur(10px);
}

.magic-card[data-category="acessorios"] .category-icon {
  background: linear-gradient(135deg, #ffd89b, #fcb69f);
}

.magic-card[data-category="acessorios"] .icon-bg {
  background: linear-gradient(135deg, #ffd89b, #fcb69f);
  filter: blur(10px);
}

.magic-card[data-category="brinquedos"] .category-icon {
  background: linear-gradient(135deg, #a8edea, #84fab0);
}

.magic-card[data-category="brinquedos"] .icon-bg {
  background: linear-gradient(135deg, #a8edea, #84fab0);
  filter: blur(10px);
}

.category-icon i {
  font-size: 32px;
  color: white;
  z-index: 2;
  position: relative;
  transition: all 0.6s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.magic-card[data-category="acessorios"] .category-icon i,
.magic-card[data-category="brinquedos"] .category-icon i {
  color: var(--text-color);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.magic-card:hover .category-icon {
  transform: scale(1.2) rotate(15deg);
}

.magic-card:hover .icon-bg {
  opacity: 1;
  transform: scale(1.3);
}

.card-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--heading-font);
  line-height: 1;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease;
}

.magic-card:hover .card-number {
  color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
  text-shadow: 6px 6px 18px rgba(0, 0, 0, 0.7);
}

/* Informações do Card */
.card-info {
  flex: 1;
  text-align: center;
  color: white;
}

.category-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.magic-card:hover .category-tag {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.card-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease;
}

.magic-card:hover .card-title {
  transform: scale(1.05);
  text-shadow: 6px 6px 18px rgba(0, 0, 0, 0.8);
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

/* Estatísticas */
.card-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  flex: 1;
  max-width: 140px;
  justify-content: center;
}

.magic-card:hover .stat {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.stat-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--heading-font);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 11px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Ação do Card */
.card-action {
  margin-top: auto;
}

/* Botão Mágico */
.magic-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 35px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  width: 100%;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 255, 255, 0.1)
  );
  transition: all 0.8s ease;
  z-index: 1;
}

.magic-button:hover .btn-bg {
  left: 0;
  background: rgba(255, 255, 255, 0.95);
}

.magic-button:hover {
  color: var(--text-color);
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.btn-text {
  position: relative;
  z-index: 3;
}

.btn-effects {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  animation: rippleEffect 2s ease-out infinite;
}

.ripple:nth-child(2) { animation-delay: 0.7s; }
.ripple:nth-child(3) { animation-delay: 1.4s; }

@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.btn-arrow {
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}

.magic-button:hover .btn-arrow {
  transform: translateX(8px) rotate(20deg);
}

/* Efeitos Mágicos do Card */
.card-magic-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.floating-emoji {
  position: absolute;
  font-size: 24px;
  opacity: 0;
  transition: all 0.6s ease;
  animation: emojiFloat 8s ease-in-out infinite;
}

.magic-card:hover .floating-emoji {
  opacity: 0.8;
}

.floating-emoji:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 2.5s;
}

.floating-emoji:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 5s;
}

@keyframes emojiFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.6; 
  }
  25% { 
    transform: translateY(-15px) rotate(90deg) scale(1.2); 
    opacity: 0.8; 
  }
  50% { 
    transform: translateY(-25px) rotate(180deg) scale(1.4); 
    opacity: 1; 
  }
  75% { 
    transform: translateY(-15px) rotate(270deg) scale(1.2); 
    opacity: 0.8; 
  }
}

/*--------------------------------------------------------------
# Footer Mágico
--------------------------------------------------------------*/
.magic-footer {
  text-align: center;
  margin-top: 60px;
}

.footer-decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.magic-heart {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, 
    #ff6b6b, #ee5a24, #ff9ff3, #54a0ff
  );
  background-size: 300% 300%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeatRainbow 3s ease-in-out infinite;
  box-shadow: 
    0 20px 50px rgba(255, 107, 107, 0.4),
    inset 0 4px 8px rgba(255, 255, 255, 0.3);
}

.heart-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.3), 
    rgba(238, 90, 36, 0.3), 
    rgba(255, 159, 243, 0.3), 
    rgba(84, 160, 255, 0.3)
  );
  filter: blur(15px);
  animation: heartGlow 3s ease-in-out infinite;
}

@keyframes heartbeatRainbow {
  0%, 100% { 
    transform: scale(1); 
    background-position: 0% 50%;
  }
  50% { 
    transform: scale(1.15); 
    background-position: 100% 50%;
  }
}

@keyframes heartGlow {
  0%, 100% { 
    opacity: 0.7; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2); 
  }
}

.magic-heart i {
  color: white;
  font-size: 40px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: heartIconPulse 3s ease-in-out infinite;
}

@keyframes heartIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2) rotate(10deg); }
}

.footer-text p {
  font-size: 1.4rem;
  color: var(--light-text);
  font-weight: 600;
  margin: 0;
  background: linear-gradient(45deg, 
    var(--light-text), 
    var(--primary-color), 
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Responsividade da Seção Novidades
--------------------------------------------------------------*/

/* Desktop grande */
@media (max-width: 1400px) {
  .magic-cards-grid {
    gap: 25px;
  }
  
  .magic-card {
    height: 520px;
  }
}

/* Desktop médio */
@media (max-width: 1200px) {
  .magic-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .magic-title {
    font-size: 3.5rem;
  }
}

/* Tablet grande */
@media (max-width: 900px) {
  .magic-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .magic-title {
    font-size: 3rem;
  }
  
  .magic-card {
    height: 500px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .magic-novelties-section {
    padding: 80px 0;
  }
  
  .magic-header {
    margin-bottom: 60px;
  }
  
  .magic-title {
    font-size: 2.5rem;
    gap: 15px;
  }
  
  .magic-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 60px;
  }
  
  .magic-card {
    height: 480px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .category-icon i {
    font-size: 28px;
  }
  
  .card-number {
    font-size: 60px;
  }
  
  .card-title {
    font-size: 2rem;
  }
  
  .card-stats {
    gap: 15px;
  }
  
  .stat {
    max-width: 120px;
  }
  
  .magic-heart {
    width: 80px;
    height: 80px;
  }
  
  .magic-heart i {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .magic-novelties-section {
    padding: 60px 0;
  }
  
  .magic-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .magic-card {
    height: 450px;
  }
  
  .card-content {
    padding: 25px 20px;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .category-icon i {
    font-size: 24px;
  }
  
  .card-number {
    font-size: 50px;
  }
  
  .card-title {
    font-size: 1.8rem;
  }
  
  .card-description {
    font-size: 14px;
  }
  
  .card-stats {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .stat {
    max-width: 200px;
    width: 100%;
  }
  
  .magic-button {
    padding: 12px 20px;
    font-size: 11px;
    white-space: nowrap;
    min-width: 0;
  }
  
  .btn-text {
    font-size: 11px;
  }
  
  .footer-text p {
    font-size: 1.1rem;
  }
  
  .separator-crystal {
    width: 50px;
    height: 50px;
  }
  
  .crystal-inner {
    font-size: 20px;
  }
}

/* Mobile pequeno */
@media (max-width: 400px) {
  .magic-card {
    height: 420px;
  }
  
  .card-content {
    padding: 20px 15px;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .magic-button {
    padding: 10px 15px;
    gap: 8px;
    font-size: 10px;
  }
  
  .btn-text {
    font-size: 10px;
  }
  
  .btn-arrow {
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  background-color: #2C3E50;
  color: #fff;
  padding: 60px 0 0;
  background-image: linear-gradient(to bottom, #2C3E50, #1A2530);
}

.footer-about {
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  color: #E8F4FC;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(237, 242, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.2);
}

.social-link i {
  color: #fff;
  font-size: 16px;
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-link:hover i {
  color: #1A2530;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h5 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #A6D9FF;
}

.footer-links h5:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #E8F4FC;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 30px;
  border-top: 1px solid rgba(166, 217, 255, 0.15);
  background-color: rgba(14, 22, 33, 0.4);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #BFD7ED;
}

/* Ícones de pagamento */
.payment-methods {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.payment-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.payment-icon i {
  color: #E8F4FC;
  font-size: 22px;
}

.payment-icon:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Nova seção de créditos do desenvolvedor */
.developer-credits {
  background: rgba(7, 11, 16, 0.5);
  padding: 12px 0;
  margin-top: 0;
  position: relative;
  text-align: center;
  backdrop-filter: blur(5px);
}

.developer-credits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, 
    rgba(166, 217, 255, 0), 
    rgba(166, 217, 255, 0.3), 
    rgba(166, 217, 255, 0));
}

.developer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #BFD7ED;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.dev-text {
  font-size: 12px;
  opacity: 0.8;
  margin-right: 5px;
}

.dev-name {
  font-weight: 600;
  font-size: 14px;
  color: #A6D9FF;
  margin: 0 8px;
  position: relative;
}

.dev-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #A6D9FF;
  transition: width 0.3s ease;
}

.dev-icon {
  margin-left: 8px;
  font-size: 14px;
  color: #A6D9FF;
  opacity: 0.8;
}

.developer-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.developer-link:hover .dev-name::after {
  width: 100%;
}

.developer-link:hover .dev-icon {
  transform: rotate(15deg);
}

/* Adicione pequenas estrelas ao fundo */
.main-footer {
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.15;
  pointer-events: none;
}

/* Responsividade do footer */
@media (max-width: 767px) {
  .payment-methods {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-bottom .col-md-6 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Animações Gerais
--------------------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção Principal */
.kids-blog-section {
    background: linear-gradient(135deg, #fff5f5 0%, #f0f9ff 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.kids-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b9d" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%2345b7d1" opacity="0.1"/><circle cx="60" cy="70" r="2.5" fill="%2396ceb4" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

/* Header */
.blog-main-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d, #45b7d1, #96ceb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #45b7d1);
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #45b7d1, #96ceb4);
}

/* Post Principal */
.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.featured-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post:hover .featured-image {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,157,0.1), rgba(69,183,209,0.1));
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trending {
    animation: pulse-trending 2s infinite;
}

@keyframes pulse-trending {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-content {
    padding: 2rem;
}

.post-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-meta-info span {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #ff6b9d;
}

.featured-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.featured-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #ff6b9d, #45b7d1);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.read-more-btn {
    background: linear-gradient(135deg, #ff6b9d, #45b7d1);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(255,107,157,0.3);
    color: white;
}

/* Posts da Sidebar */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.sidebar-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    display: flex;
    height: fit-content;
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.sidebar-post-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sidebar-post:hover .sidebar-post-image img {
    transform: scale(1.1);
}

.post-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ff6b9d;
}

.sidebar-post-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sidebar-category {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    color: white;
}

.comfort { background: linear-gradient(45deg, #96ceb4, #ffeaa7); }
.accessories { background: linear-gradient(45deg, #fd79a8, #fdcb6e); }
.care { background: linear-gradient(45deg, #6c5ce7, #74b9ff); }

.sidebar-date {
    font-size: 0.8rem;
    color: #999;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.sidebar-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.sidebar-title a:hover {
    color: #ff6b9d;
}

.sidebar-excerpt {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: auto;
    font-weight: 400;
}

.sidebar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.reading-time {
    font-size: 0.8rem;
    color: #999;
}

.sidebar-link {
    color: #ff6b9d;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.sidebar-link:hover {
    transform: scale(1.2);
    color: #45b7d1;
}

/* CTA Footer */
.blog-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.blog-cta h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-cta p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #ff6b9d, #45b7d1);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,157,0.3);
    color: white;
}

.btn-outline-primary-custom {
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
    padding: 10px 23px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 991px) {
    .sidebar-posts {
        margin-top: 2rem;
    }
    
    .blog-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar-post {
        flex-direction: column;
    }
    
    .sidebar-post-image {
        width: 100%;
        height: 150px;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .blog-main-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .featured-image-container {
        height: 200px;
    }
    
    .sidebar-post-content {
        padding: 1rem;
    }
    
    .blog-cta {
        padding: 2rem 1rem;
    }
}
.badge.bg-gradient-primary {
    background: linear-gradient(135deg, #ff6b9d, #45b7d1) !important;
    color: white !important;
    font-weight: 600;
}
@media (max-width: 768px) {
    .cta-buttons .btn:first-child {
        margin-bottom: 15px !important;
    }
}
/* Posts da Sidebar - IMAGEM COMPLETA SEM CORTE */
.sidebar-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    display: flex;
    height: fit-content;
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 160px; /* Altura mínima aumentada */
}

.sidebar-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.sidebar-post-image {
    position: relative;
    width: 120px;
    height: 100%; /* Ocupa toda a altura do card */
    flex-shrink: 0;
    overflow: hidden;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%; /* Ocupa toda a altura disponível */
    object-fit: cover; /* Volta para cover para preencher todo o espaço */
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.sidebar-post:hover .sidebar-post-image img {
    transform: scale(1.05); /* Reduzido o zoom para não cortar */
}

.post-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ff6b9d;
    z-index: 2;
}

.sidebar-post-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Alternativa: Se quiser manter o aspect ratio e mostrar mais da imagem */
.sidebar-post-image-alt {
    position: relative;
    width: 120px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.sidebar-post-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Mostra mais a parte superior */
    transition: transform 0.4s ease;
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .sidebar-post {
        flex-direction: column;
    }
    
    .sidebar-post-image {
        width: 100%;
        height: 180px;
        min-height: 180px;
    }
    
    .sidebar-post-image img {
        object-fit: cover; /* No mobile pode usar cover */
        height: 100%;
    }
}
