/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #000;
  color: #d1d5db;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.logo-bold {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.logo-light {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
  transition: color 0.2s;
}

.nav a:hover {
  color: #22c55e;
}

.header-icons {
  display: flex;
  gap: 8px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.icon-btn:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #d1d5db;
  padding: 8px 0;
}

.mobile-nav-icons {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title span {
  display: block;
  font-size: clamp(48px, 10vw, 110px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 24px;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: #d1d5db;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  background: transparent;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.1);
}

.product-img {
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ===== DIFERENCIAIS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.diff-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.diff-card:hover {
  transform: translateY(-4px);
}

.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ===== SOBRE NÓS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 16px;
  line-height: 1.7;
}

.btn-green {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background: #22c55e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-green:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #22c55e;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.badge-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

/* ===== HORÁRIOS ===== */
.section-hours {
  background: #111;
}

.hours-card {
  max-width: 480px;
  margin: 48px auto 0;
  background: #1c1c1c;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.hours-icon {
  color: #22c55e;
  margin-bottom: 16px;
}

.hours-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-size: 15px;
  color: #d1d5db;
}

.hours-time {
  font-size: 15px;
  font-weight: 600;
  color: #22c55e;
}

.hours-time.closed {
  color: #22c55e;
}

/* ===== CONTATO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #9ca3af;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-copy {
  font-size: 13px;
  color: #6b7280;
}

.footer-icons {
  display: flex;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-icons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title span {
    font-size: clamp(36px, 12vw, 64px);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-badge {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }
}