  /* =========================================================
   XP IMPORT
   STYLE.CSS - VERSÃO FINAL
   ========================================================= */

:root {
  --navy: #071936;
  --navy-2: #101a33;
  --navy-3: #151a2d;
  --yellow: #ffd42f;
  --yellow-2: #f5b900;
  --orange: #ff7a00;
  --orange-2: #ff9d24;

  --text: #182235;
  --muted: #64748b;
  --light: #f6f7f9;
  --white: #ffffff;
  --border: #e5e7eb;

  --shadow: 0 8px 30px rgba(7, 25, 54, .08);
  --shadow-hover: 0 16px 40px rgba(7, 25, 54, .14);

  --radius: 18px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #ffffff;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(226,232,240,.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-slot {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 12px;
  background: var(--yellow);

  color: var(--navy);
  font-weight: 900;
  font-size: 20px;

  cursor: pointer;
}

.logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .5px;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: #475569;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.header-user {
  color: var(--muted);
  font-size: 12px;
}

.header-user a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.header-button {
  padding: 13px 18px;
  border-radius: 11px;

  background: var(--navy);
  color: #fff;

  text-decoration: none;
  font-size: 12px;
  font-weight: 800;

  white-space: nowrap;
}

.header-button:hover {
  background: var(--yellow-2);
  color: var(--navy);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  padding: 70px 0;
}

.hero-badge {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff8d8;
  color: #946c00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero h1 {
  margin: 22px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 20px;
  border-radius: 12px;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.primary-button {
  background: var(--navy);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 11px;
}

.hero-trust strong {
  color: #18a957;
}

.hero-visual {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: #fff4c2;
}

.hero-card-main {
  position: relative;
  z-index: 2;

  width: 330px;
  height: 330px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 25px;
  border-radius: 35px;

  background:
    linear-gradient(
      145deg,
      #fff 0%,
      #fff7d6 100%
    );

  box-shadow: var(--shadow-hover);
}

.pet-emoji {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 130px;
}

.hero-card-label {
  position: relative;
  z-index: 2;

  padding: 15px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
}

.hero-card-label span {
  display: block;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero-card-label strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
}

.floating-card {
  position: absolute;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px 15px;
  border-radius: 14px;

  background: #fff;
  box-shadow: var(--shadow);

  color: var(--navy);
}

.floating-card-one {
  left: 5%;
  bottom: 35px;
}

.floating-card-two {
  right: 2%;
  top: 55px;
  flex-direction: column;
  align-items: flex-start;
}

.floating-card span {
  font-size: 22px;
}

.floating-card strong {
  display: block;
  font-size: 11px;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefits {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.benefit {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: #fff7d6;
}

.benefit strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.benefit span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.categories,
.products-section,
.promo-banner,
.final-cta {
  width: min(1240px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.categories {
  padding: 70px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.section-heading h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -1px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-heading-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.view-all {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* =========================================================
   CATEGORIES
   ========================================================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 35px;

  border-radius: 25px;
  text-decoration: none;
}

.category-toys {
  background: #fff3cf;
}

.category-useful {
  background: #e9f2ff;
}

.category-content {
  position: relative;
  z-index: 2;
  max-width: 65%;
}

.category-tag {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.category-card h3 {
  margin: 12px 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.05;
}

.category-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.category-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.category-illustration {
  position: absolute;
  right: 30px;
  bottom: 15px;
  font-size: 110px;
}

/* =========================================================
   CATÁLOGO - CARDS
   ========================================================= */

.products-section {
  padding: 70px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: 0 5px 20px rgba(17,20,38,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  position: relative;

  width: 100%;
  height: 340px;
  min-height: 340px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background: #f5f6f8;
}

.product-image img {
  display: block;

  width: 100%;
  height: 100%;

  padding: 10px;

  object-fit: contain;
  object-position: center;
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;

  padding: 8px 11px;

  border-radius: 999px;
  background: var(--orange);

  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .7px;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-ref {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.product-info p {
  min-height: 42px;
  margin: 0;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-button {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  margin-top: auto;
  padding: 13px 15px;

  border-radius: 11px;
  background: var(--navy);

  color: #fff;
  text-decoration: none;

  font-size: 11px;
  font-weight: 800;
}

.product-button:hover {
  background: var(--yellow-2);
  color: var(--navy);
}

/* =========================================================
   PROMO
   ========================================================= */

.promo-banner {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 330px;
  padding: 50px;

  border-radius: 28px;
  background: var(--navy);
  color: #fff;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.promo-content > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.promo-content h2 {
  margin: 12px 0;
  font-size: 42px;
  line-height: 1.05;
}

.promo-content p {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
}

.promo-button {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 18px;

  border-radius: 11px;
  background: var(--yellow);
  color: var(--navy);

  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}

.promo-paw {
  font-size: 180px;
  opacity: .12;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  margin-top: 70px;
  margin-bottom: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 45px;

  border-radius: 24px;
  background: #fff8d8;
}

.final-cta > div > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.final-cta h2 {
  margin: 10px 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.05;
}

.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cta-button {
  padding: 15px 20px;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  margin-top: 70px;
  background: var(--navy-3);
  color: #fff;
}

.footer-main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;

  padding: 55px 0;
}

.footer-brand strong {
  color: var(--yellow);
  font-size: 20px;
}

.footer-brand p {
  max-width: 300px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.6;
}

.footer-column h4 {
  margin: 0 0 15px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  color: #94a3b8;
  text-decoration: none;
  font-size: 11px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 18px 0;

  border-top: 1px solid rgba(255,255,255,.08);

  color: #64748b;
  font-size: 10px;
}

/* =========================================================
   PÁGINA PRODUTOS
   ========================================================= */

.products-page {
  min-height: 100vh;
}

.shop-hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 70px 0 45px;
}

.shop-eyebrow {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.shop-hero h1 {
  margin: 12px 0;
  color: var(--navy);
  font-size: 48px;
  line-height: 1;
}

.shop-hero h1 span {
  color: var(--orange);
}

.shop-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.shop-hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 18px 22px;
  border-radius: 16px;
  background: #fff8d8;
}

.shop-hero-badge > span {
  font-size: 30px;
}

.shop-hero-badge strong,
.shop-hero-badge small {
  display: block;
}

.shop-hero-badge strong {
  color: var(--navy);
  font-size: 11px;
}

.shop-hero-badge small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.purchase-notice {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 50px;

  display: flex;
  gap: 18px;

  padding: 20px;
  border: 1px solid #fde68a;
  border-radius: 17px;

  background: #fffbeb;
}

.notice-icon {
  font-size: 25px;
}

.notice-content strong {
  color: var(--navy);
  font-size: 13px;
}

.notice-content p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.notice-highlight {
  color: var(--navy) !important;
}

.shop-products {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 45px 0;
}

.shop-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}

.shop-section-heading span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.shop-section-heading h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 32px;
}

.shop-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.section-counter {
  padding: 9px 13px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.shop-product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;

  box-shadow: 0 5px 20px rgba(17,20,38,.05);
}

.shop-product-image {
  position: relative;

  width: 100%;
  height: 360px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background: #f5f6f8;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  padding: 10px;

  display: block;

  object-fit: contain;
  object-position: center;
}

.shop-badge {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;

  padding: 8px 11px;
  border-radius: 999px;

  background: var(--orange);
  color: #fff;

  font-size: 9px;
  font-weight: 900;
}

.shop-product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.shop-product-ref {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.shop-product-info h3 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.shop-product-info p {
  min-height: 42px;
  margin: 0;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.shop-product-bottom {
  margin-top: auto;
  padding-top: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-product-bottom strong {
  color: var(--navy);
  font-size: 20px;
}

.add-cart-button {
  border: 0;
  border-radius: 11px;
  padding: 12px 15px;

  background: var(--navy);
  color: #fff;

  font-size: 11px;
  font-weight: 900;

  cursor: pointer;
}

.add-cart-button:hover {
  background: var(--yellow-2);
  color: var(--navy);
}

.cart-section {
  width: min(1240px, calc(100% - 40px));
  margin: 50px auto;
  padding: 35px;

  border-radius: 22px;
  background: #f8fafc;
}

.cart-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.cart-heading span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.cart-heading h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 32px;
}

.cart-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-minimum {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
}

.cart-box {
  margin-top: 25px;
  padding: 20px;

  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--border);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 12px 0;
  border-bottom: 1px solid var(--border);

  color: var(--text);
  font-size: 12px;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: #dc2626;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cart-checkout {
  margin-top: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.checkout-info span,
.checkout-info strong,
.checkout-info small {
  display: block;
}

.checkout-info span {
  color: var(--muted);
  font-size: 10px;
}

.checkout-info strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 15px;
}

.checkout-info small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.whatsapp-button {
  border: 0;
  border-radius: 12px;
  padding: 15px 20px;

  background: #25d366;
  color: #fff;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;
}

.whatsapp-button:hover {
  background: #1db954;
}

.shop-final-cta {
  width: min(1240px, calc(100% - 40px));
  margin: 60px auto 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 45px;

  border-radius: 24px;
  background: var(--navy);
  color: #fff;
}

.shop-final-cta > div > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.shop-final-cta h2 {
  margin: 10px 0;
  font-size: 35px;
  line-height: 1.05;
}

.shop-final-cta p {
  margin: 0;
  color: #cbd5e1;
  font-size: 12px;
}

.back-products-button {
  padding: 14px 18px;
  border-radius: 11px;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1050px) {

  .header-inner {
    width: min(94%, 1240px);
  }

  .main-nav {
    gap: 15px;
  }

  .header-user {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 390px;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image,
  .shop-product-image {
    height: 330px;
    min-height: 330px;
  }
}

@media (max-width: 700px) {

  .header-inner {
    min-height: 70px;
    width: calc(100% - 25px);
  }

  .brand-text {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .header-button {
    padding: 11px 13px;
    font-size: 10px;
  }

  .hero,
  .categories,
  .products-section,
  .promo-banner,
  .final-cta,
  .benefits,
  .shop-hero,
  .purchase-notice,
  .shop-products,
  .cart-section,
  .shop-final-cta {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-circle {
    width: 300px;
    height: 300px;
  }

  .hero-card-main {
    width: 275px;
    height: 275px;
  }

  .pet-emoji {
    font-size: 100px;
  }

  .floating-card {
    transform: scale(.85);
  }

  .floating-card-one {
    left: -10px;
  }

  .floating-card-two {
    right: -10px;
  }

  .benefits {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 250px;
    padding: 25px;
  }

  .category-content {
    max-width: 70%;
  }

  .category-card h3 {
    font-size: 28px;
  }

  .section-heading-flex,
  .shop-section-heading,
  .cart-heading,
  .shop-hero,
  .shop-final-cta,
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid,
  .shop-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image,
  .shop-product-image {
    height: 340px;
    min-height: 340px;
  }

  .promo-banner {
    padding: 30px;
  }

  .promo-content h2 {
    font-size: 32px;
  }

  .promo-paw {
    display: none;
  }

  .final-cta {
    padding: 30px;
  }

  .final-cta h2 {
    font-size: 29px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-hero {
    padding-top: 40px;
  }

  .shop-hero h1 {
    font-size: 39px;
  }

  .purchase-notice {
    align-items: flex-start;
  }

  .cart-section {
    padding: 22px;
  }

  .cart-checkout {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-button {
    width: 100%;
  }

  .shop-final-cta {
    padding: 30px;
  }
}
/* =========================================================
   XP IMPORT
   LOGIN + CADASTRO
   BLOCO DE ESTILO
   ========================================================= */


/* =========================================================
   FUNDO DAS PÁGINAS DE AUTENTICAÇÃO
   ========================================================= */

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(255, 212, 47, .13),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 122, 0, .08),
      transparent 28%
    ),
    #f7f9fc;
}


.auth-page .site-header {
  background: rgba(255,255,255,.97);
}


/* =========================================================
   ÁREA PRINCIPAL
   ========================================================= */

.auth-main {
  min-height: calc(100vh - 150px);

  padding: 70px 20px 80px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.auth-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}


.auth-container-login {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 75px;
}


.auth-container-register {
  max-width: 900px;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.auth-heading {
  text-align: center;
  margin-bottom: 35px;
}


.auth-container-login
.auth-heading {
  text-align: left;
  margin-bottom: 0;
}


.auth-badge {
  display: inline-flex;
  align-items: center;

  padding: 8px 13px;

  border-radius: 999px;

  background: #fff4c7;
  color: #9a7200;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}


.auth-heading h1,
.auth-presentation h1 {
  margin: 17px 0 12px;

  color: var(--navy);

  font-size: clamp(38px, 5vw, 55px);
  line-height: 1.02;

  letter-spacing: -1.8px;
}


.auth-heading h1 span,
.auth-presentation h1 span {
  color: var(--orange);
}


.auth-heading p,
.auth-presentation > p {
  max-width: 650px;
  margin: 0 auto;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


.auth-container-login
.auth-presentation > p {
  margin: 0;
}


/* =========================================================
   APRESENTAÇÃO LOGIN
   ========================================================= */

.auth-presentation {
  position: relative;
}


.auth-presentation-list {
  margin-top: 30px;

  display: grid;
  gap: 13px;
}


.auth-presentation-list div {
  display: flex;
  align-items: center;
  gap: 11px;

  color: var(--navy);

  font-size: 12px;
}


.auth-presentation-list span {
  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e9f9ef;
  color: #159447;

  font-size: 11px;
  font-weight: 900;
}


.auth-pet-card {
  margin-top: 32px;

  display: flex;
  align-items: center;
  gap: 14px;

  max-width: 330px;

  padding: 17px;

  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;

  background: rgba(255,255,255,.75);

  box-shadow: 0 10px 35px rgba(7,25,54,.06);
}


.auth-pet-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #fff4c7;

  font-size: 23px;
}


.auth-pet-card strong,
.auth-pet-card small {
  display: block;
}


.auth-pet-card strong {
  color: var(--navy);
  font-size: 12px;
}


.auth-pet-card small {
  margin-top: 4px;

  color: var(--muted);
  font-size: 10px;
}


/* =========================================================
   CARD
   ========================================================= */

.auth-card {
  width: 100%;

  padding: 34px;

  border: 1px solid #e4e9f0;
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 20px 60px rgba(7,25,54,.10);
}


.login-card {
  max-width: 500px;
  margin: 0 auto;
}


.register-card {
  max-width: 900px;
  margin: 0 auto;
}


.auth-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 28px;
}


.auth-card-kicker {
  display: block;

  color: var(--orange);

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
}


.auth-card-header h2 {
  margin: 7px 0 5px;

  color: var(--navy);

  font-size: 25px;
  line-height: 1.15;
}


.auth-card-header p {
  margin: 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.5;
}


.auth-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #fff7d6;

  font-size: 21px;
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.register-form {
  display: grid;
  gap: 17px;
}


.form-group {
  min-width: 0;
}


.form-group label {
  display: block;

  margin-bottom: 7px;

  color: #27344a;

  font-size: 11px;
  font-weight: 800;
}


.form-group label span {
  color: #94a3b8;
  font-weight: 500;
}


.form-group input,
.form-group select {
  width: 100%;
  height: 48px;

  padding: 0 14px;

  border: 1px solid #dce3ec;
  border-radius: 11px;

  outline: none;

  background: #fbfcfe;
  color: var(--navy);

  font-size: 12px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.form-group input::placeholder {
  color: #a5afbd;
}


.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(255,122,0,.09);
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}


/* =========================================================
   INPUT COM ÍCONE
   ========================================================= */

.input-with-icon {
  position: relative;
}


.input-with-icon > span {
  position: absolute;
  z-index: 2;

  left: 14px;
  top: 50%;

  transform: translateY(-50%);

  color: #94a3b8;

  font-size: 14px;

  pointer-events: none;
}


.input-with-icon input {
  padding-left: 42px;
}


.password-field input {
  padding-right: 48px;
}


.toggle-password {
  position: absolute;
  z-index: 3;

  right: 5px;
  top: 5px;

  width: 38px;
  height: 38px;

  border: 0;
  border-radius: 9px;

  background: transparent;

  cursor: pointer;

  font-size: 14px;
}


.toggle-password:hover {
  background: #f1f5f9;
}


/* =========================================================
   SENHA
   ========================================================= */

.password-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 7px;
}


.password-label label {
  margin-bottom: 0;
}


.password-label a {
  color: var(--orange);

  font-size: 10px;
  font-weight: 800;

  text-decoration: none;
}


.password-label a:hover {
  text-decoration: underline;
}


.password-strength {
  margin-top: 8px;
}


.password-strength-bar {
  width: 100%;
  height: 4px;

  overflow: hidden;

  border-radius: 99px;

  background: #edf1f5;
}


.password-strength-bar span {
  display: block;

  width: 0;
  height: 100%;

  border-radius: inherit;

  background: #cbd5e1;

  transition:
    width .25s ease,
    background .25s ease;
}


.password-strength-bar span.weak {
  background: #ef4444;
}


.password-strength-bar span.medium {
  background: #f59e0b;
}


.password-strength-bar span.strong {
  background: #22c55e;
}


.password-strength small {
  display: block;

  margin-top: 5px;

  color: #94a3b8;

  font-size: 9px;
}


.field-help {
  display: block;

  margin-top: 6px;

  color: #94a3b8;

  font-size: 9px;
}


.password-ok {
  color: #159447 !important;
}


.password-error {
  color: #dc2626 !important;
}


/* =========================================================
   TÍTULOS DAS SEÇÕES DO CADASTRO
   ========================================================= */

.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 10px;
  padding: 16px 0 5px;

  border-top: 1px solid #edf1f5;
}


.form-section-title > span {
  width: 36px;
  height: 36px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #fff7d6;

  font-size: 16px;
}


.form-section-title strong,
.form-section-title small {
  display: block;
}


.form-section-title strong {
  color: var(--navy);

  font-size: 12px;
}


.form-section-title small {
  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}


/* =========================================================
   BENEFÍCIOS CADASTRO
   ========================================================= */

.register-benefits {
  margin-top: 30px;

  display: grid;
  gap: 14px;
}


.register-benefits > div {
  display: flex;
  align-items: center;
  gap: 12px;
}


.register-benefits > div > span {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #fff7d6;

  font-size: 17px;
}


.register-benefits strong,
.register-benefits small {
  display: block;
}


.register-benefits strong {
  color: var(--navy);

  font-size: 11px;
}


.register-benefits small {
  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.auth-submit-button {
  position: relative;

  width: 100%;
  height: 52px;

  margin-top: 5px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;

  border: 0;
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      #12284d
    );

  color: #fff;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.auth-submit-button strong {
  font-size: 19px;
}


.auth-submit-button:hover {
  transform: translateY(-1px);

  background:
    linear-gradient(
      135deg,
      #12284d,
      #071936
    );

  box-shadow:
    0 10px 25px rgba(7,25,54,.18);
}


.auth-submit-button:disabled {
  cursor: wait;
  opacity: .75;
}


.auth-submit-button.is-loading {
  opacity: .75;
}


.auth-submit-button.is-loading strong {
  animation: authArrow 1s infinite;
}


@keyframes authArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

}


/* =========================================================
   MENSAGENS
   ========================================================= */

.form-message {
  min-height: 0;

  padding: 0;

  border-radius: 10px;

  font-size: 11px;
  line-height: 1.5;

  text-align: center;
}


.form-message:not(:empty) {
  padding: 11px 13px;
}


.form-message.success {
  background: #ecfdf3;
  color: #087a3d;
  border: 1px solid #bbf7d0;
}


.form-message.error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}


/* =========================================================
   DIVISOR
   ========================================================= */

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 24px 0 18px;

  color: #a1aab7;

  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}


.auth-divider::before,
.auth-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background: #edf1f5;
}


/* =========================================================
   LOGIN / CADASTRO LINK
   ========================================================= */

.auth-login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;

  color: var(--muted);

  font-size: 10px;
  text-align: center;
}


.auth-login a {
  color: var(--orange);

  font-weight: 900;

  text-decoration: none;
}


.auth-login a:hover {
  text-decoration: underline;
}


/* =========================================================
   AVISO DE SEGURANÇA
   ========================================================= */

.auth-security-note {
  margin-top: 22px;
  padding: 13px;

  display: flex;
  align-items: center;
  gap: 11px;

  border-radius: 12px;

  background: #f8fafc;
}


.auth-security-note > span {
  font-size: 18px;
}


.auth-security-note strong,
.auth-security-note small {
  display: block;
}


.auth-security-note strong {
  color: var(--navy);

  font-size: 9px;
}


.auth-security-note small {
  margin-top: 3px;

  color: var(--muted);

  font-size: 8px;
  line-height: 1.4;
}


/* =========================================================
   TRUST
   ========================================================= */

.auth-trust {
  max-width: 600px;

  margin: 25px auto 0;

  display: flex;
  justify-content: center;
  gap: 25px;

  color: var(--muted);
}


.auth-trust > div {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 9px;
}


.auth-trust span {
  font-size: 12px;
}


.auth-trust strong {
  font-weight: 700;
}


/* =========================================================
   FOOTER NAS PÁGINAS DE AUTH
   ========================================================= */

.auth-page .site-footer {
  margin-top: 0;
}


.auth-page .footer-bottom {
  width: min(1120px, calc(100% - 40px));
}


/* =========================================================
   RESPONSIVO - TABLET
   ========================================================= */

@media (max-width: 900px) {

  .auth-container-login {
    grid-template-columns: 1fr;

    max-width: 580px;

    gap: 35px;
  }


  .auth-presentation {
    text-align: center;
  }


  .auth-container-login
  .auth-presentation > p {
    margin: 0 auto;
  }


  .auth-presentation-list {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }


  .auth-pet-card {
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }


  .auth-heading h1,
  .auth-presentation h1 {
    font-size: 43px;
  }

}


/* =========================================================
   RESPONSIVO - CELULAR
   ========================================================= */

@media (max-width: 600px) {

  .auth-main {
    min-height: auto;

    padding:
      40px 14px
      55px;
  }


  .auth-container {
    width: 100%;
  }


  .auth-container-login {
    gap: 25px;
  }


  .auth-presentation h1 {
    font-size: 37px;
    letter-spacing: -1px;
  }


  .auth-heading h1 {
    font-size: 37px;
  }


  .auth-heading p,
  .auth-presentation > p {
    font-size: 12px;
  }


  .auth-card {
    padding: 23px 18px;

    border-radius: 20px;
  }


  .auth-card-header {
    margin-bottom: 22px;
  }


  .auth-card-header h2 {
    font-size: 21px;
  }


  .auth-icon {
    width: 42px;
    height: 42px;

    font-size: 18px;
  }


  .form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }


  .form-group input,
  .form-group select {
    height: 50px;
  }


  .register-benefits {
    text-align: left;
  }


  .auth-pet-card {
    text-align: left;
  }


  .auth-trust {
    flex-direction: column;
    align-items: center;

    gap: 9px;
  }


  .password-label {
    align-items: flex-start;
  }


  .password-label a {
    font-size: 9px;
  }


  .auth-page .header-inner {
    width: calc(100% - 25px);
  }


  .auth-page .main-nav {
    display: none;
  }


  .auth-page .header-button {
    padding: 10px 12px;
    font-size: 9px;
  }


  .auth-page .brand-text {
    display: none;
  }


  .auth-page .footer-bottom {
    width: calc(100% - 28px);

    text-align: center;
  }

}


/* =========================================================
   CELULAR MUITO PEQUENO
   ========================================================= */

@media (max-width: 380px) {

  .auth-card {
    padding: 20px 15px;
  }


  .auth-presentation h1 {
    font-size: 33px;
  }


  .auth-heading h1 {
    font-size: 33px;
  }


  .auth-card-header h2 {
    font-size: 19px;
  }


  .auth-login {
    flex-direction: column;
  }

}