:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --ink: #13201b;
  --muted: #65736d;
  --line: #d9e3df;
  --green: #0f8f4d;
  --green-dark: #076636;
  --blue: #00438c;
  --blue-dark: #062f66;
  --navy: #00438c;
  --amber: #d98a1d;
  --red: #ff2636;
  --shadow: 0 18px 50px rgba(20, 34, 29, .09);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-weight: 650;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(217, 227, 223, .82);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 240px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #3d4b46;
  font-size: 14px;
  font-weight: 850;
}

.nav a:hover {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  padding: 0 17px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-cta,
.button.primary {
  background: linear-gradient(180deg, #24b45d, var(--green));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 143, 77, .18);
}

.button.secondary {
  border-color: rgba(0, 67, 140, .18);
  background: #ffffff;
  color: var(--navy);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.full {
  width: 100%;
}

.button.disabled {
  width: 100%;
  border-color: var(--line);
  background: #eff3f1;
  color: #81908a;
  cursor: not-allowed;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 74px) 52px;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 67, 140, .12), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(255, 38, 54, .08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 54%, #edf5f1 100%);
}

.hero-copy {
  max-width: 720px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 7vw, 78px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 28px;
  color: #53615c;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid #cfe1d8;
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #2f4139;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
}

.hero-panel {
  display: grid;
  place-items: center;
}

.delivery-card {
  width: min(100%, 430px);
  border: 1px solid rgba(217, 227, 223, .9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

.delivery-card .status,
.product-tag {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.delivery-card h2 {
  margin: 15px 0 8px;
  font-size: 30px;
  line-height: 1.02;
}

.delivery-card p {
  color: var(--muted);
  font-size: 16px;
}

.delivery-card img {
  width: 100%;
  height: 255px;
  object-fit: contain;
  margin: 16px auto 18px;
  border-radius: 8px;
  background: #f9fbfa;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.mini-link::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 7px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7 5.3 20.4 12l-6.7 6.7-1.4-1.4 4.3-4.3H4v-2h12.6l-4.3-4.3 1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.steps,
.products,
.faq {
  padding: 84px clamp(18px, 5vw, 74px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p,
.security p,
.assurance p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.step-grid article,
.product-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(20, 34, 29, .05);
}

.step-grid article {
  min-height: 236px;
  padding: 24px;
}

.step-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.step-grid h3 {
  margin: 28px 0 10px;
}

.step-grid p,
.product-card p,
.faq p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 86px clamp(18px, 5vw, 74px);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 38, 54, .18), transparent 24%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #ffffff;
}

.security h2 {
  color: #ffffff;
}

.security p {
  color: rgba(255, 255, 255, .74);
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 18px;
}

.security-list b {
  font-size: 17px;
  font-weight: 900;
}

.security-list span {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.45;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card.available:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 143, 77, .34);
  box-shadow: 0 22px 58px rgba(20, 34, 29, .12);
}

.product-card--featured::before {
  content: "Mais vendido";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(255, 38, 54, .24);
}

.product-image {
  position: relative;
  display: grid;
  height: 260px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 227, 223, .72);
  background:
    linear-gradient(135deg, rgba(0, 67, 140, .06), rgba(15, 143, 77, .06)),
    #f8fbfa;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 18px;
  border-radius: 999px;
  background: rgba(20, 34, 29, .12);
  filter: blur(12px);
}

.product-image img,
.product-image video {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 220px;
  object-fit: contain;
}

.product-image video {
  width: min(78%, 190px);
  height: 230px;
  border-radius: 10px;
  background: #111111;
  box-shadow: 0 16px 36px rgba(20, 34, 29, .16);
}

.product-body {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr;
  gap: 12px;
  padding: 22px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-rating {
  color: #f7a600;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.product-card h3,
.product-card p {
  margin-bottom: 0;
}

.product-card h3 {
  min-height: 58px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.03;
}

.product-card p {
  min-height: 72px;
}

.product-tag.muted {
  background: #edf1ef;
  color: #71817a;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  border: 1px solid #d7e7df;
  border-radius: 999px;
  background: #f7fbf9;
  color: #284239;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.price-row {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.price-row strong {
  color: var(--red);
  font-size: clamp(28px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.product-card .button {
  align-self: end;
  margin-top: 4px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 38, 54, .72);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.category-visual {
  min-height: 188px;
  border-bottom: 1px solid var(--line);
}

.category-visual.car-care {
  background:
    linear-gradient(135deg, rgba(15, 143, 77, .16), transparent 62%),
    repeating-linear-gradient(45deg, #f6faf8 0, #f6faf8 10px, #eef5f2 10px, #eef5f2 20px);
}

.category-visual.home-care {
  background:
    radial-gradient(circle at 26% 35%, rgba(217, 138, 29, .22), transparent 22%),
    linear-gradient(135deg, #f8fbfa, #eef4f1);
}

.category-visual.personal-care {
  background:
    radial-gradient(circle at 70% 25%, rgba(21, 36, 57, .16), transparent 24%),
    linear-gradient(135deg, #f9fafc, #eef4f7);
}

.assurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 74px);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 46px);
}

.assurance div {
  max-width: 760px;
}

.assurance p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 930px;
  margin: 0 auto;
}

.faq details {
  padding: 0 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  padding: 20px 0;
}

.faq p {
  margin: 0;
  padding: 0 0 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
}

.site-footer b {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.site-footer p {
  margin: 4px 0 0;
}

.legal-info {
  display: grid;
  max-width: 520px;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.legal-info b {
  color: var(--navy);
  font-size: 14px;
}

.legal-info a {
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.5fr) minmax(190px, .9fr) minmax(180px, .8fr);
  gap: 24px;
  align-items: start;
  padding: 38px clamp(18px, 5vw, 74px) 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand,
.footer-contact,
.footer-links,
.legal-info {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.site-footer b {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.footer-brand p,
.footer-contact span,
.legal-info span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact a,
.footer-links a,
.legal-info a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(0, 67, 140, .18);
  padding-bottom: 2px;
}

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  padding-top: 18px;
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .security {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    width: clamp(200px, 62vw, 240px);
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy p,
  .section-heading p,
  .security p,
  .assurance p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-header .header-cta {
    display: none;
  }

  .trust-strip {
    display: grid;
  }

  .delivery-card {
    padding: 18px;
  }

  .delivery-card img {
    height: 210px;
  }

  .step-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card.available {
    grid-column: auto;
  }

  .product-image {
    height: 235px;
  }

  .product-image img,
  .product-image video {
    height: 198px;
  }

  .product-card h3,
  .product-card p {
    min-height: 0;
  }

  .steps,
  .products,
  .faq,
  .security {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .assurance,
  .site-footer {
    display: grid;
  }
}
