:root {
  --yellow: #f5c400;
  --yellow-dark: #d9a900;
  --yellow-soft: #fff2b8;
  --blue: #164b73;
  --blue-dark: #0c3656;
  --blue-light: #dceef8;
  --graphite: #30383d;
  --gray-light: #f3f4f4;
  --beige: #fff9e8;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4d;
  --text: #273036;
  --text-secondary: #667176;
  --border: #dfe4e6;
  --danger: #b42318;
  --success: #137a42;
  --shadow-sm: 0 10px 30px rgba(22, 75, 115, 0.08);
  --shadow-md: 0 22px 55px rgba(22, 75, 115, 0.14);
  --shadow-yellow: 0 15px 35px rgba(217, 169, 0, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1200px;
  --header-height: 150px;
  --font-display: "Fredoka", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 3.5vw, 3.4rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

p {
  color: var(--text-secondary);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--blue-dark);
  background: var(--yellow-soft);
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--yellow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 13px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.eyebrow svg {
  color: var(--blue);
  fill: var(--yellow);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button svg {
  flex: 0 0 auto;
  font-size: 1.1rem;
}

.button-lg {
  min-height: 56px;
  padding: 15px 24px;
}

.button-sm {
  min-height: 43px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.button-primary {
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.button-primary:hover {
  background: #ffd01e;
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(22, 75, 115, 0.22);
}

.button-secondary:hover {
  color: var(--blue-dark);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button-dark {
  color: var(--white);
  background: var(--blue-dark);
}

.button-dark:hover {
  background: #082c47;
  box-shadow: var(--shadow-md);
}

.button-whatsapp {
  color: #073d20;
  background: #dff9e9;
  border-color: rgba(18, 140, 77, 0.18);
}

.button-whatsapp:hover {
  color: var(--white);
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.46);
}

.button-outline-light:hover {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link svg {
  transition: transform var(--transition);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Cabeçalho */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition);
  backdrop-filter: blur(16px);
}

.header-main {
  height: 96px;
  background: rgba(255, 255, 255, 0.94);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(22, 75, 115, 0.08);
  box-shadow: 0 8px 30px rgba(20, 49, 68, 0.08);
}

.header-top {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 42px);
}

.header-nav-row {
  height: 54px;
  background: var(--yellow);
  border-top: 1px solid rgba(22, 75, 115, 0.14);
  border-bottom: 1px solid rgba(22, 75, 115, 0.14);
}

.header-nav-inner {
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.brand-logo-crop,
.brand-wordmark-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo-crop {
  width: 54px;
  height: 74px;
}

.brand-logo-crop img {
  position: absolute;
  top: -8px;
  left: -7px;
  width: 75px;
  max-width: none;
  height: 94px;
}

.brand-wordmark-crop {
  width: 211px;
  height: 42px;
}

.brand-wordmark-crop img {
  position: absolute;
  top: -100px;
  left: -9px;
  width: 229px;
  max-width: none;
  height: 286px;
}

.primary-navigation {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.primary-navigation ul {
  display: flex;
  width: min(100%, 1040px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 17px 10px 15px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-dark);
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  position: absolute;
  right: 9px;
  bottom: 0;
  left: 9px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 4px;
  content: "";
}

.header-cta {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.mobile-nav-actions {
  display: none;
}

.site-search {
  position: relative;
  display: flex;
  width: min(100%, 520px);
  min-width: 260px;
  height: 52px;
  flex: 1 1 420px;
  align-items: center;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid #cfd7da;
  border-radius: 17px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 75, 115, 0.1);
}

.site-search-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-left: 17px;
  color: var(--blue);
}

.site-search input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 12px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.site-search input::placeholder {
  color: var(--text-secondary);
}

.site-search > button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.site-search > button:hover {
  background: var(--yellow-dark);
  transform: translateX(2px);
}

.site-search > button svg {
  width: 18px;
  height: 18px;
}

.site-search-results {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 17px;
  box-shadow: 0 22px 50px rgba(12, 54, 86, 0.18);
}

.site-search-results[hidden] {
  display: none;
}

.site-search-results ul {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 3px;
  list-style: none;
}

.site-search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: var(--text);
  border-radius: 11px;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  color: var(--blue-dark);
  background: var(--beige);
}

.site-search-result span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-search-result small {
  display: block;
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 0.66rem;
}

.site-search-arrow {
  flex: 0 0 auto;
  color: var(--yellow-dark);
  font-size: 1rem;
  font-weight: 900;
}

.site-search-empty {
  padding: 14px 12px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.76rem;
  text-align: center;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(22, 75, 115, 0.1);
  border-radius: 12px;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.header-socials a:hover,
.header-socials a:focus-visible {
  color: var(--blue-dark);
  background: var(--yellow);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 20px;
  height: 20px;
}

.facebook-mark {
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.header-social-label {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--gray-light);
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 4px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 760px;
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 8% 18%, rgba(245, 196, 0, 0.11), transparent 23%),
    radial-gradient(circle at 92% 25%, rgba(220, 238, 248, 0.9), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fffcf2 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
}

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

.hero-copy h1 span {
  display: block;
  color: var(--blue);
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-navigation-actions {
  display: grid;
  width: min(100%, 650px);
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.hero-service-actions {
  display: grid;
  width: min(100%, 650px);
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.hero-contact-action {
  min-width: 0;
}

.hero-quick-info {
  display: grid;
  max-width: 650px;
  padding: 0;
  margin: 0;
  gap: 10px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.hero-quick-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-quick-info svg {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 110px var(--radius-xl);
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
}

.hero-image-frame::before {
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -24px;
  width: 65%;
  height: 55%;
  background: var(--yellow);
  border-radius: 40% 60% 25% 75%;
  content: "";
  opacity: 0.75;
}

.hero-image-frame img {
  width: 100%;
  min-height: 530px;
  border-radius: 34px 34px 100px 34px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 75, 115, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.floating-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--yellow-soft);
  border-radius: 11px;
}

.floating-card-one {
  top: 9%;
  left: -42px;
}

.floating-card-two {
  right: -22px;
  bottom: 25%;
}

.floating-card-three {
  bottom: 3%;
  left: -25px;
}

.floating-card-taxi {
  border-color: rgba(217, 169, 0, 0.35);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.floating-card-taxi:hover,
.floating-card-taxi:focus-visible {
  border-color: var(--yellow-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.floating-card-taxi small {
  display: block;
  color: var(--text-secondary);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.25;
}

.floating-card-taxi > svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.hero-decoration {
  position: absolute;
  border: 2px dashed rgba(22, 75, 115, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  top: 120px;
  left: -90px;
  width: 200px;
  height: 200px;
}

.hero-decoration-two {
  right: -70px;
  bottom: 20px;
  width: 160px;
  height: 160px;
}

/* Faixa de confiança */
.trust-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 24s linear infinite;
  will-change: transform;
}

.trust-strip:hover .trust-track,
.trust-strip:focus-within .trust-track {
  animation-play-state: paused;
}

.trust-group {
  display: flex;
  flex: 0 0 auto;
}

.trust-item {
  display: flex;
  width: clamp(270px, 33.333vw, 460px);
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.trust-item svg {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 1.5rem;
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Destaque do Táxi-Dog na página inicial */
.taxi-dog-home-section {
  background: var(--white);
}

.taxi-dog-home-panel {
  display: grid;
  min-height: 520px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 100%, rgba(245, 196, 0, 0.14), transparent 32%),
    var(--blue-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  overflow: hidden;
}

.taxi-dog-home-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.taxi-dog-home-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--blue-dark));
  content: "";
  pointer-events: none;
}

.taxi-dog-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.taxi-dog-home-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 6vw, 82px);
}

.taxi-dog-home-copy .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.taxi-dog-home-copy h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.taxi-dog-home-copy > p {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.taxi-dog-home-points {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 30px;
  gap: 10px;
  list-style: none;
}

.taxi-dog-home-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.taxi-dog-home-copy .button {
  min-width: min(100%, 310px);
}

.service-catalog-card[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

/* História e apresentação */
.about-story-section {
  background:
    radial-gradient(circle at 92% 9%, rgba(245, 196, 0, 0.16), transparent 25%),
    linear-gradient(120deg, rgba(220, 238, 248, 0.72), transparent 48%),
    var(--gray-light);
  overflow: hidden;
}

.about-story-hero {
  display: grid;
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.82fr);
}

.about-story-copy {
  position: relative;
  z-index: 1;
}

.about-story-copy > p {
  max-width: 720px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-story-lead {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-story-media {
  position: relative;
  width: min(100%, 430px);
  min-width: 0;
  margin: 0;
  justify-self: center;
}

.about-story-media::before {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 142px;
  height: 142px;
  background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
  background-size: 17px 17px;
  content: "";
  opacity: 0.65;
}

.about-story-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg) 76px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}

.about-story-badge {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 30px;
  display: flex;
  max-width: 260px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 6px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  line-height: 1.4;
}

.about-story-badge svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.about-story-badge strong {
  display: block;
}

.about-story-details {
  display: grid;
  gap: 22px;
  margin-top: clamp(56px, 7vw, 84px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-timeline-card,
.story-care-card {
  padding: clamp(27px, 4vw, 42px);
  border: 1px solid rgba(22, 75, 115, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.story-timeline-card {
  background: var(--white);
}

.story-care-card {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 100%, rgba(245, 196, 0, 0.14), transparent 36%),
    var(--blue-dark);
}

.about-detail-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 23px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(22, 75, 115, 0.12);
}

.story-care-card .about-detail-heading {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.about-detail-heading > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 17px;
}

.about-detail-heading svg {
  width: 25px;
  height: 25px;
}

.about-detail-heading small {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-care-card .about-detail-heading small {
  color: var(--yellow);
}

.about-detail-heading h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
}

.story-care-card .about-detail-heading h3 {
  color: var(--white);
}

.story-timeline {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  gap: 22px;
  list-style: none;
}

.story-timeline::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 51px;
  width: 2px;
  background: var(--blue-light);
  content: "";
}

.story-timeline li {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: 17px;
  grid-template-columns: 104px minmax(0, 1fr);
}

.story-timeline li > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(22, 75, 115, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.story-timeline strong {
  display: block;
  margin: 3px 0 4px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.03rem;
}

.story-timeline p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.story-care-card > p {
  color: rgba(255, 255, 255, 0.78);
}

.story-care-list {
  display: grid;
  padding: 0;
  margin: 25px 0 0;
  gap: 12px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.story-care-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
}

.story-care-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--yellow);
}

/* Serviços */
.services-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 196, 0, 0.14), transparent 24%),
    var(--beige);
}

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

.service-card {
  min-height: 250px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 169, 0, 0.16);
  border-radius: var(--radius-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  border-color: rgba(217, 169, 0, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.card-icon,
.product-icon,
.difference-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 17px 17px 17px 7px;
}

.card-icon svg,
.product-icon svg,
.difference-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  color: var(--blue-dark);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.service-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 30px;
  margin-top: 28px;
  background: var(--yellow);
  border-radius: var(--radius-md);
}

.service-highlight > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-highlight-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: var(--blue);
  border-radius: 18px;
}

.service-highlight-icon svg {
  width: 28px;
  height: 28px;
}

.service-highlight p {
  max-width: 570px;
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.service-highlight strong {
  display: block;
}

/* Banho e tosa */
.grooming-section {
  color: var(--white);
  background:
    radial-gradient(circle at 5% 10%, rgba(245, 196, 0, 0.15), transparent 22%),
    var(--blue);
  overflow: hidden;
}

.grooming-section::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  content: "";
}

.grooming-grid {
  display: grid;
  align-items: center;
  gap: 78px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.grooming-content {
  position: relative;
  z-index: 2;
}

.grooming-content h2,
.grooming-content p {
  color: var(--white);
}

.grooming-content > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.benefit-grid {
  display: grid;
  margin-bottom: 34px;
  gap: 11px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
}

.benefit-grid svg {
  flex: 0 0 auto;
  padding: 3px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.2rem;
}

.grooming-visual {
  position: relative;
  z-index: 2;
}

.grooming-visual img {
  width: 100%;
  min-height: 550px;
  border: 8px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 120px;
  object-fit: cover;
}

.grooming-note {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: flex;
  max-width: 300px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.grooming-note svg {
  flex: 0 0 auto;
  color: var(--yellow-dark);
  font-size: 1.65rem;
}

.grooming-note span {
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.4;
}

.grooming-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 0.84rem;
}

/* Produtos */
.products-section {
  background: var(--white);
}

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

.product-card {
  display: flex;
  min-height: 235px;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.product-card:hover {
  border-color: var(--yellow-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.product-icon {
  flex: 0 0 auto;
  margin: 0;
  background: var(--blue-light);
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.product-card p {
  margin-bottom: 18px;
  font-size: 0.86rem;
}

/* Diferenciais */
.differences-section {
  background: var(--white);
}

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

.difference-card {
  position: relative;
  min-height: 290px;
  padding: 30px 25px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.difference-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  transition: transform var(--transition);
}

.difference-card:hover::after {
  transform: scale(1.45);
}

.difference-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(22, 75, 115, 0.09);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
}

.difference-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.difference-card h3 {
  position: relative;
  z-index: 1;
  color: var(--blue-dark);
}

.difference-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* Processo */
.process-section {
  background: var(--beige);
}

.process-timeline {
  position: relative;
  display: grid;
  padding: 0;
  margin: 68px 0 0;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 42px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: rgba(22, 75, 115, 0.18);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -14px;
  left: calc(50% + 24px);
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 3px solid var(--beige);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.process-icon {
  display: inline-flex;
  width: 84px;
  height: 84px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(22, 75, 115, 0.12);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.process-icon svg {
  width: 32px;
  height: 32px;
}

.process-step h3 {
  color: var(--blue-dark);
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

/* Galeria */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: 285px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--gray-light);
  border: 0;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  backdrop-filter: blur(8px);
}

.gallery-instagram-mark {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(9, 43, 68, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.gallery-instagram-mark svg {
  width: 15px;
  height: 15px;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-instagram-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 28px;
  margin-top: 22px;
  border: 1px solid rgba(22, 75, 115, 0.12);
  border-radius: var(--radius-md);
  background: var(--blue-light);
}

.gallery-instagram-cta > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gallery-instagram-cta > div > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 15px;
}

.gallery-instagram-cta p,
.gallery-instagram-cta strong {
  display: block;
  margin: 0;
}

.gallery-instagram-cta p {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.gallery-instagram-cta strong {
  margin-bottom: 3px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.gallery-modal {
  width: min(92vw, 900px);
  max-height: 92vh;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.gallery-modal::backdrop {
  background: rgba(7, 24, 36, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-modal-inner {
  position: relative;
}

.gallery-modal img {
  width: 100%;
  max-height: 88vh;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.gallery-instagram-link {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--white);
  background: rgba(9, 43, 68, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gallery-instagram-link:hover {
  color: var(--blue-dark);
  background: var(--yellow);
}

.gallery-instagram-link svg {
  width: 17px;
  height: 17px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 4px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
}

/* Depoimentos */
.testimonials-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 196, 0, 0.14), transparent 24%),
    var(--blue-light);
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.testimonials-header .section-heading {
  margin-bottom: 42px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 42px;
}

.carousel-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(22, 75, 115, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.carousel-button:hover:not(:disabled) {
  color: var(--blue-dark);
  background: var(--yellow);
  transform: translateY(-2px);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.testimonial-carousel {
  padding: 4px;
  margin: -4px;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  display: flex;
  min-height: 315px;
  flex: 0 0 calc((100% - 40px) / 3);
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(22, 75, 115, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
  color: var(--yellow-dark);
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
}

.stars svg.star-empty {
  color: rgba(22, 75, 115, 0.22);
  fill: transparent;
}

.testimonial-card blockquote {
  flex: 1;
  margin-bottom: 26px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.45;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 19px;
  border-top: 1px solid var(--border);
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 3px solid var(--yellow-soft);
  border-radius: 16px;
  object-fit: cover;
}

.testimonial-avatar-fallback {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--yellow-soft);
  border: 3px solid var(--white);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--blue-dark);
  font-size: 0.88rem;
}

.google-review-author-link {
  display: block;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.google-review-author-link:hover {
  text-decoration: underline;
}

.google-review-source {
  align-self: flex-start;
  margin-top: 16px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.google-reviews-status {
  padding: 28px;
  margin: 0;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 75, 115, 0.12);
  border-radius: var(--radius-md);
  text-align: center;
}

.google-reviews-status a,
.demo-notice a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.google-rating-summary {
  display: inline-flex;
  padding: 8px 12px;
  margin-top: 14px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.google-maps-attribution {
  color: #5e5e5e;
  font-family: Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.7rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-indicator {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(22, 75, 115, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    width var(--transition),
    background-color var(--transition);
}

.carousel-indicator.active {
  width: 26px;
  background: var(--blue);
  border-radius: 6px;
}

.demo-notice {
  display: flex;
  max-width: 800px;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 17px;
  margin: 30px auto 0;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(22, 75, 115, 0.1);
  border-radius: 14px;
  font-size: 0.74rem;
  line-height: 1.5;
}

.demo-notice > span {
  display: block;
}

.demo-notice svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 86px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-support-card {
  display: grid;
  padding: 24px;
  margin-top: 34px;
  gap: 14px;
  background: var(--beige);
  border: 1px solid rgba(217, 169, 0, 0.2);
  border-radius: var(--radius-md);
}

.faq-support-card > svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.faq-support-card strong,
.faq-support-card span {
  display: block;
}

.faq-support-card strong {
  margin-bottom: 4px;
  color: var(--blue-dark);
}

.faq-support-card span {
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--font-body);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 750;
  text-align: left;
}

.faq-question > span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: var(--gray-light);
  border-radius: 10px;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.faq-question > span::before,
.faq-question > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: var(--blue);
  border-radius: 3px;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-question > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] {
  color: var(--blue);
}

.faq-question[aria-expanded="true"] > span {
  background: var(--yellow);
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer[hidden] {
  display: grid;
  grid-template-rows: 0fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 54px 22px 0;
  margin: 0;
  font-size: 0.9rem;
}

/* CTA final */
.final-cta {
  padding: 84px 0;
  color: var(--white);
  background: var(--blue-dark);
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.final-cta-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  color: rgba(245, 196, 0, 0.85);
}

.final-cta-art > svg {
  width: 130px;
  height: 130px;
  stroke-width: 1.1;
}

.cta-paw {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 2rem;
}

.cta-paw-one {
  top: -20px;
  left: 22px;
}

.cta-paw-two {
  right: 18px;
  bottom: -18px;
}

.cta-bubble {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.cta-bubble-one {
  top: 0;
  right: 45px;
  width: 22px;
  height: 22px;
}

.cta-bubble-two {
  bottom: 10px;
  left: 55px;
  width: 34px;
  height: 34px;
}

/* Contato e lojas */
.contact-section {
  background: var(--gray-light);
}

.stores-grid {
  display: grid;
  margin-bottom: 32px;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-card {
  position: relative;
  display: flex;
  min-height: 415px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.featured-store {
  border: 2px solid var(--yellow);
}

.store-tag {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 5px 10px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.store-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 15px;
}

.store-thumbnail {
  display: block;
  width: 72px;
  height: 52px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid var(--blue-light);
  border-radius: 13px;
  background: var(--blue-light);
  box-shadow: 0 5px 14px rgba(22, 75, 115, 0.12);
}

.store-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card-header span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.store-card-header h3 {
  margin: 2px 0 0;
  color: var(--blue-dark);
  font-size: 1.2rem;
}

.store-card address {
  min-height: 90px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-style: normal;
}

.store-services {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 20px;
  gap: 7px;
  list-style: none;
}

.store-services li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  color: var(--blue-dark);
  background: var(--beige);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.store-services svg {
  width: 14px;
  height: 14px;
  color: var(--yellow-dark);
}

.store-contacts {
  display: grid;
  padding: 0;
  margin: 0 0 24px;
  gap: 10px;
  list-style: none;
}

.store-contacts li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

.store-contacts svg {
  flex: 0 0 auto;
  color: var(--yellow-dark);
}

.store-contacts .store-hours {
  align-items: flex-start;
  line-height: 1.55;
}

.store-hours svg {
  margin-top: 3px;
}

.store-hours strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 0.82rem;
}

.placeholder-text {
  color: #7b5c00 !important;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}

.store-actions {
  display: flex;
  margin-top: auto;
  gap: 8px;
}

.store-actions .button {
  flex: 1;
}

.store-showcases {
  display: grid;
  margin-bottom: 100px;
  gap: 24px;
}

.store-showcase {
  display: grid;
  align-items: center;
  padding: 22px;
  margin-bottom: 0;
  gap: clamp(24px, 4vw, 54px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
}

.store-showcase-reverse {
  grid-template-columns: minmax(0, 1.38fr) minmax(220px, 0.62fr);
}

.store-showcase-reverse .store-showcase-content {
  grid-column: 2;
  grid-row: 1;
  padding-right: clamp(4px, 2vw, 22px);
  padding-left: 0;
}

.store-showcase-reverse .store-showcase-media {
  grid-column: 1;
  grid-row: 1;
}

.store-showcase-content {
  padding-left: clamp(4px, 2vw, 22px);
}

.store-showcase-content h3 {
  margin: 10px 0 12px;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.store-showcase-content p {
  margin: 0 0 18px;
  color: var(--text-secondary);
}

.store-showcase-content .text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
}

.store-showcase-content .text-link svg {
  width: 18px;
  height: 18px;
}

.store-showcase-media {
  display: grid;
  min-width: 0;
  gap: 10px;
  grid-template-columns: minmax(0, 1.6fr) minmax(130px, 0.72fr);
}

.store-showcase-media-single {
  grid-template-columns: 1fr;
}

.store-showcase-media-single .store-photo {
  height: 360px;
}

.store-photo {
  position: relative;
  min-width: 0;
  height: 320px;
  overflow: hidden;
  margin: 0;
  background: var(--gray-light);
  border-radius: calc(var(--radius-md) - 4px);
}

.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  color: var(--white);
  background: rgb(22 75 115 / 88%);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  align-items: start;
  margin-bottom: 80px;
  column-gap: 72px;
  row-gap: 0;
  grid-template-areas: "sidebar form";
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.2fr);
}

.contact-sidebar {
  grid-area: sidebar;
}

.contact-info {
  grid-area: info;
  padding-top: 26px;
}

.contact-list {
  display: grid;
  grid-area: details;
  margin-top: 34px;
  gap: 17px;
}

.contact-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list > div > span:first-child {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.contact-list p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.contact-list strong {
  display: block;
  color: var(--text);
  font-size: 0.77rem;
}

.contact-list a {
  color: var(--blue);
  font-weight: 700;
}

.contact-form {
  position: relative;
  grid-area: form;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--text);
  background: #fbfcfc;
  border: 1px solid #d7dddf;
  border-radius: 12px;
  outline: 0;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 75, 115, 0.11);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 0.68rem;
  line-height: 1.3;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--blue);
}

.checkbox-field label {
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.checkbox-error {
  margin-bottom: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  padding: 14px 16px;
  margin-top: 16px;
  color: var(--success);
  background: #eaf8f0;
  border: 1px solid #b7e4ca;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.form-status.error {
  color: var(--danger);
  background: #fff1f0;
  border-color: #f2b8b5;
}

.map-placeholder {
  position: relative;
  min-height: 310px;
  background: var(--blue-light);
  border: 1px solid rgba(22, 75, 115, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.map-road {
  position: absolute;
  height: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 4px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
}

.map-road-one {
  top: 22%;
  right: -10%;
  left: -10%;
  transform: rotate(-8deg);
}

.map-road-two {
  top: 58%;
  right: 12%;
  left: -18%;
  transform: rotate(18deg);
}

.map-road-three {
  top: -20%;
  bottom: -20%;
  left: 72%;
  width: 30px;
  height: auto;
  transform: rotate(12deg);
}

.map-marker {
  position: absolute;
  top: 25%;
  right: 20%;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 15%;
  box-shadow: var(--shadow-md);
  transform: rotate(-45deg);
}

.map-marker svg {
  width: 27px;
  height: 27px;
  transform: rotate(45deg);
}

.map-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 310px;
  align-items: center;
  padding: 48px;
  gap: 22px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.map-icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 21px;
  box-shadow: var(--shadow-md);
}

.map-icon svg {
  width: 33px;
  height: 33px;
}

.map-content span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-content h2 {
  margin: 4px 0 9px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.map-content p {
  max-width: 560px;
  margin: 0;
  font-size: 0.86rem;
}

/* Rodapé */
.site-footer {
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.76);
  background: #092b44;
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  gap: 48px;
  grid-template-columns: 1.3fr 0.75fr 0.95fr 1fr;
}

.footer-brand-column > p {
  max-width: 280px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.social-links a:hover {
  color: var(--blue-dark);
  background: var(--yellow);
  transform: translateY(-3px);
}

.footer-title {
  margin-bottom: 19px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
}

.footer-links a,
.footer-contact,
.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.footer-contact .facebook-mark {
  width: 24px;
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 1.1rem;
  text-align: center;
}

.footer-contact .placeholder-text {
  color: #ffe780 !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.footer-bottom p:last-child {
  max-width: 600px;
  text-align: right;
}

/* Botões flutuantes */
.floating-whatsapp {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--whatsapp-dark);
  border: 3px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(18, 140, 77, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background-color var(--transition),
    transform var(--transition),
    bottom var(--transition),
    opacity var(--transition);
}

.floating-whatsapp:hover {
  background: var(--whatsapp);
  transform: translateY(-4px);
}

.floating-whatsapp.footer-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

.back-to-top {
  position: fixed;
  z-index: 790;
  right: 30px;
  bottom: 92px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(22, 75, 115, 0.14);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Entrada na tela */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade */
@media (max-width: 1180px) {
  :root {
    --container: 1080px;
  }

  .primary-navigation {
    gap: 0;
  }

  .nav-link {
    padding-inline: 6px;
    font-size: 0.71rem;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .header-socials {
    gap: 5px;
  }

  .header-socials a {
    width: 34px;
    height: 34px;
  }

  .site-search {
    max-width: 440px;
  }

  .hero-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  }

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

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

@media (max-width: 1020px) {
  :root {
    --header-height: 136px;
  }

  .rations-page {
    --header-height: 74px;
  }

  .section {
    padding: 92px 0;
  }

  .header-main,
  .header-top {
    height: var(--header-height);
  }

  .header-top {
    display: grid;
    padding-bottom: 10px;
    gap: 0 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 74px 52px;
  }

  .rations-page .header-main,
  .rations-page .header-top {
    height: var(--header-height);
  }

  .rations-page .header-top {
    padding-bottom: 0;
    grid-template-rows: var(--header-height);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-search {
    width: 100%;
    max-width: none;
    min-width: 0;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

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

  .header-nav-row,
  .header-nav-inner {
    height: 0;
    border: 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    z-index: 1100;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    height: auto;
    max-height: calc(100dvh - var(--header-height));
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 22px 20px 28px;
    background: var(--yellow);
    border-top: 1px solid rgba(22, 75, 115, 0.18);
    box-shadow: 0 25px 45px rgba(9, 43, 68, 0.12);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .primary-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation ul {
    width: 100%;
    height: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-link {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(22, 75, 115, 0.16);
    font-size: 0.9rem;
  }

  .nav-link.active::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: 5px;
    height: 20px;
    transform: translateY(-50%);
  }

  .mobile-nav-actions {
    display: block;
  }

  .mobile-nav-actions .header-cta {
    width: 100%;
    margin-top: 10px;
    color: var(--white);
    background: var(--whatsapp-dark);
    box-shadow: 0 10px 24px rgba(18, 140, 77, 0.2);
  }

  .mobile-nav-actions .header-cta:hover,
  .mobile-nav-actions .header-cta:focus-visible {
    color: var(--white);
    background: var(--whatsapp);
  }

  .mobile-nav-actions .header-socials {
    display: grid;
    margin-top: 10px;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-nav-actions .header-socials a {
    width: 100%;
    height: 46px;
    gap: 8px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-grid,
  .grooming-grid,
  .faq-grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 58px;
    grid-template-areas:
      "sidebar"
      "form";
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .hero-image-frame img {
    min-height: 480px;
  }

  .taxi-dog-home-panel {
    grid-template-columns: 1fr;
  }

  .taxi-dog-home-media {
    min-height: 480px;
  }

  .taxi-dog-home-media::after {
    background: linear-gradient(0deg, var(--blue-dark), transparent 58%);
  }

  .about-story-media {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .grooming-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .about-story-copy,
  .grooming-content,
  .faq-intro {
    max-width: 760px;
  }

  .about-story-hero {
    gap: 58px;
    grid-template-columns: 1fr;
  }

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

  .grooming-content {
    order: 1;
  }

  .grooming-visual {
    order: 2;
  }

  .process-timeline {
    gap: 18px;
  }

  .process-step {
    padding-inline: 8px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .faq-intro {
    position: static;
  }

  .faq-intro {
    max-width: 680px;
  }

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

  .store-showcase {
    grid-template-columns: 1fr;
  }

  .store-showcase-reverse .store-showcase-content,
  .store-showcase-reverse .store-showcase-media {
    grid-column: auto;
    grid-row: auto;
  }

  .store-showcase-content {
    padding: 10px 10px 0;
  }

  .contact-info {
    max-width: 700px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-navigation-actions {
    width: 100%;
  }

  .hero-service-actions {
    width: 100%;
  }

  .taxi-dog-home-section {
    padding: 62px 0;
  }

  .taxi-dog-home-panel {
    min-height: 0;
    border-radius: var(--radius-lg);
  }

  .taxi-dog-home-media {
    min-height: 390px;
  }

  .taxi-dog-home-copy {
    padding: 34px 24px 40px;
  }

  .taxi-dog-home-copy .button {
    width: 100%;
  }

  .hero-quick-info {
    gap: 11px;
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    border-radius: 30px 30px 75px 30px;
  }

  .hero-image-frame img {
    min-height: 420px;
    border-radius: 23px 23px 68px 23px;
  }

  .floating-card {
    padding: 8px 11px 8px 8px;
    font-size: 0.68rem;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
  }

  .floating-card-one {
    top: 7%;
    left: -7px;
  }

  .floating-card-two {
    right: -6px;
    bottom: 26%;
  }

  .floating-card-three {
    bottom: 2%;
    left: 6px;
  }

  .trust-item {
    width: clamp(240px, 72vw, 330px);
    min-height: 82px;
    padding: 14px 10px;
    font-size: 0.76rem;
  }

  .grooming-visual img {
    min-height: 420px;
  }

  .about-story-badge {
    right: 12px;
    bottom: 12px;
  }

  .story-care-list,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .about-story-details {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .products-grid,
  .differences-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-highlight {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .service-highlight > div {
    align-items: flex-start;
  }

  .service-highlight .button {
    width: 100%;
  }

  .grooming-note {
    right: 10px;
    bottom: 12px;
  }

  .product-card {
    min-height: auto;
  }

  .process-timeline {
    display: grid;
    margin-top: 44px;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    top: 42px;
    bottom: 42px;
    left: 42px;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: grid;
    min-height: 150px;
    align-items: start;
    padding: 0 0 24px;
    gap: 2px 20px;
    grid-template-columns: 84px minmax(0, 1fr);
    text-align: left;
  }

  .process-icon {
    grid-row: span 3;
    margin: 0;
  }

  .process-number {
    top: -9px;
    left: 62px;
  }

  .process-step h3 {
    padding-top: 10px;
  }

  .process-step p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-instagram-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .gallery-instagram-cta .button {
    width: 100%;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item > span {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonials-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .testimonials-header .section-heading {
    margin-bottom: 24px;
  }

  .carousel-controls {
    margin-bottom: 28px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .final-cta-art {
    display: none;
  }

  .stores-grid {
    grid-template-columns: 1fr;
  }

  .store-card {
    min-height: 390px;
  }

  .store-showcase {
    padding: 16px;
  }

  .store-showcase-media {
    grid-template-columns: minmax(0, 1.35fr) minmax(110px, 0.65fr);
  }

  .store-photo {
    height: 260px;
  }

  .store-actions {
    flex-direction: column;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: var(--radius-md);
  }

  .contact-grid {
    row-gap: 34px;
    grid-template-areas:
      "info"
      "form"
      "details";
  }

  .contact-sidebar {
    display: contents;
  }

  .contact-list {
    margin-top: 0;
  }

  .form-row,
  .form-row-three {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .map-content {
    align-items: start;
    padding: 34px 25px;
    grid-template-columns: 1fr;
  }

  .map-icon {
    width: 58px;
    height: 58px;
  }

  .map-content .button {
    width: 100%;
  }

  .footer-grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    border-radius: 18px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .back-to-top {
    right: 21px;
    bottom: 80px;
  }

  .gallery-modal {
    width: calc(100vw - 24px);
  }

  .modal-close {
    top: -14px;
    right: -4px;
  }
}

@media (max-width: 430px) {
  .hero-navigation-actions,
  .hero-service-actions {
    grid-template-columns: 1fr;
  }

  .brand {
    gap: 5px;
  }

  .brand-logo-crop {
    width: 44px;
    height: 60px;
  }

  .brand-logo-crop img {
    top: -6px;
    left: -5px;
    width: 61px;
    height: 76px;
  }

  .brand-wordmark-crop {
    width: 150px;
    height: 32px;
  }

  .brand-wordmark-crop img {
    top: -71px;
    left: -7px;
    width: 163px;
    height: 204px;
  }

  .hero-image-frame img {
    min-height: 340px;
  }

  .floating-card-two {
    display: none;
  }

  .floating-card-three {
    left: 1px;
  }

  .trust-item {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .grooming-visual img {
    min-height: 350px;
  }

  .about-story-badge {
    max-width: 220px;
    padding: 12px;
    border-width: 4px;
  }

  .about-story-badge {
    right: 8px;
    bottom: 10px;
  }

  .story-timeline::before {
    left: 39px;
  }

  .story-timeline li {
    gap: 12px;
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .grooming-note {
    max-width: 230px;
  }

  .product-card {
    flex-direction: column;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .store-card {
    padding: 24px 20px;
  }

  .store-showcase-media {
    grid-template-columns: 1fr;
  }

  .store-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .store-showcase-media-single .store-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .store-photo:not(.store-photo-wide) {
    aspect-ratio: 4 / 5;
  }
}

/* Página inicial compacta */
.compact-home main > .section:not(.hero) {
  padding-top: 76px;
  padding-bottom: 76px;
}

.compact-horizontal-list {
  grid-template-columns: none !important;
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 3px 3px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--yellow-dark) var(--white);
  scrollbar-width: thin;
}

.services-grid.compact-horizontal-list {
  grid-auto-columns: minmax(245px, calc((100% - 54px) / 4));
}

.products-grid.compact-horizontal-list {
  grid-auto-columns: minmax(290px, calc((100% - 40px) / 3));
}

.compact-horizontal-list:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.compact-horizontal-list > * {
  scroll-snap-align: start;
}

.compact-home .service-card {
  min-height: 235px;
  padding: 24px 21px;
}

.compact-home .product-card {
  min-height: 220px;
  padding: 24px;
}

.compact-details {
  margin-bottom: 42px !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compact-details > summary {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: inherit;
  cursor: pointer;
  color: var(--text-secondary);
  list-style: none;
}

.compact-details > summary::-webkit-details-marker {
  display: none;
}

.compact-details > summary > span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-light);
}

.compact-details > summary strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.compact-details > summary > svg {
  color: var(--blue);
  transition: transform var(--transition);
}

.compact-details[open] > summary {
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--beige);
}

.compact-details[open] > summary > svg {
  transform: rotate(180deg);
}

.compact-details:not([open]) > .store-showcase {
  display: none;
}

.compact-details > .store-showcase {
  margin: 20px;
}

.compact-details > .store-showcase + .store-showcase {
  margin-top: 0;
}

@media (max-width: 1020px) {
  .services-grid.compact-horizontal-list,
  .products-grid.compact-horizontal-list {
    grid-auto-columns: minmax(270px, calc((100% - 20px) / 2));
  }
}

@media (max-width: 760px) {
  .compact-home main > .section:not(.hero) {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-grid.compact-horizontal-list,
  .products-grid.compact-horizontal-list {
    grid-auto-columns: minmax(250px, 86%);
  }

  .compact-details > summary {
    min-height: 76px;
    padding: 13px 15px;
  }

  .compact-details > summary > span:first-child {
    width: 42px;
    height: 42px;
  }

  .compact-details > .store-showcase {
    margin: 12px;
  }
}

/* Página de rações */
.rations-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 92% 12%, rgba(245, 196, 0, 0.3), transparent 28%),
    linear-gradient(135deg, var(--beige) 0%, var(--white) 58%, var(--blue-light) 100%);
}

.rations-hero::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(22, 75, 115, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.rations-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

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

.rations-hero-copy h1 {
  max-width: 760px;
}

.rations-hero-copy > p {
  max-width: 680px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.rations-hero-panel {
  position: relative;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(22, 75, 115, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.rations-panel-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 22px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 1.8rem;
  transform: rotate(-5deg);
}

.rations-hero-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.rations-hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.rations-hero-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.rations-hero-panel li svg {
  flex: 0 0 auto;
  color: var(--success);
}

.availability-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 15px 17px;
  border-radius: var(--radius-sm);
  color: var(--blue-dark);
  background: var(--blue-light);
  font-size: 0.88rem;
  line-height: 1.5;
}

.availability-note svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.cart-trigger {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 13px;
  cursor: pointer;
  color: var(--blue-dark);
  background: var(--white);
  font-weight: 800;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.cart-trigger:hover,
.cart-trigger:focus-visible {
  border-color: var(--yellow-dark);
  background: var(--beige);
  transform: translateY(-2px);
}

.cart-trigger svg {
  width: 19px;
  height: 19px;
}

.cart-trigger-label {
  font-size: 0.78rem;
}

.cart-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: 0.68rem;
  line-height: 1;
}

.cart-trigger.cart-bump {
  animation: cart-bump 360ms ease;
}

@keyframes cart-bump {
  50% { transform: scale(1.08); }
}

.featured-products {
  overflow: hidden;
  background: var(--gray-light);
}

.products-page-main {
  padding-top: calc(var(--header-height) + clamp(42px, 6vw, 72px));
}

.featured-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.featured-products-heading > div:first-child {
  max-width: 780px;
}

.featured-products-heading h1,
.featured-products-heading h2 {
  margin-bottom: 14px;
}

.featured-products-heading h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.featured-products-heading p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.product-slider-controls {
  display: flex;
  gap: 9px;
}

.product-slider-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--blue-dark);
  background: var(--white);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.product-slider-button:hover,
.product-slider-button:focus-visible {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.product-view-switch {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-view-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-secondary);
  background: transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.product-view-button:hover,
.product-view-button:focus-visible,
.product-view-button.active {
  border-color: rgba(22, 75, 115, 0.2);
  color: var(--blue-dark);
  background: var(--blue-light);
}

.product-view-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.product-view-button svg {
  width: 20px;
  height: 20px;
}

.product-listing-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-search {
  display: flex;
  flex: 1 1 420px;
  min-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--gray-light);
}

.product-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 75, 115, 0.12);
}

.product-search svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.product-search input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-filter {
  min-height: 44px;
  padding: 9px 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  background: var(--white);
  font-weight: 800;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.product-filter:hover,
.product-filter.active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.product-filter:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.product-results-count {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-listing {
  display: grid;
  gap: 22px;
}

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

.product-list-view {
  grid-template-columns: 1fr;
}

.product-list-view .ration-product-card {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
}

.product-list-view .ration-product-image {
  min-height: 230px;
}

.product-list-view .ration-product-content h3 {
  min-height: 0;
}

.ration-product-card.is-hidden {
  display: none !important;
}

.product-no-results {
  padding: 54px 24px;
  text-align: center;
  color: var(--text-secondary);
}

.product-no-results[hidden] {
  display: none;
}

.product-no-results svg {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--blue);
}

.product-no-results h2 {
  margin-bottom: 7px;
  font-size: 1.7rem;
}

.product-slider {
  display: grid;
  grid-auto-columns: minmax(260px, calc((100% - 66px) / 4));
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 5px 4px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--yellow-dark) var(--gray-light);
  scrollbar-width: thin;
}

.product-slider:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.ration-product-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(22, 75, 115, 0.07);
  scroll-snap-align: start;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.ration-product-card:hover {
  border-color: rgba(22, 75, 115, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ration-product-image {
  position: relative;
  display: grid;
  min-height: 250px;
  padding: 24px;
  place-items: center;
  background: linear-gradient(145deg, var(--gray-light), var(--white));
}

.ration-product-image img {
  width: 100%;
  height: 215px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-pet-label {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 800;
}

.product-pet-label svg {
  width: 14px;
  height: 14px;
}

.ration-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.product-brand {
  margin-bottom: 7px;
  color: var(--yellow-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ration-product-content h3 {
  min-height: 54px;
  margin-bottom: 18px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.ration-product-content label {
  display: grid;
  margin-top: auto;
  margin-bottom: 15px;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-size-select,
.cart-store-field select {
  width: 100%;
  min-height: 44px;
  padding: 8px 38px 8px 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: 0;
  color: var(--text);
  background: var(--white);
}

.product-size-select:focus,
.cart-store-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 75, 115, 0.12);
}

.add-to-cart {
  width: 100%;
  min-height: 48px;
}

.product-image-note {
  margin: 15px 0 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(480px, 100%);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background: var(--white);
  box-shadow: -24px 0 60px rgba(12, 54, 86, 0.2);
}

.cart-drawer[open] {
  animation: cart-slide-in 260ms ease both;
}

.cart-drawer::backdrop {
  background: rgba(12, 36, 52, 0.55);
  backdrop-filter: blur(3px);
  animation: cart-backdrop-in 220ms ease both;
}

@keyframes cart-slide-in {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes cart-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cart-drawer-layout {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 26px 20px;
  border-bottom: 1px solid var(--border);
}

.cart-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--yellow-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.cart-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  background: var(--white);
}

.cart-close:hover,
.cart-close:focus-visible {
  color: var(--white);
  background: var(--blue-dark);
}

.cart-drawer-body {
  overflow-y: auto;
  padding: 22px 26px;
}

.cart-empty {
  display: grid;
  min-height: 300px;
  place-content: center;
  text-align: center;
}

.cart-empty[hidden],
.cart-items[hidden] {
  display: none;
}

.cart-empty > span {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 23px;
  color: var(--blue);
  background: var(--blue-light);
}

.cart-empty > span svg {
  width: 30px;
  height: 30px;
}

.cart-empty h3 {
  margin-bottom: 7px;
}

.cart-empty p {
  margin: 0;
  color: var(--text-secondary);
}

.cart-items {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  display: grid;
  width: 74px;
  height: 84px;
  padding: 7px;
  place-items: center;
  border-radius: 13px;
  background: var(--gray-light);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-item-brand {
  display: block;
  margin-bottom: 3px;
  color: var(--yellow-dark);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-item h3 {
  margin-bottom: 5px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.cart-item-size {
  display: block;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.76rem;
}

.cart-quantity {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.cart-quantity button {
  display: grid;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: var(--white);
}

.cart-quantity button:hover,
.cart-quantity button:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.cart-quantity span {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.cart-remove {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--danger);
  background: transparent;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  background: #fff0ee;
}

.cart-drawer-footer {
  padding: 20px 26px 22px;
  border-top: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 -12px 30px rgba(22, 75, 115, 0.06);
}

.cart-store-field {
  display: grid;
  margin-bottom: 15px;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-weight: 700;
}

.cart-summary strong {
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.cart-disclaimer {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.45;
}

.cart-whatsapp {
  width: 100%;
  min-height: 52px;
}

.cart-whatsapp:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cart-continue {
  display: block;
  margin: 12px auto 0;
  padding: 6px 12px;
  border: 0;
  cursor: pointer;
  color: var(--blue);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.cart-toast {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 94px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: var(--shadow-md);
  font-size: 0.84rem;
  font-weight: 700;
  animation: toast-in 220ms ease both;
}

.cart-toast[hidden] {
  display: none;
}

.cart-toast svg {
  color: var(--yellow);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.rations-help {
  color: var(--white);
  background: var(--blue);
}

.rations-help h2,
.rations-help .section-kicker {
  color: var(--white);
}

.rations-help p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.rations-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1020px) {
  .rations-hero-grid,
  .rations-help-grid {
    grid-template-columns: 1fr;
  }

  .rations-hero-panel {
    max-width: 680px;
  }

  .product-listing-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .product-search {
    flex-basis: auto;
  }

  .product-filters {
    justify-content: flex-start;
  }

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

  .product-slider {
    grid-auto-columns: minmax(260px, calc((100% - 44px) / 3));
  }

  .rations-help-grid .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .product-grid-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 6px;
  }

  .header-actions .header-socials {
    gap: 4px;
  }

  .header-actions .header-socials a {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .header-actions .header-socials svg {
    width: 17px;
    height: 17px;
  }

  .header-actions .facebook-mark {
    font-size: 1.2rem;
  }

  .brand-wordmark-crop {
    display: block;
    width: clamp(108px, calc(100vw - 210px), 150px);
    height: 32px;
  }

  .brand-wordmark-crop img {
    top: 0;
    left: -4%;
    width: 108.5%;
    height: auto;
    transform: translateY(-34.8%);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .cart-trigger {
    width: 42px;
    height: 42px;
    min-height: 42px;
    justify-content: center;
    padding: 0;
  }

  .cart-trigger-label {
    display: none;
  }

  .cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    border: 2px solid var(--white);
  }

  .rations-hero {
    padding-top: 54px;
  }

  .rations-hero-grid {
    gap: 34px;
  }

  .rations-hero-panel {
    padding: 27px 22px;
    border-radius: var(--radius-lg);
  }

  .products-page-main {
    padding-top: calc(var(--header-height) + 38px);
  }

  .featured-products-heading {
    gap: 18px;
  }

  .featured-products-heading h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .product-view-switch {
    align-self: flex-end;
  }

  .product-listing-tools {
    padding: 13px;
  }

  .product-search {
    min-width: 0;
  }

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

  .product-filter {
    padding-inline: 10px;
  }

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

  .product-list-view .ration-product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-list-view .ration-product-image {
    min-height: 210px;
    padding: 10px;
  }

  .product-list-view .ration-product-image img {
    height: 150px;
  }

  .product-list-view .ration-product-content {
    padding: 17px 15px;
  }

  .product-list-view .ration-product-content h3 {
    font-size: 1rem;
  }

  .featured-products-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .product-slider-controls {
    align-self: flex-end;
    margin-top: -6px;
  }

  .product-slider {
    grid-auto-columns: minmax(250px, 86%);
    gap: 14px;
  }

  .ration-product-card {
    min-height: 490px;
  }

  .cart-drawer-header,
  .cart-drawer-body,
  .cart-drawer-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .cart-item-image {
    width: 64px;
    height: 76px;
  }

  .cart-toast {
    right: 16px;
    bottom: 84px;
    left: 16px;
    justify-content: center;
  }

}

/* Página de serviços */
.services-catalog-section {
  padding-top: calc(var(--header-height) + clamp(42px, 6vw, 72px));
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 196, 0, 0.15), transparent 24%),
    var(--gray-light);
}

.services-page-heading {
  display: grid;
  align-items: end;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.75fr);
}

.services-page-heading h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 5.8vw, 5.4rem);
}

.services-page-heading p {
  max-width: 760px;
  margin: 0;
  font-size: 1.03rem;
}

.services-quality-card {
  display: grid;
  padding: 25px;
  gap: 13px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.services-quality-card span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
}

.services-quality-card span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.services-quality-card svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.service-listing-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: clamp(48px, 7vw, 78px) 0 18px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-search {
  display: flex;
  flex: 1 1 420px;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--gray-light);
}

.service-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 75, 115, 0.12);
}

.service-search svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.service-search input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.service-filter {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  color: var(--blue-dark);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.service-filter:hover,
.service-filter.active {
  border-color: var(--yellow);
  color: var(--blue-dark);
  background: var(--yellow);
}

.service-filter:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.service-results-count {
  margin: 0 0 21px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-catalog-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-catalog-card {
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 75, 115, 0.06);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-catalog-card:hover {
  border-color: rgba(217, 169, 0, 0.55);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-catalog-card[hidden],
.service-catalog-card.is-hidden {
  display: none !important;
}

.service-catalog-card-featured {
  display: grid;
  min-height: 520px;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.service-catalog-image {
  position: relative;
  min-height: 285px;
  background: var(--blue-light);
  overflow: hidden;
}

.service-catalog-card-featured .service-catalog-image {
  min-height: 100%;
}

.service-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-catalog-card:hover .service-catalog-image img {
  transform: scale(1.035);
}

.service-card-icon,
.service-card-badge {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
}

.service-card-icon {
  width: 46px;
  height: 46px;
  border: 4px solid var(--white);
  border-radius: 15px;
}

.service-card-icon svg {
  width: 21px;
  height: 21px;
}

.service-card-badge {
  gap: 7px;
  padding: 9px 13px;
  border: 4px solid var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card-badge svg {
  width: 16px;
  height: 16px;
}

.service-catalog-content {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px 25px 25px;
}

.service-category {
  margin-bottom: 9px;
  color: var(--yellow-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-catalog-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.service-catalog-content p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-catalog-content small {
  display: block;
  margin: -5px 0 19px;
  color: var(--text-secondary);
  font-size: 0.73rem;
  line-height: 1.5;
}

.service-catalog-content .button {
  width: 100%;
  margin-top: auto;
}

.service-included-list {
  display: grid;
  padding: 0;
  margin: 0 0 20px;
  gap: 9px;
  list-style: none;
}

.service-included-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-included-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--yellow-dark);
}

.service-no-results {
  padding: 70px 24px;
  text-align: center;
  color: var(--text-secondary);
}

.service-no-results svg {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: var(--blue);
}

.service-photo-credit {
  margin: 25px 0 0;
  color: var(--text-secondary);
  font-size: 0.76rem;
  text-align: center;
}

.service-photo-credit a {
  color: var(--blue);
  font-weight: 800;
}

.services-contact-panel {
  display: grid;
  align-items: center;
  gap: 42px;
  margin-top: clamp(54px, 7vw, 86px);
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 100%, rgba(245, 196, 0, 0.15), transparent 35%),
    var(--blue-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  grid-template-columns: minmax(0, 1fr) auto;
}

.services-contact-panel h2 {
  max-width: 720px;
  color: var(--white);
}

.services-contact-panel p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1020px) {
  .services-page {
    --header-height: 74px;
  }

  .services-page .header-main,
  .services-page .header-top {
    height: var(--header-height);
  }

  .services-page .header-top {
    padding-bottom: 0;
    grid-template-rows: var(--header-height);
  }

  .services-page-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .services-quality-card span:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .service-listing-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .service-search {
    flex-basis: auto;
  }

  .service-filters {
    justify-content: flex-start;
  }

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

  .service-catalog-card-featured {
    grid-column: span 2;
  }

  .services-contact-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .services-contact-panel .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .services-catalog-section {
    padding-top: calc(var(--header-height) + 38px);
  }

  .services-page-heading h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .service-listing-tools {
    padding: 13px;
  }

  .service-search {
    min-width: 0;
  }

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

  .service-filter {
    padding-inline: 10px;
  }

  .service-catalog-grid {
    grid-template-columns: 1fr;
  }

  .service-catalog-card,
  .service-catalog-card-featured {
    min-height: 0;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-catalog-card-featured .service-catalog-image,
  .service-catalog-image {
    min-height: 310px;
  }

  .service-catalog-content {
    min-height: 320px;
  }
}

@media (max-width: 430px) {
  .services-quality-card,
  .service-filters {
    grid-template-columns: 1fr;
  }

  .services-quality-card span:nth-last-child(2) {
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-catalog-content {
    padding: 23px 20px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .trust-marquee {
    overflow-x: auto;
  }

  .trust-track {
    animation: none !important;
    transform: none;
  }

  .trust-group[aria-hidden="true"] {
    display: none;
  }
}
