/* === CONFIGURAÇÃO GLOBAL PARA SCROLL SUAVE === */
* {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Ajuste para navbar fixa */
}

body {
  scroll-behavior: smooth;
}

/* ===== NAVBAR COM SCROLL SMOOTH ===== */
.eggo-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--eggo-primary), #23308a 80%);
  box-shadow: 0 2px 16px rgba(26,35,126,0.10);
  animation: navFadeIn 1.2s cubic-bezier(.77,0,.18,1) both;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.eggo-navbar.scrolled {
  background: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(26, 35, 126, 0.15);
}

.eggo-navbar.hidden {
  transform: translateY(-100%);
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Catálogo e Cards de Produto --- */
.catalog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5em 1.3em;
  border-radius: 8px;
  transition: background 0.22s cubic-bezier(.77,0,.18,1), color 0.18s, transform 0.18s;
  position: relative;
  letter-spacing: 0.01em;
  display: inline-block;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  transition: width 0.22s cubic-bezier(.77,0,.18,1);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 60%;
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(79,70,229,0.08);
  max-width: 320px;
  min-width: 260px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(79,70,229,0.16);
}
.product-image-wrapper {
  position: relative;
  margin-bottom: 1rem;
}
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3em 0.8em;
  border-radius: 8px;
  font-weight: 700;
}
.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0.3rem 0;
  text-align: center;
}
.product-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  text-align: center;
}
.product-meta {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.product-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cta-btn.small {
  font-size: 1rem;
  padding: 0.6em 1.2em;
}
stripe-buy-button {
  min-width: 120px;
}
/* style.css - Estilos base para o site de infoprodutos */
/* ===== DESIGN SYSTEM EGGO ===== */
:root {
  /* Cores Principais */
  --eggo-primary: #1e133c;        /* Roxo escuro - fundo principal */
  --eggo-secondary: #2d1b4e;      /* Roxo médio - variações */
  --eggo-accent: #d4af37;         /* Dourado - CTA e destaques */
  --eggo-accent-hover: #b8941f;   /* Dourado escuro - hover */
  
  /* Cores de Texto */
  --eggo-text-light: #ffffff;     /* Texto claro */
  --eggo-text-dark: #1a1a1a;      /* Texto escuro */
  --eggo-text-muted: #8b8b8b;     /* Texto secundário */

  /* Contraste para botões */
  --eggo-btn-bg: #d4af37;
  --eggo-btn-bg-hover: #b8941f;
  --eggo-btn-text: #1a1a1a;
  --eggo-btn-text-invert: #fff;
  
  /* Cores de Fundo */
  --eggo-bg-light: #ffffff;       /* Fundo claro */
  --eggo-bg-dark: #0f0a1f;        /* Fundo escuro */
  --eggo-bg-overlay: rgba(30, 19, 60, 0.95); /* Overlay com transparência */
  
  --eggo-shadow-sm: 0 2px 8px rgba(30, 19, 60, 0.1);
  --eggo-shadow-md: 0 4px 16px rgba(30, 19, 60, 0.15);
  --eggo-shadow-lg: 0 8px 32px rgba(30, 19, 60, 0.2);
  --eggo-blur: blur(20px);
  
  /* Tipografia */
  --eggo-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --eggo-font-heading: 'Poppins', var(--eggo-font-primary);
  
  /* Transições */
  --eggo-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --eggo-transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --eggo-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --eggo-z-navbar: 1000;
  --eggo-z-dropdown: 1010;
  --eggo-z-mobile-menu: 1020;
  
  /* Legacy (compatibilidade com código existente) */
  --primary: #1a237e;
  --accent: #ff9800;
  --background: #f5f7fa;
  --white: #fff;
  --soft-bg: #e3e8f0;
}

/* ===== EGGO NAVBAR - ESTILOS PRINCIPAIS ===== */

/* Reset e Base */
* {
  box-sizing: border-box;
}

/* Importar fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Navbar Container Principal */
.eggo-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--eggo-z-navbar);
  background: transparent;
  backdrop-filter: var(--eggo-blur);
  -webkit-backdrop-filter: var(--eggo-blur);
  transition: all var(--eggo-transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar quando usuário fez scroll */
.eggo-navbar.scrolled {
  background: var(--eggo-bg-overlay);
  box-shadow: var(--eggo-shadow-md);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

/* Navbar escondida no scroll para baixo */
.eggo-navbar.hidden {
  transform: translateY(-100%);
}

/* Container da Navbar */
.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* ===== LOGO EGGO ===== */
.navbar-brand {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  color: var(--eggo-text-light);
  transition: transform var(--eggo-transition-fast);
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
/* ===== BOTÕES DE CONTRASTE MELHORADO ===== */
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
  transition: filter var(--eggo-transition-fast);
}

.logo-link:hover .logo-icon {
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.logo-text {
  font-family: var(--eggo-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--eggo-accent), #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVEGAÇÃO PRINCIPAL ===== */
.navbar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: var(--eggo-text-light);
  text-decoration: none;
  font-family: var(--eggo-font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all var(--eggo-transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left var(--eggo-transition-smooth);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--eggo-accent);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--eggo-accent);
  border-radius: 1px;
}

/* ===== DROPDOWN MENUS ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-icon {
  transition: transform var(--eggo-transition-fast);
  opacity: 0.7;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--eggo-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  box-shadow: var(--eggo-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all var(--eggo-transition-smooth);
  z-index: var(--eggo-z-dropdown);
  padding: 0.5rem 0;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--eggo-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--eggo-transition-fast);
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-left-color: var(--eggo-accent);
  color: var(--eggo-accent);
  padding-left: 2rem;
}

/* ===== CTA BUTTON ===== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--eggo-accent), var(--eggo-accent-hover));
  color: var(--eggo-text-dark);
  text-decoration: none;
  font-family: var(--eggo-font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: var(--eggo-shadow-sm);
  transition: all var(--eggo-transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--eggo-shadow-md);
  background: linear-gradient(135deg, #f4d03f, var(--eggo-accent));
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.cta-icon {
  transition: transform var(--eggo-transition-fast);
}

.cta-button:hover .cta-icon {
  transform: translateX(2px);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--eggo-z-mobile-menu);
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: var(--eggo-text-light);
  margin: 3px 0;
  transition: all var(--eggo-transition-fast);
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--eggo-accent);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--eggo-accent);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 10, 31, 0.95);
  backdrop-filter: var(--eggo-blur);
  -webkit-backdrop-filter: var(--eggo-blur);
  z-index: var(--eggo-z-mobile-menu);
  opacity: 0;
  visibility: hidden;
  transition: all var(--eggo-transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo .logo-icon {
  font-size: 2rem;
}

.mobile-logo .logo-text {
  font-family: var(--eggo-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eggo-accent);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--eggo-text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all var(--eggo-transition-fast);
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--eggo-accent);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--eggo-text-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all var(--eggo-transition-fast);
  border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--eggo-accent);
  border-left-color: var(--eggo-accent);
  padding-left: 2rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
  margin: 0.5rem 0;
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--eggo-text-light);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 12px;
  transition: all var(--eggo-transition-fast);
  text-align: left;
}

.mobile-dropdown-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--eggo-accent);
}

.mobile-dropdown-toggle svg {
  transition: transform var(--eggo-transition-fast);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--eggo-transition-smooth);
  margin-left: 1rem;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--eggo-transition-fast);
  border-radius: 8px;
  margin: 0.25rem 0;
}

.mobile-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--eggo-accent);
  padding-left: 2rem;
}

/* Mobile CTA Button */
.mobile-cta-button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--eggo-accent), var(--eggo-accent-hover));
  color: var(--eggo-text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-align: center;
  transition: all var(--eggo-transition-smooth);
  box-shadow: var(--eggo-shadow-sm);
}

.mobile-cta-button:hover {
  transform: scale(1.02);
  box-shadow: var(--eggo-shadow-md);
}

/* ===== EGGO REDESIGN - ESTILOS PRINCIPAIS ===== */

/* Body e Elementos Base */
.eggo-body {
  font-family: var(--eggo-font-primary);
  line-height: 1.6;
  color: var(--eggo-text-light);
  background: linear-gradient(135deg, var(--eggo-bg-dark) 0%, var(--eggo-primary) 50%, var(--eggo-secondary) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.eggo-main {
  padding-top: 80px; /* Compensar navbar fixa */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Tipografia */
.section-title {
  font-family: var(--eggo-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.title-decorator {
  font-size: 0.8em;
  opacity: 0.9;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Botões */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--eggo-transition-smooth);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--eggo-accent), var(--eggo-accent-hover));
  color: var(--eggo-text-dark);
  box-shadow: var(--eggo-shadow-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--eggo-shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--eggo-text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--eggo-accent);
  color: var(--eggo-accent);
  transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.eggo-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 10, 31, 0.3) 70%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
  animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
  font-size: 1.2em;
}

.hero-title {
  font-family: var(--eggo-font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.title-main {
  display: block;
  color: var(--eggo-text-light);
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--eggo-accent), #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0;
  animation: fadeInUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--eggo-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--eggo-accent);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s;
  animation-fill-mode: both;
}

.hero-testimonial {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 1s;
  animation-fill-mode: both;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--eggo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--eggo-text-dark);
}

.testimonial-content p {
  margin: 0 0 0.5rem;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-content cite {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: normal;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
  font-size: 2rem;
}

.floating-card .card-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 20%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.hero-image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.hero-image-bg {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--eggo-accent) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.hero-image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--eggo-primary), var(--eggo-secondary));
  border-radius: 50%;
  border: 3px solid var(--eggo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  animation: rotate 20s linear infinite;
}

.hero-image-overlay::before {
  content: "🥚";
  animation: counter-rotate 20s linear infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: 0.9rem;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--eggo-accent);
  border-bottom: 2px solid var(--eggo-accent);
  transform: rotate(45deg);
}

/* ===== MANIFESTO SECTION ===== */
.eggo-manifesto {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.manifesto-content {
  text-align: center;
}

.manifesto-intro {
  margin-bottom: 4rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.manifesto-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  transition: all var(--eggo-transition-smooth);
  backdrop-filter: blur(10px);
}

.manifesto-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--eggo-shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.manifesto-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--eggo-accent), var(--eggo-accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.manifesto-card h3 {
  font-family: var(--eggo-font-heading);
  font-size: 1.4rem;
  margin: 0;
  color: var(--eggo-text-light);
}

.manifesto-card p {
  line-height: 1.7;
  opacity: 0.9;
}

.manifesto-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  text-align: center;
}

.manifesto-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1rem;
  color: var(--eggo-accent);
}

.quote-signature {
  font-weight: 600;
  opacity: 0.8;
}

/* ===== PRODUTOS SECTION ===== */
.eggo-products {
  padding: 6rem 0;
}

.products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--eggo-text-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--eggo-transition-fast);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--eggo-accent);
  color: var(--eggo-text-dark);
  border-color: var(--eggo-accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--eggo-transition-smooth);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--eggo-shadow-lg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--eggo-accent);
  color: var(--eggo-text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--eggo-transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 19, 60, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--eggo-transition-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-preview {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--eggo-text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--eggo-transition-fast);
}

.btn-preview:hover {
  background: var(--eggo-accent);
  color: var(--eggo-text-dark);
}

.product-content {
  padding: 2rem;
}

.product-title {
  font-family: var(--eggo-font-heading);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--eggo-text-light);
}

.product-description {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: var(--eggo-accent);
}

.product-rating span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.9rem;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--eggo-accent);
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-cta {
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.products-footer {
  text-align: center;
}

/* ===== JORNADA SECTION ===== */
.eggo-journey {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.journey-header {
  text-align: center;
  margin-bottom: 4rem;
}

.journey-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--eggo-accent), transparent);
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .step-content {
  text-align: right;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--eggo-accent), var(--eggo-accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--eggo-text-dark);
  z-index: 2;
}

.step-content {
  flex: 1;
  padding: 0 3rem;
  max-width: 45%;
}

.step-content h3 {
  font-family: var(--eggo-font-heading);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--eggo-accent);
}

.step-content p {
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.step-tools {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.timeline-step:nth-child(even) .step-tools {
  justify-content: flex-end;
}

.tool-tag {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--eggo-accent);
}

/* ===== DEPOIMENTOS SECTION ===== */
.eggo-testimonials {
  padding: 6rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all var(--eggo-transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--eggo-shadow-md);
}

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0;
  font-weight: 600;
  color: var(--eggo-text-light);
}

.testimonial-info p {
  margin: 0.25rem 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: var(--eggo-accent);
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.testimonial-result {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-metric {
  background: var(--eggo-accent);
  color: var(--eggo-text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== COMUNIDADE SECTION ===== */
.eggo-community {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-text {
  text-align: left;
}

.community-text .section-title {
  text-align: left;
  justify-content: flex-start;
}

.community-text .section-subtitle {
  text-align: left;
  margin-bottom: 2rem;
}

.community-benefits {
  margin: 2rem 0 3rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  margin: 0 0 0.5rem;
  color: var(--eggo-accent);
  font-weight: 600;
}

.benefit-text p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.community-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.community-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.guarantee-icon {
  color: var(--eggo-accent);
}

.community-visual {
  display: flex;
  justify-content: center;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card .stat-number {
  display: block;
  font-family: var(--eggo-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eggo-accent);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
.eggo-newsletter {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  backdrop-filter: blur(20px);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.newsletter-content h2 {
  font-family: var(--eggo-font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--eggo-text-light);
}

.newsletter-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.newsletter-form {
  margin-bottom: 2rem;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--eggo-text-light);
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all var(--eggo-transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--eggo-accent);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  width: 100%;
  justify-content: center;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

.newsletter-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.disclaimer-icon {
  color: var(--eggo-accent);
}

.newsletter-bonus {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* ===== EGGO FOOTER STYLES ===== */
.eggo-footer {
  background: linear-gradient(135deg, var(--eggo-bg-dark) 0%, var(--eggo-primary) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.footer-logo .logo-text {
  font-family: var(--eggo-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eggo-accent);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--eggo-transition-smooth);
}

.social-link:hover {
  background: var(--eggo-accent);
  color: var(--eggo-text-dark);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--eggo-text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--eggo-transition-fast);
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--eggo-accent);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--eggo-transition-fast);
}

.copyright a:hover {
  color: var(--eggo-accent);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.footer-motto {
  color: var(--eggo-accent);
  font-weight: 600;
  font-style: italic;
}

/* ===== PRODUCT MODAL STYLES ===== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--eggo-transition-smooth);
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 31, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, var(--eggo-primary), var(--eggo-secondary));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(50px);
  transition: all var(--eggo-transition-smooth);
}

.product-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  color: var(--eggo-text-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all var(--eggo-transition-fast);
}

.modal-close:hover {
  color: var(--eggo-accent);
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-image {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-price {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.modal-price-current {
  color: var(--eggo-accent);
  font-size: 2rem;
  font-weight: 700;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-cta {
  flex: 1;
  justify-content: center;
}

.modal-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== NOTIFICATIONS STYLES ===== */
.notification {
  position: fixed;
  top: 100px;
  right: 2rem;
  z-index: 10000;
  background: var(--eggo-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: var(--eggo-shadow-lg);
  backdrop-filter: blur(10px);
  transform: translateX(400px);
  transition: all var(--eggo-transition-smooth);
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.notification-success {
  border-color: #4ade80;
}

.notification-error {
  border-color: #ef4444;
}

.notification-info {
  border-color: var(--eggo-accent);
}

.notification-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--eggo-transition-fast);
}

.notification-close:hover {
  color: var(--eggo-accent);
}

/* ===== PRODUCT PLACEHOLDERS ===== */
.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.placeholder-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

/* ===== FILTER FEEDBACK ===== */
.filter-feedback {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--eggo-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin: 1rem auto;
  width: fit-content;
  transition: opacity var(--eggo-transition-smooth);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .notification {
    right: 1rem;
    left: 1rem;
    top: 90px;
    max-width: none;
  }
  
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.5rem;
  }
  
  .modal-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .catalog-hero {
    padding: 5rem 0 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .card-content,
  .product-content {
    padding: 1.5rem;
  }
}

/* Estados de Loading e Interação */
.product-card.loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-card.hidden {
  display: none;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.no-results h3 {
  color: var(--eggo-text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states for accessibility */
.filter-btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
.cta-button:focus {
  outline: 2px solid var(--eggo-accent);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .eggo-navbar,
  .scroll-indicator,
  .floating-card,
  .hero-particles {
    display: none !important;
  }
  
  .eggo-body {
    background: white !important;
    color: black !important;
  }
  
  .section-title,
  .hero-title {
    color: black !important;
  }
}
