﻿:root {
  --primary: #8f3302;
  --accent: #ff9633;
  --accent-2: #fcab25;
  --bg-soft: #f1f8e2;
  --ink: #161716;
  --warm: #de731c;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(22, 23, 22, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1150px, 92%); margin: 0 auto; }

.header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(143, 51, 2, 0.1);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.sticky { position: sticky; top: 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary); }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; border: 2px solid var(--accent-2); }
.nav { display: flex; gap: 24px; }
.nav a { font-weight: 600; position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: .3s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.hamburger { display: none; border: 0; background: transparent; width: 40px; cursor: pointer; }
.hamburger span { display: block; height: 3px; margin: 6px 0; background: var(--ink); border-radius: 2px; transition: .3s; }

.hero-slider { position: relative; min-height: 82vh; overflow: hidden; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  width: 100%;
  transition: opacity .8s ease, transform .8s ease;
  transform: scale(1.04);
}
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-content { color: var(--white); padding: 100px 0 50px; }
.hero-content h1, .hero-content h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 0 0 12px; line-height: 1.15; max-width: 740px; }
.hero-content p { max-width: 680px; font-size: 1.05rem; }
.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700; margin-bottom: 10px; font-size: .82rem; }

.slider-controls { position: absolute; right: 28px; bottom: 30px; display: flex; gap: 10px; }
.slide-btn {
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(90deg, var(--accent), var(--warm)); color: #fff; }
.btn-outline { border: 1px solid rgba(255, 255, 255, .8); color: #fff; margin-left: 10px; }
.btn-light { background: #fff; color: var(--primary); }

.section { padding: 74px 0; }
.soft-bg { background: var(--bg-soft); }
.section-head h2 { margin-top: 0; }
.two-col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center; }
.grid { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(143, 51, 2, 0.08);
}
.card h3, .card p, .card h2 { padding-left: 18px; padding-right: 18px; }
.card h3 { margin-bottom: 8px; }
.card p { padding-bottom: 16px; margin-top: 0; }
.card img { height: 240px; width: 100%; object-fit: cover; }
.image-card img { border-radius: 20px; box-shadow: var(--shadow); }
.icon-card { padding: 18px; }
.icon-card h3, .icon-card p { padding: 0; }
.products-grid .card img { height: 220px; }
.products-grid .card img {
  object-fit: contain;
  background: #fff;
  padding: 12px;
}

.page-hero {
  padding: 110px 0;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(1.9rem, 3.8vw, 2.8rem); }

.cta-band { background: linear-gradient(90deg, #8f3302, #de731c); color: #fff; }
.cta-inner { display: flex; justify-content: space-between; gap: 25px; align-items: center; }

.video-grid video { width: 100%; border-radius: 16px; box-shadow: var(--shadow); background: #000; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { padding: 8px 0; border-bottom: 1px dashed rgba(143, 51, 2, 0.2); }

.footer { background: #121212; color: #ddd; padding: 44px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.footer h3, .footer h4 { color: #fff; margin-top: 0; }
.footer a { display: block; color: #e7e7e7; margin-bottom: 7px; }
.credit { margin-top: 28px; text-align: center; padding: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.credit a { display: inline; color: var(--accent); }

#floatingButtons {
  position: fixed;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 70;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 21px;
  box-shadow: var(--shadow);
  animation: pulse 2.3s infinite;
}
.float-btn svg { width: 24px; height: 24px; fill: currentColor; }
.float-call { background: #0f8a36; }
.float-wa { background: #25D366; }
.float-ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }

.sparks-bg { position: relative; overflow: hidden; }
.sparks-bg::before,
.sparks-bg::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,171,37,0.45), rgba(252,171,37,0));
  animation: float 8s ease-in-out infinite;
}
.sparks-bg::before { top: -40px; right: 10%; }
.sparks-bg::after { bottom: -40px; left: 7%; animation-delay: 1s; }

.reveal { opacity: 0; transform: translateY(24px); transition: .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(222, 115, 28, .45); }
  70% { box-shadow: 0 0 0 14px rgba(222, 115, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(222, 115, 28, 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(15px) scale(1.08); }
}

@media (max-width: 900px) {
  .cards-3, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hamburger { display: block; }
  .nav {
    position: absolute;
    top: 74px;
    right: 4%;
    width: min(270px, 92vw);
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 16px;
    flex-direction: column;
    padding: 14px;
    display: none;
  }
  .nav.open { display: flex; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}

