@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --background: hsl(220, 20%, 6%);
  --foreground: hsl(45, 100%, 85%);
  --card: hsl(220, 20%, 10%);
  --card-foreground: hsl(45, 100%, 90%);
  --primary: hsl(45, 100%, 50%);
  --primary-foreground: hsl(220, 20%, 6%);
  --secondary: hsl(220, 20%, 15%);
  --muted-foreground: hsl(220, 10%, 55%);
  --border: hsl(45, 30%, 25%);
  --gradient-gold: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(45, 80%, 35%));
  --gradient-gold-shine: linear-gradient(135deg, hsl(45, 100%, 70%), hsl(45, 100%, 50%), hsl(45, 80%, 35%));
  --gradient-dark: linear-gradient(180deg, hsl(220, 20%, 8%), hsl(220, 20%, 4%));
  --gradient-card: linear-gradient(145deg, hsl(220, 20%, 12%), hsl(220, 20%, 8%));
  --shadow-gold: 0 4px 30px hsla(45, 100%, 50%, 0.15);
  --shadow-gold-intense: 0 8px 40px hsla(45, 100%, 50%, 0.25);
  --shadow-card: 0 10px 40px hsla(0, 0%, 0%, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--background); color: var(--foreground); line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

.text-gradient-gold { background: var(--gradient-gold-shine); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-gradient-dark { background: var(--gradient-dark); }
.bg-gradient-card { background: var(--gradient-card); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-hero { background: var(--gradient-gold); color: var(--primary-foreground); box-shadow: var(--shadow-gold); }
.btn-hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-intense); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn-outline:hover { background: var(--secondary); border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(11, 14, 18, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.logo img { height: 3rem; width: auto; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; color: var(--foreground); transition: all 0.3s ease; }
.nav-link:hover { background: var(--secondary); color: var(--primary); }
.nav-link.active { background: var(--gradient-gold); color: var(--primary-foreground); }
.nav-link svg { width: 1rem; height: 1rem; }
.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--foreground); padding: 0.5rem; cursor: pointer; }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu { display: none; background: var(--card); border-radius: 0.5rem; padding: 1rem; margin-top: 0.5rem; border: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-nav-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--foreground); background: var(--secondary); margin-bottom: 0.5rem; }
.categories-bar { display: flex; align-items: center; gap: 0.25rem; padding: 0.5rem 0; overflow-x: auto; }
.category-btn { display: flex; align-items: center; gap: 0.375rem; padding: 0.5rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; white-space: nowrap; background: transparent; border: none; color: var(--foreground); cursor: pointer; transition: all 0.3s ease; }
.category-btn:hover { background: var(--secondary); color: var(--primary); }
.category-btn.active { background: var(--gradient-gold); color: var(--primary-foreground); }
.category-btn svg { width: 1rem; height: 1rem; }
@media (max-width: 768px) { .nav { display: none; } .mobile-menu-btn { display: block; } .categories-bar { display: none; } }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-dark); }
.hero-bg::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at top right, hsla(45, 100%, 50%, 0.15), transparent 50%); }
.hero-content { position: relative; z-index: 10; max-width: 42rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 9999px; padding: 0.5rem 1rem; margin-bottom: 1.5rem; }
.hero-badge svg { width: 1rem; height: 1rem; color: var(--primary); }
.hero-badge span { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.hero p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }

.products-section { padding: 6rem 0; background: var(--gradient-dark); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 9999px; padding: 0.5rem 1rem; margin-bottom: 1.5rem; }
.section-badge svg { width: 1rem; height: 1rem; color: var(--primary); }
.section-badge span { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

.products-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { position: relative; background: var(--gradient-card); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); transition: all 0.5s ease; display: flex; flex-direction: column; height: 100%; }
.product-card:hover { border-color: rgba(255, 215, 0, 0.5); transform: translateY(-0.5rem); box-shadow: var(--shadow-gold-intense); }
.product-card.promotion { box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3); }
.promotion-badge { position: absolute; top: 1rem; right: 1rem; z-index: 10; background: var(--gradient-gold); color: var(--primary-foreground); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 0.25rem; }
.product-image { position: relative; height: 16rem; background: rgba(255, 255, 255, 0.05); overflow: hidden; display: flex; justify-content: center; align-items: center; padding: 1rem; }
.product-image img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-content h3 { font-size: 1.125rem; font-weight: 700; color: var(--card-foreground); margin-bottom: 0.5rem; }
.product-card:hover .product-content h3 { color: var(--primary); }
.product-content p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.product-spacer { flex: 1; }
.product-price { margin-bottom: 1rem; }
.product-price .original { font-size: 0.875rem; color: var(--muted-foreground); text-decoration: line-through; margin-right: 0.5rem; }
.product-price .current { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.product-price .current.no-promo { color: var(--card-foreground); }
.product-card .btn { width: 100%; margin-top: auto; }

.benefits-section { padding: 6rem 0; position: relative; overflow: hidden; }
.benefits-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; margin-bottom: 4rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-card { padding: 2rem; border-radius: 1rem; background: var(--gradient-card); border: 1px solid var(--border); transition: all 0.5s ease; }
.benefit-card:hover { border-color: rgba(255, 215, 0, 0.5); transform: translateY(-0.5rem); box-shadow: var(--shadow-gold); }
.benefit-icon { width: 4rem; height: 4rem; border-radius: 0.75rem; background: rgba(255, 215, 0, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.benefit-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.benefit-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--card-foreground); margin-bottom: 0.75rem; }
.benefit-card:hover h3 { color: var(--primary); }
.benefit-card p { color: var(--muted-foreground); }
.certifications { background: var(--gradient-card); border-radius: 1rem; padding: 2rem; border: 1px solid var(--border); }
.certifications-content { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; }
@media (min-width: 768px) { .certifications-content { flex-direction: row; } }
.certifications-text h3 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.certifications-text p { color: var(--muted-foreground); }
.certifications-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cert-badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 9999px; padding: 0.75rem 1.25rem; }
.cert-badge svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.cert-badge span { font-weight: 600; color: var(--primary); }

.business-cta-section { padding: 5rem 0; background: var(--gradient-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.business-cta-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .business-cta-grid { grid-template-columns: repeat(2, 1fr); } }
.business-cta-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .business-cta-content h2 { font-size: 2.5rem; } }
.business-cta-content > p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.benefits-list { margin-bottom: 1.5rem; }
.benefits-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--muted-foreground); }
.benefits-list li svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.consultoria-card { position: relative; background: linear-gradient(to bottom right, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1), transparent); border-radius: 1.5rem; padding: 2rem; border: 1px solid rgba(255, 215, 0, 0.3); box-shadow: var(--shadow-gold-intense); }
.consultoria-badge { position: absolute; top: -1rem; right: -1rem; background: var(--gradient-gold); color: var(--primary-foreground); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; }
.consultoria-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.consultoria-icon { width: 4rem; height: 4rem; border-radius: 1rem; background: rgba(255, 215, 0, 0.2); display: flex; align-items: center; justify-content: center; }
.consultoria-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.consultoria-header h3 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.consultoria-header p { font-size: 1.25rem; font-weight: 700; }
.consultoria-card > p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.consultoria-card strong { color: var(--foreground); }
.consultoria-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.consultoria-feature { text-align: center; padding: 0.75rem; background: rgba(11, 14, 18, 0.5); border-radius: 0.75rem; }
.consultoria-feature svg { width: 1.5rem; height: 1.5rem; color: var(--primary); margin: 0 auto 0.5rem; }
.consultoria-feature p { font-size: 0.75rem; color: var(--muted-foreground); }
.consultoria-card .btn { width: 100%; }

.cta-section { padding: 6rem 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(255, 215, 0, 0.2), transparent, rgba(255, 215, 0, 0.1)); }
.cta-content { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; text-align: center; }
.cta-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 215, 0, 0.2); border: 1px solid rgba(255, 215, 0, 0.4); border-radius: 9999px; padding: 0.75rem 1.5rem; margin-bottom: 2rem; }
.cta-badge svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.cta-badge span { font-size: 1rem; font-weight: 600; color: var(--primary); }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-content h2 { font-size: 3.5rem; } }
.cta-content > p { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.cta-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-top: 3rem; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .cta-stats { grid-template-columns: repeat(4, 1fr); } }
.cta-stat { text-align: center; }
.cta-stat .label { color: var(--muted-foreground); }

.footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-content { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand img { height: 10rem; width: auto; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--primary); color: var(--primary-foreground); }
.footer-social a svg { width: 1.25rem; height: 1.25rem; }
.footer-column h4 { font-size: 1.125rem; font-weight: 700; color: var(--foreground); margin-bottom: 1.5rem; }
.footer-column ul li { margin-bottom: 0.75rem; }
.footer-column ul li a { color: var(--muted-foreground); transition: color 0.3s ease; }
.footer-column ul li a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: var(--muted-foreground); }
.footer-contact li svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom-content { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom-content { flex-direction: row; } }
.footer-bottom p { font-size: 0.875rem; color: var(--muted-foreground); text-align: center; }
.footer-bottom .security { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom .security svg { width: 1rem; height: 1rem; color: var(--primary); }

.whatsapp-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; }
.whatsapp-btn a { position: relative; display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; background: #25D366; border-radius: 50%; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; }
.whatsapp-btn a:hover { background: #128C7E; transform: scale(1.1); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; color: white; }
.whatsapp-pulse { position: absolute; inset: 0; background: #25D366; border-radius: 50%; animation: whatsapp-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes whatsapp-ping { 75%, 100% { transform: scale(1.5); opacity: 0; } }

.treinamentos-hero { padding: 8rem 0 5rem; background: var(--gradient-dark); }
.treinamentos-hero .container { max-width: 48rem; text-align: center; }
.treinamentos-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .treinamentos-hero h1 { font-size: 3rem; } }
.treinamentos-hero p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2rem; }
.stats-section { padding: 3rem 0; border-bottom: 1px solid var(--border); background: rgba(20, 24, 31, 0.5); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-item .value { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.stat-item .label { color: var(--muted-foreground); }
.treinamentos-section { padding: 5rem 0; }
.treinamentos-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .treinamentos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .treinamentos-grid { grid-template-columns: repeat(3, 1fr); } }
.treinamento-card { background: var(--gradient-card); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); transition: all 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.treinamento-card:hover { border-color: rgba(255, 215, 0, 0.5); box-shadow: var(--shadow-gold); }
.treinamento-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgba(255, 215, 0, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.treinamento-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.treinamento-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.treinamento-card > p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.treinamento-features { margin-bottom: 1.5rem; }
.treinamento-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.treinamento-features li svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.treinamento-card .btn { width: 100%; margin-top: auto; }
.in-company-section { padding: 5rem 0; background: var(--gradient-card); border-top: 1px solid var(--border); }
.in-company-content { max-width: 48rem; margin: 0 auto; text-align: center; }
.in-company-icon { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(255, 215, 0, 0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.in-company-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.in-company-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.in-company-content > p { color: var(--muted-foreground); margin-bottom: 2rem; }
.diferenciais-section { padding: 5rem 0; }
.diferenciais-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }
@media (min-width: 768px) { .diferenciais-grid { grid-template-columns: repeat(3, 1fr); } }
.diferencial-item { text-align: center; }
.diferencial-icon { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(255, 215, 0, 0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.diferencial-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.diferencial-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.diferencial-item p { font-size: 0.875rem; color: var(--muted-foreground); }

.hidden { display: none !important; }
