:root {
  --red: #d00000;
  --red-dark: #a80000;
  --black: #14171a;
  --text: #111;
  --muted: #5f6368;
  --line: #e8e8e8;
  --soft: #f7f8f9;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(0, 0, 0, .08);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, .055);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.45;
}

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

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

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.brand-logo,
.footer-logo {
  color: var(--red);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.7px;
}

.brand-subtitle,
.footer-subtitle {
  margin-top: 7px;
  color: #222;
  font-size: 11px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  min-height: 80px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--red);
  border-color: var(--red);
}

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

.language {
  font-size: 13px;
  font-weight: 900;
}

.language span { color: #666; }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: #111;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn-red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(208, 0, 0, .18);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: #111;
  background: #fff;
  border: 1.5px solid var(--red);
}

.btn-outline:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.btn-header {
  min-height: 44px;
  padding: 0 24px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 35%, rgba(0, 0, 0, .055), transparent 26%),
    linear-gradient(90deg, #fff 0%, #fff 45%, #fbfbfb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 16%, rgba(208, 0, 0, .12) 16% 17.2%, transparent 17.2%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.8));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  gap: 10px;
}

.hero-copy {
  z-index: 2;
  padding: 62px 0;
}

.hero-copy h1 {
  margin: 0 0 23px;
  font-size: clamp(50px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: -3.5px;
  line-height: .94;
}

.hero-copy h1 span {
  display: block;
  color: var(--red);
}

.hero-copy p {
  max-width: 470px;
  margin: 0 0 28px;
  color: #1f1f1f;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-product-wrap {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 26px;
}

.hero-product-wrap img {
  width: min(880px, 100%);
  height: 390px;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.08));
}

/* TRUST */
.trust {
  padding: 30px 0 0;
  background: #fff;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-panel article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.trust-panel article:last-child { border-right: 0; }

.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 32px;
}

.trust h3 {
  margin: 0 0 3px;
  font-size: 16px;
}

.trust p {
  margin: 0;
  color: #444;
  font-size: 12.5px;
}

/* CATEGORIES */
.categories {
  padding: 26px 0 25px;
}

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

.category-card {
  position: relative;
  min-height: 128px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 27px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-icon {
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.category-card p {
  margin: 0;
  color: #444;
  font-size: 13px;
}

.category-card > a {
  position: absolute;
  right: 23px;
  bottom: 18px;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

/* SECTION TITLE */
.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 21px;
}

.section-row h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -1px;
}

.underline {
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 10px;
  background: var(--red);
}

.view-all {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

/* PRODUCTS */
.products {
  padding: 0 0 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 22px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-image img {
  max-width: 94%;
  max-height: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-image-bottle img {
  max-height: 220px;
}

.product-image-bpo img {
  max-width: 100%;
  max-height: 178px;
}

.product-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.product-card p {
  min-height: 40px;
  max-width: 280px;
  margin: 0 auto 18px;
  color: #3b3b3b;
  font-size: 14px;
}

.product-link {
  min-width: 128px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 1.3px solid var(--red);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  transition: .2s ease;
}

.product-link:hover {
  color: #fff;
  background: var(--red);
}

/* EXCELLENCE */
.excellence {
  padding: 22px 0 24px;
  background: linear-gradient(90deg, #f4f5f6, #fff);
}

.excellence-panel {
  min-height: 130px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 20px 38px;
}

.shield {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 9px solid var(--red);
  border-radius: 28px;
  font-size: 36px;
  font-weight: 900;
}

.excellence-copy h2 {
  max-width: 540px;
  margin: 0 0 7px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.9px;
}

.excellence-copy p {
  margin: 0;
  max-width: 590px;
  color: #333;
  font-size: 14px;
}

/* DOWNLOADS */
.downloads {
  padding: 32px 0;
  display: none;
}

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

.download-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.download-card span {
  color: var(--red);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}

.download-card strong { font-size: 16px; }

.download-card small {
  margin-top: 6px;
  color: var(--red);
  font-weight: 800;
}

/* DISTRIBUTOR */
.distributor {
  display: none;
  padding: 0 0 30px;
}

.distributor-panel {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 34px;
  color: #fff;
  border-radius: 12px;
  background: radial-gradient(circle at 92% 30%, rgba(255,255,255,.1), transparent 30%), #111417;
}

.distributor h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.distributor p {
  margin: 0;
  color: rgba(255,255,255,.75);
}

/* QUOTE */
.quote {
  display: none;
  padding: 32px 0 46px;
}

.quote-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 36px;
}

.quote h2 {
  margin: 0;
  font-size: 32px;
}

.quote p {
  color: var(--muted);
  max-width: 420px;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.quote-form button {
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

/* FOOTER */
.site-footer {
  color: #fff;
  background: radial-gradient(circle at 5% 0%, rgba(255,255,255,.08), transparent 28%), #111417;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.1fr;
  gap: 48px;
  padding: 44px 0 32px;
}

.footer-logo {
  display: block;
  color: #fff;
}

.footer-subtitle {
  display: block;
  color: #fff;
}

.footer-brand p,
.site-footer p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.site-footer h3 {
  margin: 0 0 15px;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.site-footer a:hover { color: #fff; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom .container {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #22b657;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(34,182,87,.35);
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button { display: block; }

  .main-nav,
  .header-actions { display: none; }

  .site-header.open .main-nav,
  .site-header.open .header-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header.open .main-nav a {
    min-height: auto;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.open .header-actions {
    padding-bottom: 18px;
    gap: 12px;
  }

  .btn-header { width: 100%; }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 52px 0 12px;
  }

  .hero-product-wrap {
    justify-content: center;
  }

  .hero-product-wrap img {
    height: 280px;
    object-position: center bottom;
  }

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

  .trust-panel article:nth-child(2) { border-right: 0; }
  .trust-panel article:nth-child(1),
  .trust-panel article:nth-child(2) { border-bottom: 1px solid var(--line); }

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

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

  .excellence-panel {
    grid-template-columns: 90px 1fr;
  }

  .excellence-panel .btn {
    grid-column: 1 / -1;
    width: max-content;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo,
  .footer-logo { font-size: 31px; }

  .hero-copy h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-product-wrap {
    padding-bottom: 12px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-product-wrap img {
    min-width: 760px;
    height: 235px;
  }

  .trust-panel,
  .category-grid,
  .product-grid,
  .download-grid,
  .footer-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-panel article:last-child { border-bottom: 0; }

  .section-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-card {
    min-height: 280px;
  }

  .product-image {
    height: 170px;
  }

  .product-image img {
    max-height: 170px;
  }

  .product-image-bottle img {
    max-height: 190px;
  }

  .excellence-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .shield {
    width: 70px;
    height: 70px;
    border-width: 7px;
    border-radius: 22px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
}
