* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: #f7f8fa;
  color: #1f2937;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.search button svg,
.mobile-btn svg {
  width: 22px;
  height: 22px;
}

.cart svg {
  width: 23px;
  height: 23px;
}

.tag svg {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}

.feature-icon {
  width: 27px;
  height: 27px;
}

.benefit > svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.add-cart svg {
  width: 18px;
  height: 18px;
  margin-left: 6px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars svg {
  width: 15px;
  height: 15px;
}

.stars span {
  margin-left: 5px;
}

.categories a svg {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 10px;
}

.map svg {
  width: 90px;
  height: 90px;
}

.whatsapp svg {
  width: 28px;
  height: 28px;
}

/* ICONES */
.logo-icon,
.hero-icons i,
.benefit i,
.categories i,
.cart i,
.search button i,
.mobile-btn i,
.whatsapp i,
.map i,
.tag i,
.add-cart i {
  stroke-width: 2;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: #ffd400;
  color: #000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 22px rgba(255, 212, 0, 0.35);
}

.logo-icon i {
  width: 22px;
  height: 22px;
  stroke: #000;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: 1;
  font-size: 14px;
  color: #111827;
}

.search {
  flex: 1;
  display: flex;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.search input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #111827;
  padding: 16px;
  outline: none;
}

.search button {
  width: 56px;
  border: 0;
  background: #ffd400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search button i {
  width: 20px;
  height: 20px;
  stroke: #000;
}

.menu {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #374151;
  font-weight: 600;
}

.menu a:hover {
  color: #d4a900;
}

.actions {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #111827;
  font-weight: 700;
}

.cart {
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
}

.cart i {
  width: 22px;
  height: 22px;
  stroke: #111827;
}

.cart span {
  position: absolute;
  right: -12px;
  top: -10px;
  background: #ffd400;
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.mobile-btn {
  display: none;
  background: #ffd400;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-btn i {
  width: 22px;
  height: 22px;
  stroke: #000;
}

.mobile-menu {
  display: none;
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
  display: block;
  padding: 12px 4%;
  color: #111827;
  font-weight: 700;
}

/* HERO */
.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
 background: url("../assets/banner-farmacia.png") center right / cover no-repeat;
}

.hero-text {
  max-width: 580px;
}

/* BANNER ENTREGA PREMIUM */
.delivery-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 390px;
  margin: 56px auto;
  padding: 54px 58px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 209, 0, 0.18), transparent 32%),
    radial-gradient(circle at 95% 100%, rgba(255, 209, 0, 0.16), transparent 35%),
    linear-gradient(135deg, #172033 0%, #111827 100%);
  color: #ffffff;
  isolation: isolate;
}

.delivery-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to right, #000 20%, transparent 90%);
}

.delivery-content {
  position: relative;
  z-index: 2;
}

.delivery-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 209, 0, 0.32);
  border-radius: 999px;
  color: #ffd100;
  background: rgba(255, 209, 0, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.delivery-label svg {
  width: 17px;
  height: 17px;
}

.delivery-content h2 {
  max-width: 610px;
  margin: 18px 0 15px;
  color: #ffffff;
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.delivery-content h2 span {
  color: #ffd100;
}

.delivery-content > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.delivery-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.delivery-item strong,
.delivery-item small {
  display: block;
}

.delivery-item strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 13px;
}

.delivery-item small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.delivery-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 11px;
  background: #ffd100;
  color: #172033;
}

.delivery-icon svg {
  width: 21px;
  height: 21px;
}

.delivery-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 19px;
  border-radius: 12px;
  background: #ffd100;
  color: #172033;
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.delivery-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(255, 209, 0, 0.2);
}

.delivery-btn svg {
  width: 18px;
  height: 18px;
  transition: 0.25s ease;
}

.delivery-btn:hover svg {
  transform: translateX(4px);
}

/* ILUSTRAÇÃO DO LADO DIREITO */
.delivery-visual {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #ffd100;
  opacity: 0.14;
  filter: blur(30px);
}

.map-line {
  position: absolute;
  border: 2px dashed rgba(255, 209, 0, 0.65);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.line-one {
  width: 310px;
  height: 145px;
  top: 50px;
  left: 25px;
}

.line-two {
  width: 190px;
  height: 90px;
  right: 5px;
  bottom: 31px;
  transform: rotate(36deg);
  border-color: rgba(255, 255, 255, 0.22);
}

.line-three {
  width: 140px;
  height: 70px;
  left: 52px;
  bottom: 20px;
  transform: rotate(24deg);
  border-color: rgba(255, 255, 255, 0.18);
}

.location-point {
  position: absolute;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 3px solid #ffd100;
  border-radius: 50%;
  background: #172033;
  box-shadow: 0 0 0 7px rgba(255, 209, 0, 0.11);
}

.location-point span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffd100;
}

.location-one {
  top: 61px;
  left: 43px;
}

.location-two {
  right: 26px;
  top: 112px;
}

.location-three {
  bottom: 24px;
  left: 113px;
}

.delivery-truck {
  position: relative;
  z-index: 2;
  width: 210px;
  padding: 22px 18px 12px;
  border-radius: 22px;
  background: #172033;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  transform: rotate(-3deg);
}

.truck-top {
  position: absolute;
  top: -12px;
  left: 18px;
  padding: 6px 11px;
  border-radius: 8px;
  background: #ffd100;
  color: #172033;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.truck-body svg {
  width: 100%;
  height: auto;
}

.delivery-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(23, 32, 51, 0.92);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(10px);
}

.delivery-card strong,
.delivery-card small {
  display: block;
}

.delivery-card strong {
  color: #ffffff;
  font-size: 12px;
}

.delivery-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.card-top {
  top: 8px;
  right: 5px;
}

.card-bottom {
  bottom: 0;
  right: 24px;
}

.card-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 209, 0, 0.15);
  color: #ffd100;
}

.card-icon svg {
  width: 18px;
  height: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #49d17d;
  box-shadow: 0 0 0 5px rgba(73, 209, 125, 0.13);
}

/* RESPONSIVO */
@media (max-width: 920px) {
  .delivery-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 34px 34px;
  }

  .delivery-visual {
    min-height: 270px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .delivery-banner {
    min-height: auto;
    margin: 36px auto;
    padding: 32px 20px 25px;
    border-radius: 22px;
  }

  .delivery-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .delivery-content > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .delivery-info {
    display: grid;
    grid-template-columns: 1fr;
  }

  .delivery-item {
    min-width: 0;
  }

  .delivery-visual {
    min-height: 230px;
    transform: scale(0.87);
    transform-origin: center bottom;
    margin-top: -12px;
    margin-bottom: -20px;
  }

  .card-top {
    right: -2px;
  }

  .card-bottom {
    right: 5px;
  }
}

/* SEÇÃO TRUST PREMIUM */
.trust-section {
  margin: 64px auto;
  padding: 42px 0 10px;
}

.trust-header {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.trust-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 167, 0, 0.10);
  color: #d4a700;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-header h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.trust-header p {
  margin: 0;
  color: #5b6780;
  font-size: 16px;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  position: relative;
  padding: 28px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  transition: 0.25s ease;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(212, 167, 0, 0.08);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
}

.trust-card.featured {
  background: linear-gradient(135deg, #172033 0%, #0f172a 100%);
  border-color: rgba(255, 209, 0, 0.18);
}

.trust-card.featured strong,
.trust-card.featured span,
.trust-card.featured small {
  color: #ffffff;
}

.trust-card.featured .trust-icon {
  background: #ffd100;
  color: #172033;
}

.trust-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(212, 167, 0, 0.12);
  color: #d4a700;
}

.trust-icon svg {
  width: 25px;
  height: 25px;
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  color: #d4a700;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.trust-card span {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 700;
}

.trust-card small {
  display: block;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-section {
    margin: 46px auto;
    padding-top: 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .trust-header h2 {
    font-size: 29px;
  }

  .trust-header p {
    font-size: 14px;
  }

  .trust-card strong {
    font-size: 32px;
  }

  .trust-card span {
    font-size: 16px;
  }
}

/* CATEGORIAS PREMIUM */
.categories-section {
  margin: 72px auto;
}

.categories-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: #d4a700;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.categories-heading h2 {
  margin: 0 0 9px;
  color: #111827;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.categories-heading p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 16px;
  border: 1px solid rgba(212, 167, 0, 0.25);
  border-radius: 12px;
  color: #b58f00;
  background: #fffdf5;
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.view-all:hover {
  color: #111827;
  border-color: #ffd100;
  background: #ffd100;
  transform: translateY(-2px);
}

.view-all svg {
  width: 17px;
  height: 17px;
  transition: 0.25s ease;
}

.view-all:hover svg {
  transform: translateX(3px);
}

.categories-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -62px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.95;
  transition: transform 0.35s ease;
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.category-card:hover::before {
  transform: scale(1.18);
}

.category-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  transition: 0.3s ease;
}

.category-icon svg {
  width: 26px;
  height: 26px;
}

.category-card:hover .category-icon {
  transform: rotate(-6deg) scale(1.08);
}

.category-text {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.category-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.category-text h3 {
  margin: 0 0 6px;
  color: #172033;
  font-size: 18px;
  font-weight: 800;
}

.category-text p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.category-arrow {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #172033;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
  transition: 0.28s ease;
}

.category-arrow svg {
  width: 18px;
  height: 18px;
}

.category-card:hover .category-arrow {
  color: #ffffff;
  background: #172033;
  transform: translateX(4px);
}

/* CORES INDIVIDUAIS */
.category-medicines::before {
  background: #fff1bf;
}

.category-medicines .category-icon {
  color: #ad8600;
  background: #fff5d4;
}

.category-beauty::before {
  background: #fde4ed;
}

.category-beauty .category-icon {
  color: #c7567a;
  background: #fff0f5;
}

.category-personal::before {
  background: #dff6ee;
}

.category-personal .category-icon {
  color: #22845e;
  background: #ecfbf5;
}

.category-vitamins::before {
  background: #eee7ff;
}

.category-vitamins .category-icon {
  color: #7553c8;
  background: #f5f1ff;
}

.category-baby::before {
  background: #dff2ff;
}

.category-baby .category-icon {
  color: #327ca8;
  background: #edf8ff;
}

.category-firstaid::before {
  background: #ffe6dd;
}

.category-firstaid .category-icon {
  color: #c85f42;
  background: #fff2ed;
}

/* TABLET */
@media (max-width: 980px) {
  .categories-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .categories-section {
    margin: 48px auto;
  }

  .categories-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .categories-heading h2 {
    font-size: 31px;
  }

  .categories-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .view-all {
    width: 100%;
    justify-content: center;
  }

  .categories-premium {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-card {
    min-height: 165px;
    padding: 21px;
    border-radius: 19px;
  }

  .category-text h3 {
    font-size: 17px;
  }
}

/* FOOTER PREMIUM */
.footer-premium {
  margin-top: 80px;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
}

/* TOPO DO FOOTER AJUSTADO */
.footer-top {
  padding: 24px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 209, 0, 0.08), transparent 34%),
    linear-gradient(135deg, #172033 0%, #111827 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.footer-benefit:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 209, 0, 0.22);
}

.footer-benefit:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 209, 0, 0.14);
  color: #ffd100;
}

.footer-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.footer-benefit strong,
.footer-benefit span {
  display: block;
}

.footer-benefit strong {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.footer-benefit span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.footer-benefit:last-child {
  border-right: 0;
}

.footer-benefit-icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 209, 0, 0.13);
  color: #ffd100;
}

.footer-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.footer-benefit strong,
.footer-benefit span {
  display: block;
}

.footer-benefit strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.footer-benefit span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1.1fr;
  gap: 42px;
  padding-top: 58px;
  padding-bottom: 46px;
}

.footer-logo {
  width: fit-content;
  margin-bottom: 17px;
  color: #ffffff;
}

.footer-logo .logo-icon {
  background: #ffd100;
  color: #172033;
}

.footer-brand > p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.25s ease;
}

.footer-socials a:hover {
  border-color: #ffd100;
  background: #ffd100;
  color: #172033;
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
}

.footer-column h4,
.footer-contact h4 {
  margin: 5px 0 19px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #ffd100;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #ffffff;
}

.footer-contact-item > span {
  width: 37px;
  height: 37px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 209, 0, 0.1);
  color: #ffd100;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
}

.footer-contact-item small,
.footer-contact-item strong {
  display: block;
}

.footer-contact-item small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.4;
}

.footer-hours svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #ffd100;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 209, 0, 0.18);
  border-radius: 21px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 209, 0, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.035);
}

.newsletter-label {
  display: block;
  margin-bottom: 8px;
  color: #ffd100;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-newsletter h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 21px;
  letter-spacing: -0.5px;
}

.footer-newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.newsletter-form {
  width: 100%;
  max-width: 435px;
  display: flex;
  padding: 5px;
  border-radius: 13px;
  background: #ffffff;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  padding: 0 13px;
  border: 0;
  outline: none;
  color: #172033;
  font-family: inherit;
  font-size: 12px;
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  border: 0;
  border-radius: 9px;
  background: #ffd100;
  color: #172033;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.newsletter-form button:hover {
  background: #e8bd00;
}

.newsletter-form button svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.footer-bottom-content > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-payment > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.payment-tags {
  display: flex;
  gap: 6px;
}

.payment-tags span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

/* TABLET */
@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 28px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    max-width: none;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .footer-premium {
    margin-top: 52px;
  }

  .footer-benefits {
    grid-template-columns: 1fr;
  }

  .footer-benefit {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-benefit:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 39px;
    padding-bottom: 35px;
  }

  .footer-column h4,
  .footer-contact h4 {
    margin-top: 0;
  }

  .footer-newsletter {
    gap: 18px;
    padding: 23px 18px;
    border-radius: 17px;
  }

  .footer-newsletter h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  .footer-newsletter p {
    line-height: 1.55;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
    padding: 7px;
    background: transparent;
  }

  .newsletter-form input {
    min-height: 46px;
    border-radius: 9px;
    background: #ffffff;
  }

  .newsletter-form button {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 35px;
  }

  .footer-bottom-content {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }

  .footer-payment {
    flex-direction: column;
    gap: 8px;
  }

  .payment-tags {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 212, 0, 0.45);
  color: #b89100;
  background: rgba(255, 212, 0, 0.12);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 28px;
}

.tag i {
  width: 18px;
  height: 18px;
  stroke: #b89100;
}

h1 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 22px;
  color: #111827;
}

h1 span,
.promo span {
  color: #d4a900;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0;
}

.hero-icons div,
.benefit {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-icons i,
.benefit i {
  width: 28px;
  height: 28px;
  stroke: #d4a900;
}

.hero-icons strong,
.benefit strong {
  display: block;
  color: #111827;
}

.hero-icons small,
.benefit span {
  color: #6b7280;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 16px 26px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  border: 0;
  cursor: pointer;
}

.primary {
  background: #ffd400;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.25);
}

.secondary {
  border: 1px solid rgba(212, 169, 0, 0.35);
  color: #b89100;
  margin-left: 12px;
}

/* BENEFÍCIOS */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

/* SEÇÕES */
.section,
.page {
  padding: 76px 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: 32px;
  color: #111827;
}

.section-title a {
  color: #b89100;
  font-weight: 800;
}

/* PRODUTOS */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 18px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 0, 0.65);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-img {
  height: 170px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
  text-align: center;
}

.red {
  background: #c90000;
  color: #fff;
}

.green {
  background: #dff6df;
  color: #146b14;
}

.blue {
  background: #3030b9;
  color: #fff;
}

.aqua {
  background: #81e4eb;
  color: #03383d;
}

.yellow {
  background: #ffd400;
  color: #000;
}

.product-card h3 {
  font-size: 16px;
  line-height: 1.4;
  min-height: 68px;
  color: #111827;
}

.stars {
  color: #f7b500;
  margin: 12px 0;
}

.stars span {
  color: #6b7280;
}

.price {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #111827;
}

.product-card button,
.add-cart {
  width: 100%;
  padding: 14px;
  background: #ffd400;
  color: #000;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-cart i {
  width: 18px;
  height: 18px;
  stroke: #000;
}

/* CATEGORIAS */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.categories a {
  height: 130px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.categories a:hover {
  border-color: #ffd400;
  transform: translateY(-5px);
}

.categories i {
  width: 38px;
  height: 38px;
  stroke: #d4a900;
}

.categories span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

/* PROMO */
.promo,
.offer-hero {
  margin-top: 20px;
  min-height: 280px;
  border: 1px solid rgba(255, 212, 0, 0.35);
  border-radius: 28px;
  background:
    radial-gradient(circle at right, rgba(255, 212, 0, 0.25), transparent 36%),
    #ffffff;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.06);
}

.promo h2 {
  font-size: 42px;
  color: #111827;
}

.promo p {
  color: #4b5563;
  margin: 14px 0 22px;
}

.map i {
  width: 120px;
  height: 120px;
  stroke: #d4a900;
  filter: drop-shadow(0 0 20px rgba(255, 212, 0, 0.45));
}

/* TRUST */
.trust,
.dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 46px auto;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.trust div {
  text-align: center;
}

.trust strong,
.dash-card strong {
  font-size: 30px;
  color: #d4a900;
  display: block;
}

.trust span {
  color: #6b7280;
}

/* FOOTER */
.footer {
  border-top: 1px solid #202020;
  padding: 50px 0;
  background: #111827;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer a,
.footer p {
  display: block;
  color: #cbd5e1;
  margin: 8px 0;
}

.footer .logo {
  color: #fff;
}

.footer-logo {
  margin-bottom: 12px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  z-index: 80;
}

.whatsapp i {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .menu,
  .actions {
    display: none;
  }

  .mobile-btn {
    display: flex;
    margin-left: auto;
  }

  .hero-icons,
  .benefits,
  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .nav {
    height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .logo {
    width: 100%;
  }

  .search {
    order: 3;
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 90px 0;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.9) 60%,
        rgba(255, 255, 255, 0.72) 100%
      ),
      url("../assets/banner-farmacia.png") center right / cover no-repeat;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-icons,
  .benefits,
  .products,
  .categories,
  .trust,
  .footer-grid,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    display: grid;
    gap: 12px;
  }

  .hero-buttons .btn,
  .secondary {
    width: 100%;
    margin: 0;
  }

  .section,
  .page {
    padding: 56px 0;
  }

  .section-title {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .product-card h3 {
    min-height: auto;
  }

  .promo {
    display: block;
    padding: 30px;
    margin-top: 40px;
  }

  .promo h2 {
    font-size: 32px;
  }

  .map {
    text-align: center;
    margin-top: 20px;
  }

  .map i {
    width: 80px;
    height: 80px;
  }

  .footer {
    padding-bottom: 90px;
  }
}

/* =========================================
   PÁGINA DE CATEGORIA PREMIUM
========================================= */

.category-page {
  padding: 22px 0 0;
  background: #f7f8fa;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #718096;
  font-size: 13px;
}

.breadcrumb a {
  color: #64748b;
  transition: 0.2s ease;
}

.breadcrumb a:hover {
  color: #d4a700;
}

.breadcrumb span {
  color: #172033;
  font-weight: 700;
}

.breadcrumb svg {
  width: 15px;
  height: 15px;
  color: #94a3b8;
}

/* BANNER */
.category-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 320px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 209, 0, 0.25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 209, 0, 0.18), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(255, 209, 0, 0.09), transparent 32%),
    linear-gradient(135deg, #172033 0%, #0f172a 100%);
  color: #ffffff;
}

.category-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.category-hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 0 52px 52px;
}

.category-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 209, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 209, 0, 0.09);
  color: #ffd100;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.category-hero-tag svg {
  width: 16px;
  height: 16px;
}

.category-hero h1 {
  max-width: 600px;
  margin: 17px 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.category-hero h1 span {
  color: #ffd100;
}

.category-hero p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.category-hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.category-hero-info div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.category-hero-info svg {
  width: 18px;
  height: 18px;
  color: #ffd100;
}

/* ILUSTRAÇÃO HERO */
.category-hero-visual {
  position: relative;
  z-index: 2;
  min-height: 320px;
}

.hero-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 209, 0, 0.55);
  border-radius: 50%;
}

.orbit-one {
  width: 270px;
  height: 270px;
  top: 25px;
  right: 62px;
}

.orbit-two {
  width: 180px;
  height: 180px;
  top: 73px;
  right: 108px;
  border-color: rgba(255, 255, 255, 0.17);
}

.hero-medical-cross {
  position: absolute;
  top: 96px;
  right: 154px;
  z-index: 2;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: #ffd100;
  color: #172033;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: rotate(12deg);
}

.hero-medical-cross svg {
  width: 56px;
  height: 56px;
}

.hero-pill {
  position: absolute;
  z-index: 3;
  width: 74px;
  height: 31px;
  display: flex;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 19px rgba(0, 0, 0, 0.2);
  transform: rotate(-33deg);
}

.hero-pill span {
  width: 50%;
  height: 100%;
}

.hero-pill span:first-child {
  background: #ffd100;
}

.hero-pill span:last-child {
  background: #ffffff;
}

.pill-one {
  top: 45px;
  right: 70px;
}

.pill-two {
  right: 45px;
  bottom: 55px;
  transform: rotate(24deg) scale(0.78);
}

.hero-product-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(23, 32, 51, 0.93);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero-product-one {
  bottom: 27px;
  left: -20px;
  width: 195px;
  padding: 15px;
  border-radius: 15px;
}

.hero-mini-label {
  display: block;
  margin-bottom: 7px;
  color: #ffd100;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.hero-product-one strong,
.hero-product-one small {
  display: block;
}

.hero-product-one strong {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 13px;
}

.hero-product-one small {
  color: rgba(255, 255, 255, 0.59);
  font-size: 10px;
}

.hero-product-two {
  top: 25px;
  left: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: 13px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.hero-product-two svg {
  width: 20px;
  height: 20px;
  color: #ffd100;
}

/* CHIPS */
.category-chips-section {
  margin-bottom: 38px;
}

.category-chips-title {
  margin-bottom: 12px;
  color: #172033;
  font-size: 13px;
  font-weight: 800;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  padding: 10px 14px;
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: 999px;
  background: #ffffff;
  color: #5b6780;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.category-chip:hover,
.category-chip.active-chip {
  border-color: #ffd100;
  background: #ffd100;
  color: #172033;
}

/* TOOLBAR */
.category-products-section {
  padding-bottom: 72px;
}

.category-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.category-toolbar-label {
  display: block;
  margin-bottom: 7px;
  color: #d4a700;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.category-toolbar h2 {
  margin: 0 0 7px;
  color: #172033;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -1.2px;
}

.category-toolbar p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

.category-toolbar p strong {
  color: #172033;
}

.category-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-mobile-btn {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 32, 51, 0.11);
  border-radius: 11px;
  background: #ffffff;
  color: #172033;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-mobile-btn svg {
  width: 17px;
  height: 17px;
}

.sort-select {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 14px;
  border: 1px solid rgba(23, 32, 51, 0.11);
  border-radius: 11px;
  background: #ffffff;
}

.sort-select span {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.sort-select select {
  border: 0;
  outline: 0;
  background: transparent;
  color: #172033;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* LAYOUT */
.shop-layout-premium {
  display: grid;
  grid-template-columns: 245px 1fr;
  align-items: start;
  gap: 23px;
}

.filters-premium {
  padding: 19px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.04);
}

.filters-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.filters-header span {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
}

.filters-header h3 {
  margin: 0;
  color: #172033;
  font-size: 19px;
}

.filters-header button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c39b00;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.filter-group {
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.filter-group-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #172033;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.filter-group-title svg {
  width: 17px;
  height: 17px;
}

.custom-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  color: #5b6780;
  font-size: 12px;
  cursor: pointer;
}

.custom-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkmark {
  width: 17px;
  height: 17px;
  display: inline-block;
  flex-shrink: 0;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  background: #ffffff;
  transition: 0.2s ease;
}

.custom-check input:checked + .checkmark {
  border-color: #ffd100;
  background: #ffd100;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.custom-check small {
  margin-left: auto;
  color: #94a3b8;
  font-size: 10px;
}

.filters-security {
  display: flex;
  gap: 9px;
  margin-top: 17px;
  padding: 13px;
  border-radius: 12px;
  background: #fff9df;
  color: #725f00;
}

.filters-security svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #caa000;
}

.filters-security p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
}

/* GRID DE PRODUTOS */
.category-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(23, 32, 51, 0.04);
  transition: 0.25s ease;
}

.category-product-card:hover {
  border-color: rgba(255, 209, 0, 0.7);
  box-shadow: 0 18px 34px rgba(23, 32, 51, 0.1);
  transform: translateY(-5px);
}

.product-badges {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.product-discount,
.product-highlight {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
}

.product-discount {
  background: #ffebed;
  color: #d63e46;
}

.product-highlight {
  background: #fff4c5;
  color: #987900;
}

.favorite-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #64748b;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.2s ease;
}

.favorite-btn:hover {
  border-color: #ffd100;
  background: #ffd100;
  color: #172033;
}

.favorite-btn svg {
  width: 18px;
  height: 18px;
}

.category-product-image {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 18px 20px;
  color: #ffffff;
  text-align: center;
}

.category-product-image span {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  letter-spacing: -1px;
}

.category-product-image small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.78;
}

.category-product-image.red {
  background: linear-gradient(135deg, #d93a42 0%, #851c2b 100%);
}

.category-product-image.yellow {
  background: linear-gradient(135deg, #ffce1a 0%, #d29100 100%);
  color: #172033;
}

.category-product-image.green {
  background: linear-gradient(135deg, #198b6a 0%, #0c4c42 100%);
}

.category-product-image.blue {
  background: linear-gradient(135deg, #3474d4 0%, #172d75 100%);
}

.category-product-image.purple {
  background: linear-gradient(135deg, #9064d9 0%, #463079 100%);
}

.category-product-image.aqua {
  background: linear-gradient(135deg, #27a6b3 0%, #126076 100%);
}

.category-product-content {
  padding: 16px;
}

.product-category-name {
  display: block;
  margin-bottom: 6px;
  color: #c39b00;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.category-product-content h3 {
  min-height: 42px;
  margin: 0 0 10px;
  color: #172033;
  font-size: 14px;
  line-height: 1.45;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #f5bb00;
}

.rating-stars svg {
  width: 13px;
  height: 13px;
}

.rating > span {
  color: #94a3b8;
  font-size: 10px;
}

.product-price-box {
  margin-bottom: 14px;
}

.old-price,
.product-price-box strong,
.product-price-box small {
  display: block;
}

.old-price {
  min-height: 13px;
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 11px;
  text-decoration: line-through;
}

.product-price-box strong {
  color: #172033;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.product-price-box small {
  margin-top: 4px;
  color: #64748b;
  font-size: 10px;
}

.category-add-cart {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: #ffd100;
  color: #172033;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.category-add-cart:hover {
  background: #172033;
  color: #ffffff;
}

.category-add-cart svg {
  width: 17px;
  height: 17px;
}

/* PAGINAÇÃO */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 38px;
}

.pagination button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 9px;
  background: #ffffff;
  color: #64748b;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.pagination button:hover,
.pagination .active-page {
  border-color: #ffd100;
  background: #ffd100;
  color: #172033;
}

.pagination-arrow svg {
  width: 18px;
  height: 18px;
}

.pagination span {
  color: #94a3b8;
}

.category-chip {
  border: 1px solid rgba(23, 32, 51, 0.09);
  cursor: pointer;
  font-family: inherit;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-hero {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-product-one {
    left: -55px;
  }
}

@media (max-width: 850px) {
  .category-hero {
    grid-template-columns: 1fr;
  }

  .category-hero-content {
    padding: 42px 34px;
  }

  .category-hero-visual {
    display: none;
  }

  .shop-layout-premium {
    grid-template-columns: 1fr;
  }

  .filters-premium {
    display: none;
  }

  .filter-mobile-btn {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .category-page {
    padding-top: 16px;
  }

  .breadcrumb {
    margin-bottom: 15px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 11px;
  }

  .category-hero {
    min-height: auto;
    border-radius: 21px;
  }

  .category-hero-content {
    padding: 31px 21px;
  }

  .category-hero h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .category-hero p {
    font-size: 14px;
    line-height: 1.6;
  }

  .category-hero-info {
    display: grid;
    grid-template-columns: 1fr;
  }

  .category-hero-info div {
    justify-content: center;
  }

  .category-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .category-chip {
    flex-shrink: 0;
  }

  .category-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .category-toolbar h2 {
    font-size: 29px;
  }

  .category-toolbar-actions {
    width: 100%;
  }

  .filter-mobile-btn {
    flex: 1;
    justify-content: center;
  }

  .sort-select {
    flex: 1.4;
    justify-content: space-between;
  }

  .sort-select span {
    display: none;
  }

  .sort-select select {
    width: 100%;
  }

  .category-products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-product-card {
    display: grid;
    grid-template-columns: 125px 1fr;
    overflow: visible;
  }

  .category-product-image {
    min-height: 100%;
    padding: 55px 10px 15px;
    border-radius: 17px 0 0 17px;
  }

  .category-product-image span {
    font-size: 15px;
  }

  .category-product-image small {
    font-size: 9px;
  }

  .category-product-content {
    padding: 15px 14px;
  }

  .category-product-content h3 {
    min-height: auto;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .product-badges {
    top: 8px;
    right: 8px;
    left: 8px;
  }

  .favorite-btn {
    width: 30px;
    height: 30px;
  }

  .product-price-box strong {
    font-size: 18px;
  }

  .category-add-cart {
    padding: 10px;
  }
}