:root {
  --color-primary: #ea3f26;
  --color-primary-dark: #b82615;
  --color-accent: #ff9f1c;
  --color-ink: #202124;
  --color-ink-soft: #4a4d57;
  --color-white: #ffffff;
  --color-bg: #fffaf7;
  --color-bg-soft: #fff2e8;
  --color-border: #f2d8c5;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 14px 40px rgba(234, 63, 38, 0.12);
  --container-max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Trebuchet MS", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 159, 28, 0.18), transparent 40%),
    radial-gradient(circle at 100% 10%, rgba(234, 63, 38, 0.16), transparent 45%),
    var(--color-bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--color-white);
  padding: 8px 10px;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  z-index: 9999;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(8px);
  background: rgba(255, 250, 247, 0.92);
  border-bottom: 1px solid var(--color-border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.35rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  font-size: 1rem;
  font-weight: 700;
}

.nav-list {
  display: flex;
  gap: 0.95rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-list a {
  text-decoration: none;
  color: var(--color-ink-soft);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-primary);
}

.hero {
  padding: 3rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-primary);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-ink-soft);
}

.hero-subtitle {
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.hero-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero-points li {
  font-size: 0.96rem;
  color: var(--color-ink);
  font-weight: 700;
}

.hero-points li::before {
  content: "\2714\0020";
  color: var(--color-primary);
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 3.2rem 0;
}

.section-soft {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  gap: 1.2rem;
}

.about-cards {
  display: grid;
  gap: 0.9rem;
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.info-card h3::before {
  content: "\2714\0020";
  color: var(--color-primary);
}

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

.product-card,
.brand-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  box-shadow: 0 12px 28px rgba(40, 40, 40, 0.08);
}

.product-card img,
.brand-card img {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  margin-bottom: 0.8rem;
}

.brands-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
  color: var(--color-ink-soft);
}

.contact-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 320px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.74rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 10px 24px rgba(184, 38, 21, 0.28);
}

.btn-secondary {
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.btn-small {
  font-size: 0.92rem;
  padding: 0.63rem 1.05rem;
  background: var(--color-accent);
  color: #1f1f1f;
}

.site-footer {
  padding: 1.1rem 0 4.7rem;
  background: #1b1b1b;
  color: #f4f4f4;
}

.footer-wrap p {
  margin: 0;
  color: #f4f4f4;
  font-size: 0.94rem;
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 100;
  color: #08240f;
  background: linear-gradient(135deg, #25d366, #20b95a);
  border-radius: 999px;
  text-decoration: none;
  padding: 0.8rem 1rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(11, 109, 47, 0.32);
}

@media (min-width: 720px) {
  .hero {
    padding: 4rem 0 3.2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }
}

@media (min-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
  }

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

  .site-footer {
    padding-bottom: 1.2rem;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
  }
}
