:root {
  --primary: #008744;
  --primary-hover: #006e37;
  --primary-dark: #092c19;
  --primary-light: #e6f4ea;
  --accent-gold: #e5a93c;
  --bg-dark: #0a140d;
  --bg-dark-card: rgba(16, 29, 20, 0.85);
  --text-main: #1d2129;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --border-color: #e5e7eb;
  --card-bg: #ffffff;
  --badge-green: #10b981;
  --badge-orange: #f59e0b;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(0, 135, 68, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #f8faf9;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar / Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 20, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #008744 0%, #00b359 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 135, 68, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-title span {
  color: #00b359;
}

.logo-subtitle {
  color: #9ca3af;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: #00b359;
}

.nav-badge {
  background: #008744;
  color: white;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn-wrapper {
  position: relative;
}

.btn-cart {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
}

.btn-cart:hover {
  background: rgba(0, 135, 68, 0.3);
  border-color: #00b359;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e53e3e;
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a140d;
}

.btn-contact {
  background: #008744;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(0, 135, 68, 0.4);
}

.btn-contact:hover {
  background: #00a854;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 135, 68, 0.6);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 20, 12, 0.82) 0%, rgba(10, 20, 13, 0.95) 100%),
              url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  padding: 90px 0 60px;
  color: white;
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
  margin-bottom: 50px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 135, 68, 0.35);
  border: 1px solid rgba(0, 212, 106, 0.4);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #79f2b0;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title span {
  color: #00d46a;
}

.hero-desc {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 34px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #008744;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 135, 68, 0.5);
}

.btn-hero-primary:hover {
  background: #00a854;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 135, 68, 0.7);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* 4 Feature Cards in Hero */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.hero-feature-card {
  background: rgba(14, 29, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.hero-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 106, 0.4);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 135, 68, 0.25);
  color: #00d46a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.45;
}

/* Section Header Generic */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-tag {
  color: #008744;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* Category Grid / Carousel */
.categories-section {
  padding: 80px 0;
  background: #ffffff;
}

.cat-carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.cat-card:hover {
  border-color: #008744;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cat-img-box {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
}

.cat-img-box img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: transform 0.25s ease;
  display: block;
}

.cat-card:hover .cat-img-box img {
  transform: scale(1.05);
}

.cat-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.cat-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-quote {
  width: 100%;
  background: #008744;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
  margin-top: auto;
}

.btn-quote:hover {
  background: #00a854;
}

/* ========================================================
   NOVA SEÇÃO DE E-COMMERCE / LOJA VIRTUAL ONLINE
   ======================================================== */
.shop-section {
  padding: 90px 0;
  background: #f0f7f3;
  border-top: 1px solid #e2ebe5;
  border-bottom: 1px solid #e2ebe5;
}

.shop-toolbar {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shop-search-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.shop-search-input-wrap {
  flex: 1;
  position: relative;
}

.shop-search-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.shop-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.shop-search-input:focus {
  border-color: #008744;
  box-shadow: 0 0 0 3px rgba(0, 135, 68, 0.15);
}

.filter-pills-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-pill-label {
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  margin-right: 4px;
}

.filter-pill {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-pill:hover, .filter-pill.active {
  background: #008744;
  border-color: #008744;
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #008744;
}

.product-badge-group {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-brand {
  background: #0a140d;
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.badge-discount {
  background: #e53e3e;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
}

.product-img-box {
  width: 100%;
  height: 210px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.product-img-box img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  transition: transform 0.25s ease;
  display: block;
}

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-sku {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 8px;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 12px;
}

.product-pricing {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #f0f0f0;
  margin-bottom: 16px;
}

.price-original {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-current {
  font-size: 24px;
  font-weight: 800;
  color: #008744;
  line-height: 1;
}

.price-installments {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.btn-buy-now {
  background: #008744;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-buy-now:hover {
  background: #00a854;
}

.btn-add-cart {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #374151;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.btn-add-cart:hover {
  background: #008744;
  border-color: #008744;
  color: white;
}

/* Why Choose Section */
.why-section {
  padding: 90px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-card {
  background: #fbfdfc;
  border: 1px solid #e5ebe7;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s;
}

.why-card:hover {
  background: white;
  border-color: #008744;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: #e6f4ea;
  border-radius: 12px;
  color: #008744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.why-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* History / Fabricio Baviera Section */
.history-section {
  padding: 80px 0;
  background: linear-gradient(rgba(10, 20, 13, 0.88), rgba(10, 20, 13, 0.94)),
              url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  color: white;
}

.history-card {
  background: rgba(16, 29, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 650px;
  backdrop-filter: blur(12px);
}

.history-card h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
}

.history-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
}

/* Brands Strip */
.brands-strip {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.brands-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: #374151;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.brand-item:hover {
  opacity: 1;
  transform: scale(1.05);
  color: #008744;
}

.brand-item i {
  font-size: 28px;
  color: #e53e3e;
}

/* Comparison Section: Antes vs Depois da FB */
.comparison-section {
  padding: 90px 0;
  background: #f8faf9;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comp-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.comp-card.before {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.comp-card.after {
  background: #0a2515;
  color: white;
  border: 2px solid #00d46a;
  box-shadow: 0 10px 30px rgba(0, 135, 68, 0.25);
}

.comp-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.comp-card.before .comp-pill {
  background: #f3f4f6;
  color: #6b7280;
}

.comp-card.after .comp-pill {
  background: #00d46a;
  color: #0a2515;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.comp-card.before .comp-list li i {
  color: #e53e3e;
  margin-top: 4px;
}

.comp-card.after .comp-list li i {
  color: #00d46a;
  margin-top: 4px;
}

/* Testimonials / Social Proof */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testi-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 15px;
  color: #374151;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.testi-author {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Location Section */
.location-section {
  padding: 90px 0;
  background: #f0f7f3;
}

.location-box {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e5ebe7;
}

.location-info {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-main);
}

.location-address {
  font-size: 17px;
  color: #4b5563;
  margin-bottom: 28px;
  line-height: 1.5;
}

.location-address i {
  color: #008744;
  margin-right: 8px;
}

.location-map-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Stats CTA Banner */
.stats-banner {
  padding: 70px 0;
  background: #0a140d;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 44px;
  font-weight: 900;
  color: #00d46a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #d1d5db;
}

.stat-center-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.stat-center-box h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background: #050a06;
  color: #9ca3af;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.btn-close-cart {
  background: none;
  border: none;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  background: #f9fafb;
  border-radius: 8px;
  object-fit: contain;
  padding: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #008744;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}

.qty-val {
  font-size: 13px;
  font-weight: 700;
}

.btn-remove-item {
  color: #ef4444;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  background: #fbfdfc;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  background: #008744;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-checkout:hover {
  background: #00a854;
}

/* Modais Generic */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-features, .cat-carousel-track, .products-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-features, .cat-carousel-track, .products-grid, .why-grid, .comparison-grid, .location-box {
    grid-template-columns: 1fr;
  }
  .location-box {
    grid-template-columns: 1fr;
  }
}
