* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", Arial, sans-serif; line-height: 1.6; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
@media (max-width: 640px) { .container { width: min(100% - 28px, 1160px); } }

.pets-page {
  --pets-brown: #773b22;
  --pets-brown-dark: #552711;
  --pets-peach: #ffe0ce;
  --pets-peach-soft: #fff3eb;
  --pets-coral: #ff9b6b;
  --pets-coral-dark: #e87749;
  --pets-ink: #2a160f;
  --pets-muted: #76594d;
  --pets-card: #ffffff;
  color: var(--pets-ink);
  background: var(--pets-peach-soft);
}

.pets-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 max(32px, calc((100vw - 1160px) / 2));
  background: #282828;
  color: #ffffff;
}

.pets-brand {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  z-index: 2;
}

.pets-brand img {
  width: 152px;
  height: auto;
}

.pets-nav {
  position: absolute;
  inset: 0 max(32px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 0.95rem;
}

.pets-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.pets-nav a[aria-current="page"],
.pets-nav a.is-active {
  color: var(--pets-coral);
  font-weight: 900;
}

.pets-nav-login {
  position: absolute;
  right: 152px;
}

.pets-nav-login + .pets-nav-cta {
  margin-left: 0;
}

.pets-nav-cta {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--pets-brown-dark) !important;
  background: var(--pets-coral);
  border: 2px solid var(--pets-coral);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pets-nav-cta:hover {
  background: #ffb38e;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.pets-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.08) 100%),
    var(--pets-hero-bg, url("hishare-pets-hero-background.png")),
    linear-gradient(135deg, var(--pets-brown) 0%, #8a4428 100%);
  background-position: center;
  background-size: cover;
}

.pets-hero-grid,
.pets-split,
.pets-how-layout,
.pets-signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.pets-hero-grid {
  grid-template-columns: minmax(0, 680px);
  min-height: calc(100vh - 92px);
  padding: 118px 0 96px;
}

.pets-hero-copy {
  color: #ffffff;
}

.pets-hero .pets-kicker,
.pets-how .pets-kicker {
  color: #ffd9c8;
}

.pets-kicker {
  margin: 0 0 18px;
  color: var(--pets-coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pets-hero h1,
.pets-section h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.pets-hero h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 5.2vw, 4rem);
  font-weight: 900;
  text-wrap: balance;
}

.pets-hero-copy p:not(.pets-kicker) {
  max-width: 600px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  line-height: 1.36;
}

.pets-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.pets-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 220px;
  padding: 0 32px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pets-button-primary {
  color: var(--pets-brown-dark);
  background: var(--pets-peach);
  border-color: var(--pets-peach);
  box-shadow: 0 18px 34px rgba(255, 155, 107, 0.35);
}

.pets-button-primary:hover {
  background: #ffb38e;
  transform: translateY(-2px);
}

.pets-button-secondary {
  color: var(--pets-peach);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 224, 206, 0.75);
}

.pets-button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.pets-hero-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(119, 59, 34, 0.18);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(85, 39, 17, 0.28);
  backdrop-filter: blur(12px);
}

.pets-photo-card,
.pets-trip-card {
  background: var(--pets-card);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(85, 39, 17, 0.16);
}

.pets-photo-card {
  display: grid;
  gap: 20px;
  padding: 18px;
}

.pets-hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.pet-illustration {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 155, 107, 0.28), transparent 22%),
    linear-gradient(145deg, #fff8f3, #ffd7c1);
  border-radius: 18px;
}

.pet-illustration::before {
  content: "";
  position: absolute;
  inset: auto 22px 28px;
  height: 96px;
  background: linear-gradient(135deg, var(--pets-brown), #a65633);
  border-radius: 36px 36px 18px 18px;
}

.pet-face {
  position: absolute;
  bottom: 62px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(85, 39, 17, 0.18);
}

.pet-face::before,
.pet-face::after {
  content: "";
  position: absolute;
}

.pet-dog {
  left: 52px;
  background: #f1b47f;
}

.pet-dog::before,
.pet-dog::after {
  top: 22px;
  width: 34px;
  height: 58px;
  background: #8d5031;
  border-radius: 28px;
}

.pet-dog::before {
  left: -9px;
  transform: rotate(18deg);
}

.pet-dog::after {
  right: -9px;
  transform: rotate(-18deg);
}

.pet-cat {
  right: 52px;
  background: #ffffff;
}

.pet-cat::before,
.pet-cat::after {
  top: -10px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pet-cat::before {
  left: 15px;
}

.pet-cat::after {
  right: 15px;
}

.pets-photo-card strong,
.pets-trip-card strong {
  display: block;
  font-size: 1.2rem;
}

.pets-photo-card p,
.pets-trip-card p {
  margin: 4px 0 0;
  color: var(--pets-muted);
}

.pets-trip-card {
  padding: 22px;
}

.pets-trip-card span {
  color: var(--pets-coral-dark);
  font-weight: 900;
}

.paw {
  position: absolute;
  width: 88px;
  height: 88px;
  opacity: 0.5;
  transform: rotate(-16deg);
}

.paw-one {
  top: 150px;
  right: 11%;
}

.paw-two {
  bottom: 70px;
  left: 5%;
  transform: rotate(18deg) scale(0.8);
}

.paw-three {
  top: 42px;
  left: 42%;
  transform: rotate(26deg) scale(0.62);
}

.pets-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
}

.pets-section > .container {
  position: relative;
  z-index: 1;
}

.section-paw {
  position: absolute;
  z-index: 0;
  width: 84px;
  height: 84px;
  opacity: 0.18;
  pointer-events: none;
}

.intro-paw-one {
  top: 34px;
  right: 9%;
  width: 116px;
  height: 116px;
  transform: rotate(22deg);
}

.intro-paw-two {
  bottom: 34px;
  left: 7%;
  width: 64px;
  height: 64px;
  opacity: 0.13;
  transform: rotate(-28deg);
}

.services-paw-one {
  top: 58px;
  left: 3%;
  width: 76px;
  height: 76px;
  transform: rotate(38deg);
}

.services-paw-two {
  right: 12%;
  bottom: 42px;
  width: 132px;
  height: 132px;
  opacity: 0.12;
  transform: rotate(-18deg);
}

.services-paw-three {
  top: 42%;
  right: 3%;
  width: 58px;
  height: 58px;
  opacity: 0.16;
  transform: rotate(64deg);
}

.how-paw-one {
  top: 30px;
  right: 6%;
  width: 120px;
  height: 120px;
  opacity: 0.24;
  transform: rotate(-34deg);
}

.how-paw-two {
  left: 4%;
  bottom: 40px;
  width: 70px;
  height: 70px;
  opacity: 0.22;
  transform: rotate(18deg);
}

.signup-paw-one {
  top: 44px;
  left: 10%;
  width: 94px;
  height: 94px;
  opacity: 0.15;
  transform: rotate(-42deg);
}

.signup-paw-two {
  right: 5%;
  bottom: 30px;
  width: 150px;
  height: 150px;
  opacity: 0.11;
  transform: rotate(30deg);
}

.pets-section h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  font-weight: 900;
}

.pets-copy p {
  margin: 0 0 22px;
  color: var(--pets-muted);
  font-size: 1.08rem;
}

.pets-section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

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

.pets-love-list {
  display: grid;
  gap: 0;
}

.pets-love-item {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 112px;
  padding: 26px 40px;
  border-top: 1px solid rgba(119, 59, 34, 0.1);
}

.pets-love-item:nth-child(even) {
  background: #ffffff;
}

.pets-love-item h3 {
  margin: 0;
  color: #151033;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
}

.pets-love-item p {
  max-width: 620px;
  margin: 0;
  color: var(--pets-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.pets-love-item p strong {
  color: var(--pets-ink);
  font-weight: 900;
}

.pets-service-card,
.pets-steps div,
.pets-form {
  background: #ffffff;
  border: 1px solid rgba(119, 59, 34, 0.13);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(85, 39, 17, 0.1);
}

.pets-service-card {
  padding: 28px;
}

.pets-card-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--pets-coral-dark);
  font-weight: 900;
}

.pets-service-card h3,
.pets-steps strong {
  margin: 0;
  font-size: 1.3rem;
}

.pets-service-card p,
.pets-steps p,
.pets-signup-layout > div > p {
  margin: 12px 0 0;
  color: var(--pets-muted);
}

.pets-how {
  color: #ffffff;
  background: var(--pets-brown);
}

.pets-how h2 {
  color: #ffffff;
}

.pets-steps {
  display: grid;
  gap: 16px;
}

.pets-steps div {
  position: relative;
  padding: 24px 24px 24px 72px;
  color: var(--pets-ink);
}

.pets-steps span {
  position: absolute;
  top: 28px;
  left: 24px;
  width: 26px;
  height: 26px;
  background: var(--pets-coral);
  border-radius: 50%;
}

.pets-steps span::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.pets-signup {
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 155, 107, 0.22), transparent 24%),
    var(--pets-peach-soft);
}

.pets-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.pets-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.pets-form input,
.pets-form select {
  min-height: 54px;
  padding: 0 16px;
  color: var(--pets-ink);
  background: #fffaf7;
  border: 1px solid rgba(119, 59, 34, 0.25);
  border-radius: 14px;
}

.pets-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.pets-guide-main {
  --pets-brown: #773b22;
  --pets-brown-dark: #552711;
  --pets-peach: #ffe0ce;
  --pets-peach-soft: #fff3eb;
  --pets-coral: #ff9b6b;
  --pets-coral-dark: #e87749;
  --pets-ink: #2a160f;
  --pets-muted: #76594d;
  --pets-card: #ffffff;
  width: 100%;
  color: var(--pets-ink);
  background: var(--pets-peach-soft);
}

.pets-guide-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(42, 22, 15, 0.92), rgba(119, 59, 34, 0.78)),
    url("hishare-pets-hero-background.png") center / cover;
}

.guide-hero-motorista {
  background:
    linear-gradient(90deg, rgba(42, 22, 15, 0.88), rgba(119, 59, 34, 0.42), rgba(0, 0, 0, 0.08)),
    url("hero-motorista.png") center / cover;
}

.guide-hero-tutor {
  background:
    linear-gradient(90deg, rgba(42, 22, 15, 0.86), rgba(119, 59, 34, 0.34), rgba(0, 0, 0, 0.06)),
    url("hero-tutor.png") center / cover;
}

.guide-hero-empreendimento {
  background:
    linear-gradient(90deg, rgba(42, 22, 15, 0.9), rgba(119, 59, 34, 0.38), rgba(0, 0, 0, 0.08)),
    url("hero-empreendimento-pet.png") center / cover;
}

.pets-guide-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.pets-guide-hero p:not(.pets-kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.pets-guide-section {
  padding: 78px 0 110px;
}

.pets-guide-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.pets-guide-aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(119, 59, 34, 0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(85, 39, 17, 0.08);
}

.pets-guide-aside strong {
  color: var(--pets-ink);
  font-size: 0.9rem;
}

.pets-guide-aside a {
  color: var(--pets-muted);
  font-weight: 700;
}

.pets-guide-content {
  display: grid;
  gap: 26px;
}

.pets-guide-content.single {
  max-width: 920px;
}

.pets-guide-block {
  padding: 34px;
  border: 1px solid rgba(119, 59, 34, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(85, 39, 17, 0.08);
}

.pets-guide-block h2 {
  margin: 0 0 22px;
  color: var(--pets-ink);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.pets-guide-block h3 {
  margin: 0 0 16px;
  color: var(--pets-ink);
  font-size: 1.35rem;
}

.pets-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pets-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--pets-muted);
}

.pets-check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pets-coral);
  content: "";
}

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

.pets-rules-grid > div {
  padding: 24px;
  border-radius: 18px;
  background: var(--pets-peach-soft);
}

.pets-rules-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--pets-brown-dark);
}

.pets-rules-grid p {
  margin: 6px 0 0;
  color: var(--pets-muted);
}

.pets-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pets-pill-list span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--pets-brown-dark);
  background: var(--pets-peach-soft);
  font-weight: 800;
}

@media (max-width: 900px) {
  .pets-header {
    position: static;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    padding: 18px 20px;
  }

  .pets-nav {
    position: static;
    inset: auto;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
    margin-left: 0;
  }

  .pets-nav-cta {
    position: static;
    margin-left: 0;
    width: 100%;
  }

  .pets-nav-login {
    position: static;
    margin-left: 0;
  }

  .pets-hero {
    min-height: auto;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.34) 100%),
      var(--pets-hero-bg, url("hishare-pets-hero-background.png")),
      linear-gradient(180deg, var(--pets-brown) 0%, #8a4428 100%);
    background-position: 52% center;
    background-size: cover;
  }

  .pets-hero-grid,
  .pets-split,
  .pets-how-layout,
  .pets-signup-layout,
  .pets-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pets-hero-grid {
    min-height: auto;
    padding: 88px 0 76px;
  }

  .pets-love-item {
    grid-template-columns: 1fr;
    gap: 10px 18px;
    padding: 24px 20px;
  }

  .pets-love-item p {
    grid-column: auto;
  }

  .pets-hero h1 {
    font-size: 3.2rem;
    line-height: 1.08;
  }

  .pets-actions,
  .pets-button {
    width: 100%;
  }

  .pets-guide-hero {
    padding: 82px 0 68px;
  }

  .pets-guide-layout,
  .pets-rules-grid {
    grid-template-columns: 1fr;
  }

  .pets-guide-aside {
    position: static;
  }

  .pets-guide-block {
    padding: 24px;
  }

  .section-paw {
    opacity: 0.1;
    transform: scale(0.72);
  }

  .pet-illustration {
    min-height: 250px;
  }

  .pet-dog {
    left: 28px;
  }

  .pet-cat {
    right: 28px;
  }
}

