@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Patua+One&display=swap");

:root {
  --blue: #0846a8;
  --blue-dark: #05337b;
  --blue-soft: #eaf2ff;
  --yellow: #ffd978;
  --yellow-soft: #fff3cf;
  --green: #12b94f;
  --green-dark: #0c943e;
  --white: #ffffff;
  --ink: #132033;
  --muted: #5e6a7d;
  --line: rgba(8, 70, 168, 0.14);
  --shadow: 0 18px 45px rgba(5, 51, 123, 0.14);
  --radius: 26px;
  --container: 1180px;
  --bg-paws-beige: url("https://aquapetcenter.com.br/wp-content/uploads/2023/07/6451136c644b984994719b5c_6155f6b3e02e5dafd4f96acf_Frame_1_4-min.png");
  --bg-paws-blue: url("https://aquapetcenter.com.br/wp-content/uploads/2023/07/6155f241f426f229d4ab6a7a_Frame-1-3-min.png");
  --bg-paws-beige-circles: url("https://aquapetcenter.com.br/wp-content/uploads/2023/07/645b8f25e92abf068b3900ef_frame1-min1-min.png");
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-display: "Patua One", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

.hero-media img,
.pet-cutout img,
.vet-card img,
.cleaning-grid > img,
.why-grid img,
.final-grid img,
.address-card img {
  object-fit: cover;
  object-position: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 20;
  max-width: 100%;
  overflow-x: clip;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 100%;
  padding: 14px max(16px, calc((100% - var(--container)) / 2));
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(4, 34, 84, 0.2);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.brand-logo-link {
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
}

.brand-logo--footer {
  height: 58px;
}

.footer-brand {
  margin-bottom: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-whatsapp::before,
.floating-whatsapp::before,
.dest-card-action::before,
.store-card-link--whatsapp::before {
  content: "\f232";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1.125rem;
  line-height: 1;
}

.store-card-link:not(.store-card-link--whatsapp)::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1;
}

.floating-whatsapp::before {
  width: 1.65rem;
  height: 1.65rem;
  font-size: 1.65rem;
}

.btn.btn-whatsapp::before {
  transform: translateY(1px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(18, 185, 79, 0.28);
  padding: 15px 22px;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.header-cta {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--blue);
}

.section-blue {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.hero {
  min-height: auto;
  padding: 48px 0 56px;
}

.decor {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.decor-yellow {
  top: -120px;
  right: -160px;
  width: 420px;
  height: 520px;
  background: var(--yellow);
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Icones oficiais Aquapet + Font Awesome — tamanho unico de icone */
.aq-icon,
img.aq-icon {
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  max-width: 1.125rem;
  max-height: 1.125rem;
  object-fit: contain;
}

.ui-icon {
  flex-shrink: 0;
  width: 1.125rem;
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
}

.google-g-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.eyebrow .ui-icon,
.eyebrow .aq-icon,
.trust-row .ui-icon,
.trust-row .aq-icon,
.category-card h3 .ui-icon,
.category-card h3 .aq-icon,
.vet-card h3 .ui-icon,
.info-card h3 .ui-icon,
.offer-card span .ui-icon,
.benefit-grid .ui-icon,
.benefit-grid .aq-icon {
  color: var(--blue);
}

.card-bg-blue .category-card-copy .ui-icon,
.vet-card.card-bg-blue h3 .ui-icon,
.info-card.card-bg-blue h3 .ui-icon,
.info-card.card-bg-blue a .ui-icon {
  color: inherit;
}

.cleaning-copy .eyebrow .ui-icon,
.cleaning-copy .ui-icon {
  color: var(--yellow);
}

.final-grid .eyebrow .ui-icon,
.final-grid .eyebrow .aq-icon {
  color: var(--blue);
}

.nav-links a .ui-icon,
.nav-links a .aq-icon {
  color: currentColor;
}

.offer-card span .ui-icon {
  color: var(--blue);
}

.eyebrow,
.trust-row span,
.benefit-grid div,
.category-card h3,
.vet-card h3,
.info-card h3,
.offer-card span,
.nav-links a,
.site-footer a:not(.brand) {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.benefit-grid div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cleaning-copy h2,
.why-grid h2,
.final-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 7.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 650px;
}

.hero-subtitle {
  max-width: 620px;
  margin: 18px 0 8px;
  color: var(--yellow);
  font-size: clamp(1.05rem, 3.6vw, 1.45rem);
  font-weight: 900;
  line-height: 1.3;
}

.hero p:not(.hero-subtitle) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 8px;
}

.trust-row span {
  width: 100%;
  justify-content: flex-start;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-row .aq-icon,
.trust-row .ui-icon {
  width: 0.875rem;
  height: 0.875rem;
  max-width: 0.875rem;
  max-height: 0.875rem;
  font-size: 0.875rem;
}

.hero .trust-row .ui-icon {
  color: var(--white);
}

.hero-media {
  position: relative;
  order: -1;
}

.hero-media img {
  width: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.category-card h3,
.vet-card h3,
.offer-card h3,
.info-card h3,
.address-card h3,
.site-footer h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.section-light {
  padding: 86px 0;
}

/* ---- Sistema de backgrounds por secao ---- */
[class*="section-bg-"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 56px 0;
}

[class*="section-bg-"] > .container,
[class*="section-bg-"] > article,
.paw-bg > *,
.section-bg-paws-circles > * {
  position: relative;
  z-index: 1;
}

/* Branco + bolhas liquidas amarelo/azul */
.section-bg-white-blob {
  background: var(--white);
}

.section-bg-white-blob::before,
.section-bg-white-blob::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.section-bg-white-blob::before {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(255, 217, 120, 0.55) 0%, rgba(255, 217, 120, 0) 72%);
  transform: rotate(-12deg);
}

.section-bg-white-blob::after {
  right: -100px;
  bottom: -140px;
  width: 480px;
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(8, 70, 168, 0.14) 0%, rgba(8, 70, 168, 0) 70%);
  transform: rotate(18deg);
}

/* Patas + circulos azuis — legado, substituido por imagens unicas por secao */
.section-bg-paws-circles {
  padding: 82px 0 0;
  background-color: var(--yellow);
  background-image: var(--bg-paws-beige-circles);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Background unico por bloco de racao */
.product-feature {
  padding: 86px 0 0;
  background: var(--white);
}

.split-product--caes,
.split-product--gatos {
  background-color: #fff6e4;
  background-image: var(--bg-paws-beige);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-destaques {
  padding: 86px 0;
  background: #f8f9fa;
}

.google-trends-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 14px;
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-radius: 999px;
  color: #3c4043;
  background: #fff;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
}

.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dest-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dest-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 64, 67, 0.12), 0 8px 24px rgba(60, 64, 67, 0.08);
}

.dest-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.dest-card-media {
  position: relative;
  overflow: hidden;
}

.dest-card-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dest-card:hover .dest-card-media img {
  transform: scale(1.03);
}

.dest-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(32, 33, 36, 0.78);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dest-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 14px;
}

.dest-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 8px;
  color: #5f6368;
  font-size: 0.82rem;
}

.dest-card-score {
  color: #202124;
  font-weight: 800;
}

.dest-card-stars {
  color: #fbbc04;
  font-size: 0.78rem;
  letter-spacing: -0.04em;
}

.dest-card-meta-label {
  color: #80868b;
}

.dest-card-body h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.3;
}

.dest-card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.45;
}

.dest-card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.dest-card-brands span {
  padding: 4px 9px;
  border: 1px solid #e8eaed;
  border-radius: 999px;
  color: #3c4043;
  background: #f1f3f4;
  font-size: 0.72rem;
  font-weight: 600;
}

.dest-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 15px 18px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 16px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.dest-card-action::before {
  font-size: 1.125rem;
  color: var(--white);
}

.dest-card-action:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.section-bg-offers {
  background-color: #fff6e4;
  background-image: var(--bg-paws-beige);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

/* Branco + ovais azuis e amarelos */
.section-bg-white-ovals {
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.section-bg-white-ovals::before {
  position: absolute;
  top: 8%;
  right: -6%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(8, 70, 168, 0.1);
  content: "";
  pointer-events: none;
}

.section-bg-white-ovals::after {
  position: absolute;
  bottom: 10%;
  left: -4%;
  width: 260px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 217, 120, 0.45);
  content: "";
  pointer-events: none;
}

/* Azul com formas liquidas */
.section-bg-blue-liquid {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #0a3d96 55%, var(--blue-dark) 100%);
}

.section-bg-blue-liquid::before {
  position: absolute;
  top: -18%;
  right: -8%;
  width: 520px;
  height: 520px;
  border-radius: 42% 58% 65% 35% / 38% 42% 58% 62%;
  background: rgba(255, 217, 120, 0.22);
  content: "";
  pointer-events: none;
}

.section-bg-blue-liquid::after {
  position: absolute;
  bottom: -22%;
  left: -10%;
  width: 440px;
  height: 440px;
  border-radius: 58% 42% 35% 65% / 52% 38% 62% 48%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

/* Creme suave + oval central */
.section-bg-cream-blob {
  background: linear-gradient(180deg, #fffdf8 0%, #fff6e4 100%);
}

.section-bg-cream-blob::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 900px);
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 217, 120, 0.35) 0%, rgba(255, 217, 120, 0) 68%);
  transform: translate(-50%, -50%);
  content: "";
  pointer-events: none;
}

.section-bg-cream-blob::after {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(8, 70, 168, 0.08);
  content: "";
  pointer-events: none;
}

/* Branco + bolhas liquidas multiplas */
.section-bg-white-liquid {
  background: var(--white);
}

.section-bg-white-liquid::before {
  position: absolute;
  top: -60px;
  right: 12%;
  width: 300px;
  height: 300px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: rgba(8, 70, 168, 0.09);
  content: "";
  pointer-events: none;
}

.section-bg-white-liquid::after {
  position: absolute;
  bottom: -80px;
  left: 8%;
  width: 360px;
  height: 280px;
  border-radius: 41% 59% 42% 58% / 52% 41% 59% 48%;
  background: rgba(255, 217, 120, 0.38);
  content: "";
  pointer-events: none;
}

/* Azul bem claro + circulos brancos */
.section-bg-soft-blue {
  background: linear-gradient(180deg, var(--blue-soft) 0%, #f5f9ff 100%);
}

.section-bg-soft-blue::before {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  pointer-events: none;
}

.section-bg-soft-blue::after {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 217, 120, 0.35);
  content: "";
  pointer-events: none;
}

/* CTA final azul profundo + blob amarelo */
.section-bg-blue-deep {
  color: var(--white);
  background: linear-gradient(160deg, var(--blue-dark) 0%, #042a66 100%);
}

.section-bg-blue-deep::before {
  position: absolute;
  top: -25%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%;
  background: rgba(255, 217, 120, 0.18);
  content: "";
  pointer-events: none;
}

.section-bg-blue-deep::after {
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 560px;
  height: 560px;
  border-radius: 45% 55% 52% 48% / 48% 52% 48% 52%;
  background: rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.paw-bg,
.section-bg-paws-circles {
  position: relative;
  overflow: hidden;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.split-copy h2,
.cleaning-copy h2,
.why-grid h2,
.final-grid h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Fundos oficiais Aquapet (links do site) para cards */
.card-bg-beige,
.card-bg-circles,
.card-bg-blue {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card-bg-beige {
  background-color: #fff6e4;
  background-image: var(--bg-paws-beige);
}

.card-bg-circles {
  background-color: var(--yellow);
  background-image: var(--bg-paws-beige-circles);
}

.card-bg-blue {
  background-color: var(--blue);
  background-image: var(--bg-paws-blue);
}

.category-card[class*="card-bg-"] .category-card-copy {
  background: rgba(255, 255, 255, 0.9);
}

.offer-card[class*="card-bg-"] {
  position: relative;
  background-color: transparent;
}

.offer-card[class*="card-bg-"]::before {
  position: absolute;
  inset: 210px 0 0;
  z-index: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, 0.92);
  content: "";
  pointer-events: none;
}

.offer-card.card-bg-beige {
  background-image: var(--bg-paws-beige);
}

.offer-card.card-bg-circles {
  background-image: var(--bg-paws-beige-circles);
}

.offer-card.card-bg-blue {
  background-image: var(--bg-paws-blue);
}

.offer-card[class*="card-bg-"] > * {
  position: relative;
  z-index: 1;
}

.vet-card[class*="card-bg-"] > div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.vet-card.card-bg-blue {
  color: var(--white);
}

.vet-card.card-bg-blue > div {
  background: rgba(8, 70, 168, 0.88);
}

.vet-card.card-bg-blue p,
.vet-card.card-bg-blue li {
  color: rgba(255, 255, 255, 0.88);
}

.info-card[class*="card-bg-"] {
  position: relative;
  color: var(--ink);
}

.info-card.card-bg-beige {
  background-image: var(--bg-paws-beige);
}

.info-card.card-bg-circles {
  background-image: var(--bg-paws-beige-circles);
}

.info-card.card-bg-blue {
  color: var(--white);
  background-image: var(--bg-paws-blue);
}

.info-card[class*="card-bg-"]::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  content: "";
  pointer-events: none;
}

.info-card.card-bg-blue::before {
  background: rgba(8, 70, 168, 0.88);
}

.info-card[class*="card-bg-"] > * {
  position: relative;
  z-index: 1;
}

.info-card.card-bg-blue h3 {
  color: var(--yellow);
}

.info-card.card-bg-blue p {
  color: rgba(255, 255, 255, 0.9);
}

.info-card.card-bg-blue a {
  color: var(--yellow);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:not([class*="card-bg-"]) {
  background: var(--white);
}

.category-card:hover,
.offer-card:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(5, 51, 123, 0.2);
}

.category-card img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.category-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  padding: 18px 16px 22px;
}

.category-card h3,
.category-card p {
  margin: 0;
  padding: 0;
  width: 100%;
}

.category-card h3 {
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.3;
  white-space: normal;
}

.category-card p {
  color: #4d4a3f;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: normal;
}

.paw-bg,
.section-bg-paws-circles {
  position: relative;
  overflow: hidden;
}

.split-product {
  position: relative;
  padding: 36px 0 64px;
}

.split-product-alt {
  background-color: transparent;
}

.split-product-alt .split-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.pet-cutout {
  position: relative;
}

.pet-cutout::before,
.pet-cutout::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--blue);
}

.pet-cutout::before {
  width: 170px;
  height: 170px;
  left: -28px;
  bottom: 12%;
}

.pet-cutout::after {
  width: 84px;
  height: 84px;
  right: 6%;
  top: 12%;
}

.pet-cutout img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 590px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.split-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.brand-list li,
.pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
}

.brand-list.compact {
  grid-template-columns: repeat(2, minmax(0, 160px));
}

.vet-grid {
  display: grid;
  gap: 24px;
}

.vet-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vet-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.vet-card h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

.vet-card ul {
  padding-left: 18px;
  margin-bottom: 22px;
  font-weight: 800;
}

.card-yellow,
.card-bg-beige:not(.category-card):not(.offer-card):not(.info-card) {
  background-color: #fff6e4;
  background-image: var(--bg-paws-beige);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(5, 51, 123, 0.12);
}

.card-blue,
.card-bg-blue:not(.category-card):not(.offer-card):not(.info-card) {
  color: var(--white);
  background-color: var(--blue);
  background-image: var(--bg-paws-blue);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(5, 51, 123, 0.22);
}

.card-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.cleaning-section {
  padding: 86px 0;
}

.cleaning-grid,
.why-grid,
.final-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.cleaning-copy h2,
.final-grid h2 {
  color: var(--white);
}

.cleaning-copy p,
.final-grid p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.cleaning-grid > img,
.why-grid img,
.final-grid img,
.address-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.cleaning-copy .pill-list li {
  color: var(--blue);
  background: var(--yellow);
}

.offers-banner {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offers-banner img {
  width: 100%;
  height: min(42vw, 320px);
  object-fit: cover;
  object-position: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
  opacity: 1;
  visibility: visible;
}

.offer-card:not([class*="card-bg-"]),
.info-card:not([class*="card-bg-"]) {
  background: var(--white);
}

.offer-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.offer-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 18px 18px 0;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-card h3,
.offer-card p,
.offer-card a {
  margin-right: 18px;
  margin-left: 18px;
}

.offer-card h3 {
  color: var(--blue);
}

.offer-card p {
  color: var(--muted);
}

.offer-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-weight: 950;
}

.why-section {
  padding: 86px 0;
}

.why-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.benefit-grid div {
  padding: 16px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--white);
  font-family: var(--font-display);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(5, 51, 123, 0.08);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.units-map-banner {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.units-map-banner img {
  display: block;
  width: 100%;
  height: min(38vw, 280px);
  object-fit: cover;
  object-position: center;
}

.store-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.units-maps-grid.store-cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1100px;
  margin-inline: auto;
}

.units-maps-grid--single {
  max-width: 520px;
}

.store-card-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 10px 0 0;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
}

.store-card-phone a {
  color: inherit;
}

.store-card-phone .ui-icon {
  color: var(--green-dark);
}

.units-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.units-phone .ui-icon {
  color: var(--green-dark);
}

.store-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(8, 70, 168, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 51, 123, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(5, 51, 123, 0.12);
}

.store-card-top {
  margin-bottom: 14px;
}

.store-card-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.store-card-badge--km {
  color: var(--white);
  background: var(--blue);
}

.store-card-top h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.25rem;
}

.store-card-address {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 16px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.store-card-address .ui-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--blue);
}

.store-card-block {
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.store-card-block strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.88rem;
}

.store-card-block p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.store-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.store-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 10px 14px;
  border: 1px solid rgba(8, 70, 168, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: #f5f8ff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.store-card-link:hover {
  border-color: rgba(8, 70, 168, 0.35);
  background: #eaf1ff;
}

.store-card-link--whatsapp {
  color: var(--green-dark);
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.store-card-link--whatsapp:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.4);
}

.store-card--map {
  padding: 0;
  overflow: hidden;
}

.store-card-map {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  background: var(--blue-soft);
}

.store-card-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.store-card--map .store-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.units-maps-grid {
  margin-top: 32px;
}

.units-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 28px;
  text-align: center;
}

.units-footer .units-hours {
  margin: 0;
}

.units-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-units-head {
  max-width: 720px;
}

.trust-units-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: none;
}

.trust-units-media {
  min-width: 0;
}

.trust-units-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin-top: 0;
  color: var(--blue);
}

.info-card p {
  margin: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.info-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green-dark);
  font-weight: 950;
}

.address-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue) 0%, #0a52c4 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.address-card h3 {
  margin-top: 0;
  color: var(--yellow);
  font-size: 1.7rem;
}

.address-card p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.final-cta {
  padding: 56px 0;
}

.site-footer {
  padding: 36px 0 calc(88px + env(safe-area-inset-bottom, 0));
  color: rgba(255, 255, 255, 0.8);
  background: #031f4d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.75fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  margin-top: 0;
  color: var(--yellow);
}

.site-footer a:not(.brand) {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 8px 0;
}

.floating-whatsapp {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(18, 185, 79, 0.36);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

@media (max-width: 1020px) {
  .topbar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: var(--blue-dark);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-grid,
  .split-grid,
  .cleaning-grid,
  .why-grid,
  .final-grid,
  .address-card {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-cards-grid,
  .dest-cards-grid,
  .offers-grid,
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vet-card {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    border-radius: var(--radius);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .navbar {
    padding: 12px;
  }

  .brand {
    font-size: 1.42rem;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-logo--footer {
    height: 50px;
  }

  .hero,
  .section-destaques,
  [class*="section-bg-"],
  .cleaning-section,
  .why-section,
  .final-cta {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .category-card img {
    height: 180px;
  }

  .dest-cards-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-inline: -12px;
    padding: 4px 12px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .dest-card {
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
  }

  .store-cards-grid {
    grid-template-columns: 1fr;
  }

  .units-grid,
  .brand-list,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .vet-card,
  .address-card {
    padding: 18px;
  }

  .hero-media img {
    min-height: 220px;
    max-height: 320px;
  }

  .vet-card img,
  .cleaning-grid > img,
  .why-grid img,
  .final-grid img,
  .address-card img {
    min-height: 260px;
  }

  .store-card-map {
    min-height: 220px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: auto;
    max-width: calc(100% - 24px);
  }
}

/* ---- Landing enxuta (4 dobras) ---- */
.bait-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bait-products {
  padding: 56px 0;
}

.bait-carousel-wrap {
  position: relative;
  padding-bottom: 4px;
  max-width: 100%;
}

.bait-carousel-outer {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  margin-inline: -4px;
  padding: 8px 0 20px;
}

.bait-carousel {
  display: flex;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  height: auto;
  min-height: 0;
  padding: 6px 12px 18px;
  touch-action: pan-x;
}

.bait-carousel::-webkit-scrollbar {
  display: none;
}

.bait-carousel .bait-card {
  flex: 0 0 min(86vw, 320px);
  width: min(86vw, 320px);
  min-width: 0;
  max-width: 100%;
  height: auto;
  align-self: stretch;
  scroll-snap-align: center;
}

.bait-carousel-btn {
  display: none;
  position: absolute;
  z-index: 2;
  top: 42%;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bait-carousel-btn--prev {
  left: 10px;
  transform: translateY(-50%);
}

.bait-carousel-btn--next {
  right: 10px;
  transform: translateY(-50%);
}

.bait-carousel-btn:hover {
  background: var(--blue-dark);
}

.bait-carousel-btn--prev:hover {
  transform: translateY(-50%) scale(1.06);
}

.bait-carousel-btn--next:hover {
  transform: translateY(-50%) scale(1.06);
}

.bait-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  padding: 0 8px;
}

.bait-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 70, 168, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 0 8px transparent;
}

.bait-carousel-dots button.is-active {
  background: var(--blue);
  transform: scale(1.2);
}

.bait-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .bait-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(5, 51, 123, 0.16);
  }
}

.bait-card-media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  min-height: 150px;
  background: linear-gradient(165deg, #05337B 0%, #1a5a9e 42%, #F5C518 100%);
}

.bait-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bait-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bait-badge--vet {
  background: var(--green-dark);
}

.bait-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 16px;
}

.bait-card-body h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

.bait-price {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.bait-price strong {
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.bait-desc {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.bait-tags {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bait-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.bait-card-body .btn {
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}

.btn-sm {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.btn-lg {
  min-height: 56px;
  padding: 18px 28px;
  font-size: 1rem;
}

.bait-disclaimer {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.trust-units {
  padding: 56px 0;
}

.trust-units-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.trust-block h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 700;
}

.trust-list .ui-icon {
  margin-top: 0.15rem;
  color: var(--green-dark);
}

.units-block {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.units-block h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 16px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.units-compact {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.units-compact li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.units-compact li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.units-compact strong {
  display: block;
  color: var(--blue);
  font-size: 0.95rem;
}

.units-compact span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.units-hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

.final-cta-inner h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.75rem);
  font-weight: 400;
}

.final-cta-inner p {
  margin: 0;
  max-width: 520px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.final-cta-inner .btn {
  width: 100%;
  justify-content: center;
}

.footer-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-minimal p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .bait-carousel .bait-card {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
    min-width: 240px;
  }

  .trust-units-head--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-units-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .bait-carousel-btn {
    display: none;
  }

  .bait-carousel-wrap {
    padding-inline: 0;
  }

  .bait-carousel-outer {
    margin-inline: -8px;
    padding: 8px 0 22px;
  }

  .bait-carousel {
    gap: 12px;
    padding: 6px 16px 18px;
  }

  .bait-card-media {
    aspect-ratio: 4 / 3;
    min-height: 150px;
  }

  .bait-carousel .bait-card {
    flex: 0 0 min(88vw, 340px);
    width: min(88vw, 340px);
    min-width: 0;
  }

  .units-maps-grid.store-cards-grid {
    grid-template-columns: 1fr;
  }

  .store-card-body {
    padding: 16px;
  }

  .store-card-actions {
    flex-direction: column;
  }

  .store-card-link {
    width: 100%;
    justify-content: center;
  }

  .units-footer {
    flex-direction: column;
    gap: 12px;
  }

  .units-footer .btn,
  .units-footer-actions .btn {
    width: 100%;
  }

  .units-footer-actions {
    width: 100%;
    flex-direction: column;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .footer-minimal {
    flex-direction: column;
    text-align: center;
  }

  .footer-minimal p {
    font-size: 0.84rem;
    line-height: 1.45;
  }
}

/* ---- Desktop / tablet enhancements (mobile-first) ---- */
@media (min-width: 681px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
  }

  .trust-row {
    flex-direction: row;
  }

  .trust-row span {
    width: auto;
    border-radius: 999px;
  }

  .bait-carousel-btn {
    display: flex;
  }

  .bait-carousel-outer {
    margin-inline: 0;
    padding: 12px 2px 26px;
  }

  .bait-carousel {
    gap: 16px;
    padding: 8px 4px 20px;
  }

  .bait-carousel .bait-card {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
    min-width: 240px;
    scroll-snap-align: start;
  }

  .bait-card-media {
    aspect-ratio: 16 / 10;
    min-height: 168px;
  }

  .bait-card-body {
    padding: 16px 18px 20px;
  }

  .bait-card-body h3 {
    font-size: 1.05rem;
  }

  .units-maps-grid.store-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
  }

  .units-maps-grid--single {
    max-width: 560px;
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    font-size: 0.92rem;
  }

  .final-cta-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
  }

  .final-cta-inner p {
    margin-inline: 0;
  }

  .final-cta-inner .btn {
    width: auto;
  }
}

@media (min-width: 1021px) {
  .hero {
    min-height: 680px;
    padding: 82px 0 72px;
  }

  .decor-yellow {
    top: -160px;
    right: -120px;
    width: 640px;
    height: 760px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 46px;
  }

  .hero-media {
    order: 0;
  }

  .hero-media img {
    min-height: 500px;
    max-height: none;
    border-radius: 44% 0 0 44%;
  }

  .hero-actions {
    margin-top: 28px;
  }

  [class*="section-bg-"] {
    padding: 86px 0;
  }

  .bait-products,
  .trust-units {
    padding: 72px 0;
  }

  .final-cta {
    padding: 86px 0;
  }

  .site-footer {
    padding: 46px 0;
  }

  .bait-carousel .bait-card {
    flex: 0 0 calc(33.333% - 11px);
    width: calc(33.333% - 11px);
    min-width: 260px;
  }

  .bait-card-media {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }

  .bait-card {
    border-radius: 20px;
  }
}
