:root {
  --color-primary: #00c26a;
  --color-primary-light: #2ddb89;
  --color-primary-dark: #00a556;
  --color-secondary: #ff5a3c;
  --color-secondary-light: #ff8a65;
  
  /* Christmas colors */
  --christmas-red: #c41e3a;
  --christmas-green: #165b33;
  --christmas-gold: #d4af37;
  --christmas-white: #f8f9fa;

  --color-bg: #ffffff;
  --color-bg-alt: #f7f8f9;
  --color-surface: #ffffff;
  --color-border-soft: rgba(0, 0, 0, 0.06);
  --color-text: #222222;
  --color-muted: #6c757d;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
  --shadow-active: 0 5px 15px rgba(0, 0, 0, 0.08);
  --max-width: 1140px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body.dark {
  --color-bg: #05070a;
  --color-bg-alt: #0b1017;
  --color-surface: #11151f;
  --color-border-soft: rgba(255, 255, 255, 0.06);
  --color-text: #f3f4f6;
  --color-muted: #9ca3af;
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes snowfall {
  0% {
    transform: translateY(-10vh) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(50px);
    opacity: 0.8;
  }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Christmas Mode Styles */
html.christmas {
  --color-primary: #c41e3a;
  --color-primary-light: #e63946;
  --color-primary-dark: #8b1425;
  --color-secondary: #165b33;
  --color-secondary-light: #2d8f57;
}

/* Snow effect */
html.christmas body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  background-image:
    radial-gradient(3px 3px at 10% 20%, white, transparent),
    radial-gradient(2px 2px at 25% 15%, white, transparent),
    radial-gradient(3px 3px at 40% 35%, white, transparent),
    radial-gradient(2px 2px at 55% 10%, white, transparent),
    radial-gradient(3px 3px at 70% 25%, white, transparent),
    radial-gradient(2px 2px at 85% 30%, white, transparent),
    radial-gradient(3px 3px at 15% 50%, white, transparent),
    radial-gradient(2px 2px at 35% 45%, white, transparent),
    radial-gradient(3px 3px at 60% 60%, white, transparent),
    radial-gradient(2px 2px at 80% 55%, white, transparent),
    radial-gradient(3px 3px at 20% 75%, white, transparent),
    radial-gradient(2px 2px at 45% 80%, white, transparent),
    radial-gradient(3px 3px at 65% 70%, white, transparent),
    radial-gradient(2px 2px at 90% 85%, white, transparent),
    radial-gradient(3px 3px at 5% 90%, white, transparent),
    radial-gradient(2px 2px at 50% 95%, white, transparent);
  background-size: 250% 250%;
  animation: snowfall 15s linear infinite;
  opacity: 0.8;
}

/* Christmas banner */
html.christmas body::after {
  content: '🎄 ESPECIAL DE NATAL 🎁';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #c41e3a, #165b33, #c41e3a);
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
  z-index: 9998;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

html.christmas .site-header {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid #d4af37;
}

html.christmas .brand-name {
  color: #c41e3a;
}

html.christmas .brand-tagline::after {
  content: ' 🎄';
}

html.christmas .hero {
  background: 
    linear-gradient(135deg, #c41e3a 0%, #165b33 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.1">🎄</text></svg>');
  position: relative;
}

html.christmas .hero::before {
  content: '🎄';
  position: absolute;
  top: 20%;
  right: 10%;
  font-size: 150px;
  opacity: 0.15;
  pointer-events: none;
  animation: bounce 3s ease-in-out infinite;
}

html.christmas .hero *,
html.christmas .hero h1,
html.christmas .hero p,
html.christmas .hero span,
html.christmas .hero-content,
html.christmas .hero-description,
html.christmas .hero-tagline,
html.christmas .hero-title,
html.christmas .brand-title {
  color: white !important;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}

html.christmas .hero h1 {
  font-size: 5rem !important;
  font-weight: 900 !important;
  letter-spacing: -2px;
}

html.christmas .hero-badge {
  background: linear-gradient(135deg, #d4af37, #ffeb3b);
  color: #165b33;
  font-weight: 800;
  border: 3px solid white;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  animation: twinkle 2s ease-in-out infinite;
}

html.christmas .btn-primary {
  background: linear-gradient(135deg, #c41e3a, #165b33) !important;
  color: white !important;
  border: 3px solid #d4af37 !important;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.5);
  font-weight: bold;
  font-size: 1.1rem;
}

html.christmas .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.7);
  border-color: #ffeb3b !important;
}

html.christmas .btn-secondary,
html.christmas .hero .btn-secondary {
  background: white !important;
  color: #c41e3a !important;
  border: 3px solid #d4af37 !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
  font-weight: bold !important;
  font-size: 1.1rem;
  text-shadow: none !important;
}

html.christmas .btn-secondary:hover,
html.christmas .hero .btn-secondary:hover {
  background: #d4af37 !important;
  color: white !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.7);
  border-color: white !important;
}

html.christmas .product-card {
  border: 3px solid #c41e3a;
  background: linear-gradient(to bottom, white, #fff8f0);
}

html.christmas .product-card:hover {
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
  border-color: #165b33;
  transform: translateY(-5px) scale(1.02);
}

html.christmas .product-name {
  color: #c41e3a !important;
}

html.christmas .hero-stats-item {
  background: white !important;
  border: 3px solid #d4af37;
  color: #165b33 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

html.christmas .hero-stats-item * {
  color: #165b33 !important;
  text-shadow: none !important;
}

html.christmas .hero-stats-number {
  color: #c41e3a !important;
  font-weight: 900 !important;
  font-size: 2.5rem !important;
}

html.christmas .hero-stats-label {
  color: #165b33 !important;
  font-weight: 700 !important;
}

html.christmas .hero-stat {
  background: white !important;
  border: 3px solid #d4af37 !important;
  padding: 1.5rem !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

html.christmas .hero-stat .stat-number {
  color: #c41e3a !important;
  font-weight: 900 !important;
  font-size: 2.5rem !important;
  text-shadow: none !important;
}

html.christmas .hero-stat .stat-label {
  color: #165b33 !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

html.christmas .hero-title,
html.christmas .hero .brand-title,
html.christmas .hero h1.brand-title {
  color: white !important;
  font-weight: 900 !important;
  font-size: 5rem !important;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7) !important;
}

html.christmas .hero-title * {
  color: white !important;
  text-shadow: 4px 4px 12px rgba(0,0,0,1), 0 0 40px rgba(0,0,0,0.8), -2px -2px 8px rgba(0,0,0,0.6) !important;
}

html.christmas .hero-title-main,
html.christmas .hero-title-sub {
  color: white !important;
  text-shadow: 4px 4px 12px rgba(0,0,0,1), 0 0 40px rgba(0,0,0,0.8), -2px -2px 8px rgba(0,0,0,0.6) !important;
  -webkit-text-fill-color: white !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

html.christmas .about-card {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(212, 175, 55, 0.05));
  border-left: 5px solid #c41e3a;
  border-top: 1px solid #d4af37;
}

html.christmas .about-card h3 {
  color: #165b33;
}

html.christmas .section-header h2::before {
  content: '🎄 ';
}

html.christmas .section-header h2::after {
  content: ' 🎁';
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.section {
  animation: fadeIn 0.8s ease-out;
}

/* ===================================
   SHOPPING CART STYLES
=================================== */

.cart-toggle {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(62, 209, 165, 0.3);
}

.cart-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(62, 209, 165, 0.4);
}

.cart-toggle.pulse {
  animation: cartPulse 0.6s ease-out;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--color-surface);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 2px solid var(--color-border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.1), transparent);
}

.cart-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--color-text);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.cart-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
}

.cart-empty p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--color-muted);
}

.cart-empty-subtitle {
  font-size: 0.9rem !important;
  opacity: 0.7;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--color-border-soft);
  animation: fadeInUp 0.3s ease-out;
}

.cart-item-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--color-text);
}

.cart-item-option {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cart-item-qty-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.cart-item-qty-btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
}

.cart-item-qty {
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: auto;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.cart-item-remove:hover {
  background: rgba(255, 90, 60, 0.1);
  transform: scale(1.1);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--color-border-soft);
  background: var(--color-bg-alt);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-total-price {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-clear-cart {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border-soft);
}

.btn-clear-cart:hover {
  background: #fee;
  color: #c00;
  border-color: #c00;
}

/* TOAST NOTIFICATIONS */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  border-left: 4px solid var(--color-primary);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.toast-error {
  border-left-color: var(--color-secondary);
}

/* ===================================
   END CART STYLES
=================================== */

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: hidden;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 15px rgba(0, 0, 0, 0.03);
  z-index: 99;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

body.dark .site-header {
  background: rgba(5, 7, 10, 0.92);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.7), 0 4px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 42px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--color-text);
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0.25rem;
}

.theme-toggle {
  background: var(--color-bg-alt);
  border-radius: 999px;
  border: 1px solid var(--color-border-soft);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  transform: scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

body.dark .theme-toggle {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.12);
}

.christmas-toggle {
  background: var(--color-bg-alt);
  border-radius: 999px;
  border: 1px solid var(--color-border-soft);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.christmas-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  opacity: 1;
}

.christmas-toggle:active {
  transform: scale(0.95);
}

html.christmas .christmas-toggle {
  background: linear-gradient(135deg, #c41e3a, #165b33);
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(196, 30, 58, 0.5);
  animation: pulse 2s ease-in-out infinite;
  opacity: 1;
}

body.dark .christmas-toggle {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark html.christmas .christmas-toggle {
  background: linear-gradient(135deg, #c41e3a, #165b33);
  border-color: #d4af37;
}

/* Hero */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, 
    rgba(62, 209, 165, 0.04) 0%, 
    var(--color-bg-alt) 30%,
    var(--color-bg-alt) 70%,
    rgba(62, 209, 165, 0.04) 100%);
}

.hero {
  padding: 2.5rem 0;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(62, 209, 165, 0.08) 0%, 
    transparent 50%,
    rgba(255, 90, 60, 0.05) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.15), rgba(62, 209, 165, 0.08));
  border: 2px solid rgba(62, 209, 165, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.badge-emoji {
  font-size: 1.2rem;
}

.hero-title {
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title-main {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title-sub {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text);
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description strong {
  color: var(--color-primary);
  font-weight: 700;
}

.hero-highlight {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-text);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(62, 209, 165, 0.2));
  animation: bounce 3s ease-in-out infinite;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -20%;
  right: -10%;
}

.hero-blob-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  bottom: -20%;
  left: -10%;
  animation-delay: -3s;
}

.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

/* Buttons */

.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-active);
}

.btn-secondary {
  background: white;
  color: var(--color-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-active);
}

/* Sections */

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  margin: 1rem auto 0;
  border-radius: 999px;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

.product-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(62, 209, 165, 0.3);
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.count-number {
  font-size: 1.3rem;
  font-weight: 800;
}

/* News Section */
.section-news {
  background: var(--color-bg-alt);
  padding: 4rem 0;
}

.news-carousel {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
}

.news-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-slide {
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease-out;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.news-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.news-card-featured .news-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
  padding: 3rem;
}

.news-card-featured .news-card-content {
  padding: 3rem;
}

.news-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.news-badge-coming {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.news-card-image {
  background: var(--color-bg-alt);
  padding: 2rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-image img {
  max-width: 100%;
  max-height: 250px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 194, 106, 0.2));
  transition: var(--transition-smooth);
}

.news-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.3;
}

.news-card-content p {
  margin: 0 0 1.5rem 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

.news-card-content strong {
  color: var(--color-primary);
  font-weight: 800;
}

.news-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.news-tag {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--color-primary);
  white-space: nowrap;
}

.news-card-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 1rem;
}

.carousel-btn-next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border-soft);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicator:hover {
  background: var(--color-primary-light);
}

.carousel-indicator.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-soft);
  transition: var(--transition-smooth);
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card > img.product-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.08), rgba(62, 209, 165, 0.15));
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-card:hover > img.product-image {
  transform: scale(1.05);
}

.product-body {
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body .btn-add-to-cart {
  margin-top: auto;
}

.product-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.product-desc {
  margin: 0 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  min-height: 2.7em;
  line-height: 1.5;
}

.product-price {
  margin: 0.2rem 0 0.7rem;
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-body .btn-order {
  margin-top: auto;
  align-self: flex-start;
}

/* Cor / opções */

.color-row {
  margin: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.color-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: var(--swatch-color, #ccc);
  cursor: pointer;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition-bounce);
  touch-action: manipulation;
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  animation: wiggle 0.5s ease;
}

.color-swatch:not([style]) {
  background-color: #ccc;
}

.color-swatch.selected {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(255, 90, 60, 0.15);
  animation: fadeInScale 0.3s ease-out;
}

.color-swatch.selected::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.field-group {
  margin-bottom: 0.6rem;
}

.field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.field-group select {
  width: 100%;
  font: inherit;
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border-soft);
  background: var(--color-bg);
  color: var(--color-text);
}

.field-group select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.inline-group select {
  max-width: 190px;
}

/* Como encomendar */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-soft);
  transition: var(--transition-smooth);
  animation: fadeInUp 0.6s ease-out both;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(62, 209, 165, 0.3);
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.step-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-soft);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-surface);
  border-radius: 999px;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-weight: 600;
  color: var(--color-text);
}

/* Sobre / contactos */

.section-sobre {
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(62, 209, 165, 0.05) 50%,
    transparent 100%);
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.15), rgba(62, 209, 165, 0.08));
  border: 2px solid rgba(62, 209, 165, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.2rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.about-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-soft);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(62, 209, 165, 0.15);
  border-color: var(--color-primary);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.about-card:nth-child(2) .about-icon { animation-delay: -0.2s; }
.about-card:nth-child(3) .about-icon { animation-delay: -0.4s; }
.about-card:nth-child(4) .about-icon { animation-delay: -0.6s; }
.about-card:nth-child(5) .about-icon { animation-delay: -0.8s; }
.about-card:nth-child(6) .about-icon { animation-delay: -1s; }

.about-card h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: var(--color-text);
}

.about-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.about-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.1), rgba(255, 90, 60, 0.05));
  border-radius: var(--radius-lg);
  border: 2px solid rgba(62, 209, 165, 0.2);
  margin-top: 3rem;
}

.about-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  color: var(--color-text);
}

.about-cta p {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.stats-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-soft);
  transition: var(--transition-smooth);
  flex: 1;
  min-width: 100px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(62, 209, 165, 0.15);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.05), var(--color-surface));
}

.about-highlight {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.12), rgba(62, 209, 165, 0.03));
  pointer-events: none;
}

.about-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.about-highlight h3 {
  margin-top: 0;
}

.about-highlight ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.contacts-grid h2,
.contacts-grid h3 {
  margin-top: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  transition: var(--transition-smooth);
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(62, 209, 165, 0.15);
  border-color: var(--color-primary);
  background: linear-gradient(90deg, rgba(62, 209, 165, 0.05), var(--color-surface));
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-item p {
  margin: 0;
  color: var(--color-muted);
}

.contacts-grid a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.contacts-grid a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.faq-box {
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.06), var(--color-surface));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(62, 209, 165, 0.2);
}

.faq-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.faq-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-text);
  font-size: 0.95rem;
}

.faq-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.small-note,
.footer-small {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Footer */

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-bg-alt);
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.4s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
}

/* Formulário (encomendar.html) */

.section-form {
  background: radial-gradient(circle at top, rgba(62, 209, 165, 0.12), transparent),
              linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
  min-height: 70vh;
}

.order-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border-soft);
  padding: 1.8rem 1.7rem 2rem;
  animation: fadeInUp 0.6s ease-out;
}

.order-summary {
  margin-bottom: 1.2rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(62, 209, 165, 0.1), rgba(62, 209, 165, 0.05));
  border: 2px solid rgba(62, 209, 165, 0.3);
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(62, 209, 165, 0.15);
}

.order-summary h3 {
  margin: 0 0 1rem;
  color: var(--color-primary-dark);
  font-size: 1.4rem;
}

.order-summary p {
  margin: 0.15rem 0;
  line-height: 1.6;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.summary-item {
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
}

.summary-item h4 {
  margin: 0 0 0.5rem;
  color: var(--color-text);
  font-size: 1.1rem;
}

.summary-option {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.summary-price {
  margin: 0.5rem 0 0;
  font-weight: 700;
  color: var(--color-primary);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid rgba(62, 209, 165, 0.3);
  font-size: 1.2rem;
}

.total-price {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.order-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.order-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border-soft);
  background: var(--color-bg);
  color: var(--color-text);
  transition: var(--transition-smooth);
}

.order-form select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(62, 209, 165, 0.1);
  transform: translateY(-1px);
}

.order-form textarea {
  resize: vertical;
}

.order-submit-btn {
  margin-top: 1.2rem;
}

.form-message {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  min-height: 1.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  animation: fadeIn 0.3s ease-out;
}

.form-message.error {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-message.success {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Thank you page */

.section-thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, 
    rgba(62, 209, 165, 0.15) 0%, 
    rgba(62, 209, 165, 0.08) 50%,
    rgba(62, 209, 165, 0.12) 100%);
}

.thankyou-card {
  max-width: 650px;
  margin: 3rem auto;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border-soft);
  animation: fadeInUp 0.6s ease-out;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(62, 209, 165, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.thankyou-card h1 {
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou-message {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thankyou-info {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.thankyou-info h3 {
  margin: 0 0 1rem;
  color: var(--color-text);
}

.thankyou-info ol {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 1.8;
}

.thankyou-contact {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(62, 209, 165, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(62, 209, 165, 0.2);
}

.thankyou-contact p {
  margin: 0.5rem 0;
}

.thankyou-contact a {
  color: var(--color-secondary);
  text-decoration: none;
}

.thankyou-contact a:hover {
  text-decoration: underline;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-blob {
    display: none;
  }

  .hero-visual {
    order: -1;
  }
  
  .news-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .news-image img {
    max-width: 120px;
  }
  
  .news-features {
    justify-content: center;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .news-card-featured .news-card-image {
    min-height: 250px;
  }
  
  .cart-sidebar {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    margin-top: 0.75rem;
    width: 100%;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }
  
  .main-nav a {
    padding: 0.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner {
    flex-wrap: nowrap;
    padding: 0.5rem 0;
  }
  
  .brand {
    flex-shrink: 1;
    min-width: 0;
  }
  
  .brand-text {
    display: none;
  }
  
  .logo {
    width: 36px;
  }
  
  .header-actions {
    flex-shrink: 0;
  }

  .order-form-grid {
    grid-template-columns: 1fr;
  }
  
  .thankyou-card {
    padding: 2rem 1.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    justify-content: flex-start;
  }
  
  .hero-title-main {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .theme-toggle,
  .christmas-toggle,
  .cart-toggle {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .cart-count {
    font-size: 0.65rem;
    min-width: 16px;
    height: 16px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .carousel-btn-prev {
    left: 0.5rem;
  }
  
  .carousel-btn-next {
    right: 0.5rem;
  }
  
  .carousel-indicators {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
  
  .news-card-featured {
    grid-template-columns: 1fr;
  }
  
  .news-card {
    margin: 0;
    border-radius: 0;
  }
  
  .news-carousel {
    border-radius: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
  
  .news-card-featured .news-card-image {
    min-height: 180px;
    padding: 1.5rem;
  }
  
  .news-card-featured .news-card-image img {
    max-height: 150px;
  }
  
  .news-card-featured .news-card-content {
    padding: 1.5rem 1rem;
  }
  
  .news-card-content h3 {
    font-size: 1.25rem;
  }
  
  .news-badge {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }
  
  .news-features {
    justify-content: flex-start;
  }
  
  .news-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
  
  .section-news {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .news-carousel {
    margin-top: 1.5rem;
  }
}
