:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --surface: #171717;
  --surface-2: #1f1f1f;
  --card: #101010;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --accent: #ff6a00;
  --accent-2: #ff8c33;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #070707 0%, #111111 100%);
  color: var(--text);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrapper {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 106, 0, 0.35);
}

.brand strong,
.site-footer strong,
.hero-card-top,
.map-badge {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.site-nav a {
  color: #e7e7e7;
  font-weight: 500;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 106, 0, 0.65);
  color: var(--accent);
}

.btn-small {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.05), transparent 20%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  margin: 0 0 1rem;
}

.hero-copy p,
.section-heading p,
.category-card p,
.featured-copy p,
.contact-copy p,
.info-card p,
.map-card p,
.accordion-content p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-highlights li {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-card-top {
  color: var(--accent);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.hero-card img {
  width: min(100%, 420px);
  margin: 0 auto 1.2rem;
  border-radius: 24px;
}

.hero-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.hero-card-info strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-card-info span,
.mini-link,
.muted {
  color: var(--muted);
}

.mini-link {
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin: 0 0 0.8rem;
}

.category-grid,
.featured-grid,
.contact-cards {
  display: grid;
  gap: 1.2rem;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.featured-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
}

.category-card,
.featured-card,
.info-card,
.map-card,
.accordion {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.category-card {
  padding: 1.4rem;
  transition: transform .2s ease, border-color .2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.5);
}

.category-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.12);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.category-card h3,
.featured-copy h3,
.info-card h3,
.map-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.accordion-list {
  display: grid;
  gap: 1rem;
}

.accordion {
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.35rem;
  font-size: 1.08rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.accordion[open] summary::after {
  content: '−';
}

.accordion-content {
  padding: 0 1.35rem 1.35rem;
  border-top: 1px solid var(--line);
}

.product-chips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-chips li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.16);
  color: #f1f1f1;
}

.featured-card {
  overflow: hidden;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 255, 255, 0.04));
}

.featured-copy {
  padding: 1.2rem;
}

.contact-section {
  background:
    radial-gradient(circle at bottom right, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #101010 0%, #080808 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.info-card,
.map-card {
  padding: 1.35rem;
}

.map-badge {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.map-frame {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: var(--radius-md);
  margin: 1rem 0 1.25rem;
  display: block;
  filter: grayscale(18%) contrast(1.08);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  background: #0b0b0b;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0.35rem 0 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.35);
}

@media (max-width: 980px) {
  .nav-wrapper,
  .hero-grid,
  .contact-grid,
  .category-grid,
  .featured-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .site-nav {
    width: 100%;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.2rem 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .site-nav {
    gap: 0.9rem;
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .hero-card-info {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}