:root {
  --home-blue: #1239b7;
  --home-blue-2: #2f5eea;
  --home-yellow: #f6c600;
  --home-yellow-dark: #d7aa00;
  --home-ink: #15213a;
  --home-muted: #647089;
  --home-surface: #f4f6fa;
  --home-line: #e1e6ef;
  --home-green: #1cab55;
  --home-radius: 22px;
  --home-shadow: 0 18px 55px rgba(18, 57, 183, 0.14);
}

.home-page {
  margin: 0;
  color: var(--home-ink);
  background: #fff;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page a {
  text-decoration: none;
}

.home-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  color: #dce6fb;
  background: #0b277d;
  font-size: 0.78rem;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar span,
.topbar a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar i {
  color: var(--home-yellow);
}

.home-header {
  position: relative;
  z-index: 100;
  background: var(--home-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(11, 39, 125, 0.24);
}

.header-inner {
  height: 150px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  display: block;
  width: auto;
  height: 140px;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--home-yellow);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--home-blue);
  background: var(--home-yellow);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  background: #ffdc38;
  transform: translateY(-2px);
}

.header-cta i {
  color: #168e47;
  font-size: 1.1rem;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--home-blue);
  font-size: 1.15rem;
}

.home-mobile-menu {
  display: none;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--home-blue);
}

.hero-track {
  position: relative;
  min-height: 570px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(3%);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    visibility 520ms;
}

.hero-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.hero-slide-primary {
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(53, 103, 202, 0.42),
      transparent 40%
    ),
    linear-gradient(120deg, #1239b7 0%, #2f5eea 100%);
}

.hero-slide-tools {
  color: #fff;
  background:
    radial-gradient(circle at 75% 10%, rgba(246, 198, 0, 0.2), transparent 35%),
    linear-gradient(120deg, #173aa8 0%, #244fc9 100%);
}

.hero-slide-offer {
  color: var(--home-blue);
  background:
    radial-gradient(
      circle at 25% 10%,
      rgba(255, 255, 255, 0.65),
      transparent 40%
    ),
    linear-gradient(120deg, #f5ca18 0%, #ffe789 100%);
}

.hero-slide-inner {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 72px;
  padding-top: 54px;
  padding-bottom: 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--home-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-slide-offer .hero-eyebrow {
  color: var(--home-blue-2);
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 660px;
  margin: 0 0 20px;
  color: inherit;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 590px;
  margin: 0 0 32px;
  color: inherit;
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.82;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.home-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.home-button:hover {
  transform: translateY(-3px);
}

.home-button-yellow {
  color: var(--home-blue);
  background: var(--home-yellow);
  box-shadow: 0 10px 30px rgba(246, 198, 0, 0.22);
}

.home-button-yellow:hover {
  background: #ffdb34;
}

.home-button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.home-button-blue {
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 10px 30px rgba(7, 29, 73, 0.22);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  height: 410px;
  overflow: hidden;
  border-radius: 32px 8px 32px 8px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 12, 32, 0.28));
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* A foto de portas e lambris deve aparecer inteira, sem recorte */
.hero-slide-primary .hero-image-frame {
  background: #f5f7fb;
}

.hero-slide-primary .hero-image-frame img {
  padding: 18px;
  object-fit: contain;
  object-position: center;
}

.hero-stamp {
  position: absolute;
  left: -34px;
  bottom: 28px;
  z-index: 2;
  max-width: 210px;
  padding: 15px 18px;
  color: var(--home-blue);
  background: var(--home-yellow);
  border-radius: 14px;
  box-shadow: var(--home-shadow);
}

.hero-stamp strong,
.hero-stamp span {
  display: block;
}

.hero-stamp strong {
  font-size: 1.1rem;
}

.hero-stamp span {
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 600;
}

.discount-stamp {
  position: absolute;
  left: -36px;
  bottom: 28px;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--home-blue);
  border: 7px solid #fff;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: var(--home-shadow);
}

.discount-stamp strong {
  font-size: 2.5rem;
  line-height: 1;
}

.discount-stamp span {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.45);
}

.hero-arrow-prev {
  left: 18px;
}
.hero-arrow-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-dot.is-active {
  width: 30px;
  background: var(--home-yellow);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--home-line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-right: 1px solid var(--home-line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--home-line);
}

.trust-grid i {
  color: var(--home-blue-2);
  font-size: 1.5rem;
}

.trust-grid span,
.trust-grid strong {
  display: block;
}

.trust-grid strong {
  margin-bottom: 2px;
  color: var(--home-ink);
  font-size: 0.9rem;
}

.trust-grid span {
  color: var(--home-muted);
  font-size: 0.76rem;
}

.home-section {
  padding: 82px 0;
}

.category-section {
  background: var(--home-surface);
}

.home-section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--home-blue-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-section-heading h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-section-heading p {
  margin: 10px 0 0;
  color: var(--home-muted);
}

.home-section-heading > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-blue-2);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.category-card {
  min-height: 112px;
  padding: 20px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid #e8ebf1;
  border-radius: 17px;
  box-shadow: 0 5px 18px rgba(7, 29, 73, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.category-card:hover {
  border-color: #c9d7f5;
  box-shadow: 0 16px 35px rgba(7, 29, 73, 0.1);
  transform: translateY(-4px);
}

.category-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--home-blue);
  background: #eef3ff;
  border-radius: 14px;
  font-size: 1.35rem;
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  margin-bottom: 5px;
  font-size: 0.97rem;
}

.category-card small {
  color: var(--home-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.category-card > i {
  color: #a1abc0;
  font-size: 0.78rem;
}

.featured-section {
  background: #fff;
}

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

.featured-loading {
  grid-column: 1 / -1;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--home-muted);
}

.home-product-card {
  min-width: 0;
  overflow: hidden;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-product-card:hover {
  box-shadow: var(--home-shadow);
  transform: translateY(-6px);
}

.home-product-image {
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f9fb;
  border-bottom: 1px solid var(--home-line);
}

.home-product-image img {
  width: 100%;
  height: 100%;
  padding: 14px;
  display: block;
  object-fit: contain;
  transition: transform 250ms ease;
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.04);
}

.home-product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--home-blue);
  background: var(--home-yellow);
  border-radius: 8px;
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product-info {
  padding: 17px;
}

.home-product-info h3 {
  min-height: 43px;
  margin: 0 0 12px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--home-ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-price-label {
  display: block;
  color: var(--home-muted);
  font-size: 0.7rem;
}

.home-product-price {
  margin: 2px 0 2px;
  color: var(--home-ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.home-product-cash {
  margin: 0 0 14px;
  color: var(--home-green);
  font-size: 0.76rem;
  font-weight: 800;
}

.home-product-link {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--home-blue);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.inspiration-section {
  padding-top: 18px;
  background: #fff;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.inspiration-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--home-radius);
  background: #ddd;
}

.inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 17, 47, 0.94) 0%,
    rgba(4, 17, 47, 0.66) 52%,
    rgba(4, 17, 47, 0.08) 100%
  );
}

.inspiration-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inspiration-card > div {
  position: absolute;
  left: 34px;
  top: 50%;
  z-index: 2;
  width: min(390px, calc(100% - 68px));
  color: #fff;
  transform: translateY(-50%);
}

.inspiration-card span {
  color: var(--home-yellow);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inspiration-card h2 {
  margin: 10px 0 13px;
  color: inherit;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.inspiration-card p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.86;
}

.inspiration-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.inspiration-paint::after {
  background: linear-gradient(
    90deg,
    rgba(28, 20, 9, 0.91) 0%,
    rgba(28, 20, 9, 0.58) 58%,
    rgba(28, 20, 9, 0.08) 100%
  );
}

.budget-section {
  padding: 70px 0;
  background: var(--home-surface);
}

.budget-inner {
  padding: 38px 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  color: #fff;
  background: linear-gradient(120deg, var(--home-blue), #315fe0);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
}

.budget-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--home-blue);
  background: var(--home-yellow);
  border-radius: 18px;
  font-size: 1.8rem;
}

.budget-copy span {
  color: var(--home-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.budget-copy h2 {
  margin: 6px 0;
  color: inherit;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.budget-copy p {
  margin: 0;
  opacity: 0.76;
}

.home-button-whatsapp {
  color: #fff;
  background: var(--home-green);
  white-space: nowrap;
}

.home-footer {
  padding: 62px 0 20px;
  color: #c8d1e4;
  background: #0a246e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 46px;
}

.footer-brand img {
  width: auto;
  height: 82px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 290px;
  margin: 12px 0 20px;
  color: #9daac2;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.footer-grid h3 {
  margin: 5px 0 18px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid a,
.footer-grid span {
  color: #9daac2;
  font-size: 0.8rem;
}

.footer-grid a:hover {
  color: var(--home-yellow);
}

.footer-bottom-home {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7f8da8;
  font-size: 0.76rem;
}

.home-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #1fbe5b;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(18, 140, 76, 0.35);
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.home-whatsapp-float:hover {
  transform: translateY(-4px);
}

.home-whatsapp-float i {
  font-size: 1.25rem;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 17px;
  }
  .hero-arrow {
    display: none;
  }
  .featured-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar-inner span:nth-child(2) {
    display: none;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .mobile-menu-button {
    display: grid;
    place-items: center;
  }
  .home-mobile-menu.is-open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
    background: var(--home-line);
  }
  .home-mobile-menu a {
    padding: 15px;
    color: var(--home-ink);
    background: #fff;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
  }
  .hero-slide-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 38px;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: 3rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid > div:first-child {
    border-left: 0;
  }
  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }
  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-line);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inspiration-grid {
    grid-template-columns: 1fr;
  }
  .inspiration-card {
    min-height: 360px;
  }
  .budget-inner {
    grid-template-columns: auto 1fr;
  }
  .budget-inner .home-button {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 680px) {
  .home-container {
    width: min(100% - 28px, 1180px);
  }
  .topbar-inner {
    justify-content: center;
  }
  .topbar-inner span:first-child {
    display: none;
  }
  .topbar-inner a {
    font-weight: 700;
  }
  .header-inner {
    height: 110px;
  }
  .brand img {
    height: 100px;
  }
  .home-mobile-menu.is-open {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-track,
  .hero-slide-inner {
    min-height: 650px;
  }
  .hero-slide-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 68px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-eyebrow {
    margin-bottom: 13px;
  }
  .hero-copy h1,
  .hero-copy h2 {
    margin-inline: auto;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
    line-height: 1;
  }
  .hero-copy p {
    margin: 0 auto 24px;
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .hero-actions {
    justify-content: center;
  }
  .home-button {
    min-height: 48px;
    padding: 0 17px;
  }
  .hero-visual {
    width: min(92%, 430px);
    margin: 0 auto;
  }
  .hero-image-frame {
    height: 220px;
    border-radius: 22px 6px 22px 6px;
  }
  .hero-stamp {
    left: -10px;
    bottom: 12px;
    max-width: 176px;
    padding: 10px 13px;
  }
  .hero-stamp strong {
    font-size: 0.92rem;
  }
  .hero-stamp span {
    font-size: 0.67rem;
  }
  .discount-stamp {
    left: -10px;
    bottom: 10px;
    width: 98px;
    height: 98px;
    border-width: 5px;
  }
  .discount-stamp strong {
    font-size: 1.75rem;
  }
  .hero-dots {
    bottom: 17px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid > div {
    min-height: 92px;
    padding: 15px 12px;
    gap: 9px;
  }
  .trust-grid i {
    font-size: 1.18rem;
  }
  .trust-grid strong {
    font-size: 0.77rem;
  }
  .trust-grid span {
    font-size: 0.67rem;
  }
  .home-section {
    padding: 60px 0;
  }
  .home-section-heading {
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .home-section-heading h2 {
    font-size: 2rem;
  }
  .home-section-heading > a {
    display: none;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .category-card {
    min-height: 92px;
    padding: 14px;
    grid-template-columns: 48px 1fr auto;
  }
  .category-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
  .featured-products {
    margin-right: -14px;
    padding-right: 14px;
    display: flex;
    gap: 13px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .featured-products::-webkit-scrollbar {
    display: none;
  }
  .home-product-card {
    flex: 0 0 78vw;
    max-width: 310px;
    scroll-snap-align: start;
  }
  .home-product-image {
    height: 225px;
  }
  .inspiration-section {
    padding-top: 5px;
  }
  .inspiration-card {
    min-height: 360px;
  }
  .inspiration-card > div {
    left: 22px;
    width: calc(100% - 44px);
  }
  .inspiration-card h2 {
    font-size: 2rem;
  }
  .inspiration-card::after {
    background: linear-gradient(
      90deg,
      rgba(4, 17, 47, 0.93),
      rgba(4, 17, 47, 0.48)
    );
  }
  .budget-section {
    padding: 52px 0;
  }
  .budget-inner {
    padding: 28px 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .budget-icon {
    margin: 0 auto;
  }
  .budget-copy h2 {
    font-size: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-grid > div:last-child {
    display: none;
  }
  .home-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }
  .home-whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .home-product-card,
  .category-card,
  .home-button {
    transition: none;
  }
}
