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

:root {
  --teal: #00b8a9;
  --yellow: #f5c842;
  --cream: #f0ede3;
  --white: #ffffff;
  --navy: #1a2e3b;
  --purple: #3d2b8e;
  --app-header-height: 132px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--navy);
}

a {
  color: inherit;
}

.home-route {
  background: var(--teal);
}

.mock-header {
  background: var(--teal);
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 38px;
  flex-shrink: 0;
}

.mock-logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-logo-badge svg {
  width: 26px;
  height: 26px;
}

.mock-logo-text .name {
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  display: block;
  line-height: 1.05;
}

.mock-logo-text .sub {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
}

.mock-nav {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.mock-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 18px;
  flex-shrink: 0;
}

.mock-nav-item {
  position: relative;
}

.mock-nav-item > a,
.mock-nav-item > button {
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: background 0.15s;
}

.mock-nav-item > a:hover,
.mock-nav-item > button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mock-caret {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.2s;
}

.mock-nav-item:hover .mock-caret {
  transform: rotate(180deg);
}

.mock-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  z-index: 100;
  overflow: hidden;
}

.mock-nav-item:hover .mock-dropdown {
  display: block;
}

.mock-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.12s;
}

.mock-dropdown a:hover {
  background: #e8faf8;
  color: var(--teal);
}

.mock-main {
  background: var(--teal);
}

#capa {
  background: var(--teal);
  position: relative;
  height: calc(100vh - 90px - 80px);
  min-height: 500px;
  max-height: 760px;
  overflow: hidden;
  padding: 0 0 18px;
}

.capa-shell {
  position: absolute;
  top: 0;
  left: 1.6%;
  right: 1.6%;
  bottom: 0;
  background: #f0ede3;
  overflow: hidden;
  border-radius: 220px 0 210px 210px / 180px 0 190px 190px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.capa-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.capa-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.capa-slide.is-active {
  opacity: 1;
}

.capa-slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: saturate(0.88);
}

.capa-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 237, 227, 0.92) 0%, rgba(240, 237, 227, 0.62) 26%, rgba(240, 237, 227, 0.18) 58%, rgba(240, 237, 227, 0.04) 100%);
}

.capa-slide-copy {
  position: absolute;
  z-index: 2;
  left: 11%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  color: var(--navy);
}

.capa-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.capa-slide-copy h1 {
  font-size: 44px;
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 12px;
}

.capa-slide-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: #3f4b57;
}

.capa-stars {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 2;
}

.capa-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.capa-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 200, 66, 0.35);
  cursor: pointer;
}

.capa-dot.on {
  background: var(--yellow);
}

.capa-stars span {
  font-size: 26px;
  color: var(--yellow);
  animation: blink 1.5s ease-in-out infinite;
}

.capa-stars span:nth-child(2) {
  animation-delay: 0.2s;
}

.capa-stars span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.social-bar {
  background: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  gap: 18px;
  border-top: 1px solid #eee;
}

.social-bar a,
.rsoc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}

.social-bar a:hover,
.rsoc:hover {
  background: #e8faf8;
  transform: scale(1.12);
}

.social-bar a i,
.rsoc i {
  font-size: 20px;
  color: var(--teal);
}

.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.sec-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sec-tag::before {
  content: '✳';
  color: var(--yellow);
  font-size: 15px;
}

.sec-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.sec-bar {
  width: 52px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 32px;
}

.center {
  text-align: center;
}

.center-block {
  text-align: center;
  margin-bottom: 48px;
}

.center-tag {
  justify-content: center;
}

.center-bar {
  margin: 0 auto;
}

.home-route .btn,
.home-route .btn-ol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
}

.home-route .btn {
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 6px 20px rgba(0, 184, 169, 0.35);
}

.home-route .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 184, 169, 0.45);
  color: #fff;
}

.home-route .btn-ol {
  background: transparent;
  color: var(--teal);
  padding: 13px 28px;
  border: 2px solid var(--teal);
}

.home-route .btn-ol:hover {
  background: var(--teal);
  color: #fff;
}

#quem-sou {
  background: var(--cream);
  padding: 90px 0;
}

.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.qs-foto {
  border-radius: 20px;
  height: 460px;
  background: linear-gradient(145deg, var(--teal), #007a72);
  position: relative;
  box-shadow: 20px 20px 0 var(--yellow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 600;
}

.qs-foto i {
  font-size: 52px;
  opacity: 0.4;
}

.qs-text p,
.pet-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 32px;
}

.tag {
  background: #e0f7f5;
  color: #00796b;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 181, 163, 0.25);
}

#noticias {
  background: #fff;
  padding: 90px 0;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0;
}

.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.card-img {
  height: 170px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  justify-content: flex-start;
  background: linear-gradient(135deg, #efe9d8, #f8f6ef);
}

.card-img-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.04);
}

.card-cat {
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.card-cat {
  position: relative;
  z-index: 1;
}

.card-empty .card-link {
  display: none;
}

.card-body {
  padding: 18px;
}

.card-date {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.38;
  margin-bottom: 9px;
}

.card-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

.card-link {
  position: absolute;
  inset: 0;
}

.c1 .card-img { background: linear-gradient(135deg, #00b8a9, #007a72); }
.c2 .card-img { background: linear-gradient(135deg, #f5c842, #e09c10); }
.c3 .card-img { background: linear-gradient(135deg, #3d2b8e, #00b8a9); }
.c4 .card-img { background: linear-gradient(135deg, #00b8a9, #3d2b8e); }
.c5 .card-img { background: linear-gradient(135deg, #e09c10, #00b8a9); }
.c6 .card-img { background: linear-gradient(135deg, #007a72, #3d2b8e); }

#redes {
  background: var(--navy);
  padding: 90px 0;
}

.redes-tag {
  color: var(--yellow);
}

.redes-title {
  color: #fff;
}

.redes-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 44px;
}

.rc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rc-title i {
  font-size: 18px;
}

.vgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.vt {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.18s;
  position: relative;
  text-decoration: none;
  padding: 16px;
}

.vt:hover {
  border-color: var(--teal);
}

.play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 184, 169, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, background 0.18s;
}

.vt:hover .play {
  transform: scale(1.12);
  background: var(--teal);
}

.play i {
  font-size: 18px;
  color: #fff;
  margin-left: 3px;
}

.vt-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ft {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  padding: 12px;
}

.ft:hover {
  transform: scale(1.05);
  border-color: var(--yellow);
}

.ft-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ft-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 46, 59, 0.06), rgba(26, 46, 59, 0.74));
}

.ft-title {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

#pet {
  background: #fffbea;
  padding: 90px 0;
}

.pet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.swr {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.str {
  display: flex;
  transition: transform 0.48s ease;
}

.sli {
  min-width: 100%;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.pet-icon {
  font-size: 76px;
  color: rgba(255, 255, 255, 0.35);
}

.pet-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.sn {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pet-slide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pet-slide-link:hover {
  color: var(--teal);
}

.st {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 11px;
  letter-spacing: 0.05em;
}

.s1 { background: linear-gradient(135deg, #00b8a9, #007a72); }
.s2 { background: linear-gradient(135deg, #f5a623, #c97c0e); }
.s3 { background: linear-gradient(135deg, #3d2b8e, #6c3fc5); }
.s4 { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.sarrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.sar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
  transition: background 0.15s, transform 0.15s;
}

.sar:hover {
  background: #fff;
  transform: scale(1.08);
}

.sar i {
  font-size: 14px;
  color: var(--teal);
}

.sdots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 14px;
}

.sd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 184, 169, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.sd.on {
  background: var(--teal);
  transform: scale(1.3);
}

.pet-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

#rodape {
  background: var(--navy);
  padding: 72px 0 36px;
}

.rg {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
}

.rl .name {
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.rl .sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  display: block;
  margin-top: 3px;
}

.rl p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.rodape-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
}

.rsoc-row {
  display: flex;
  gap: 10px;
}

.rc h4 {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.rc ul {
  list-style: none;
}

.rc ul li {
  margin-bottom: 9px;
}

.rc ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.14s;
}

.rc ul li a::before {
  content: '›';
  color: var(--teal);
  font-size: 15px;
}

.rc ul li a:hover {
  color: #fff;
}

.rodape-box {
  margin-top: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.rodape-box-title {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.rodape-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.rb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.rodape-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.rodape-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, color 0.18s;
}

.rodape-credit:hover {
  color: #fff;
  opacity: 0.86;
}

.rodape-heart {
  color: #ff6b81;
  font-size: 13px;
  transform-origin: center;
  animation: rodapeHeartPulse 1.4s ease-in-out infinite;
}

@keyframes rodapeHeartPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }

  35% {
    transform: scale(1.24);
    opacity: 1;
  }

  55% {
    transform: scale(1.08);
  }
}

.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 184, 169, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.18s;
  z-index: 998;
}

.btt.show {
  opacity: 1;
  pointer-events: all;
}

.btt:hover {
  transform: translateY(-3px);
}

.btt i {
  font-size: 18px;
  color: #fff;
}

.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s, transform 0.65s;
}

.revl {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s, transform 0.65s;
}

.revr {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s, transform 0.65s;
}

.rev.go,
.revl.go,
.revr.go {
  opacity: 1;
  transform: none;
}

.site-navbar {
  background: var(--teal);
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: var(--app-header-height);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.site-navbar.auth-navbar {
  min-height: 76px;
}

.site-navbar .container {
  min-height: var(--app-header-height);
  align-items: center;
}

.site-navbar.auth-navbar .container {
  min-height: 76px;
}

.site-navbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.site-main {
  padding-top: 24px;
  min-height: 100vh;
  background: var(--cream);
  overflow-x: auto;
  padding-left: 0;
  padding-right: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
}

.site-navbar.auth-navbar .brand-mark {
  width: 34px;
  height: 34px;
}

.brand-copy strong {
  display: block;
  color: var(--yellow);
  font-family: "Nunito", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.site-navbar.auth-navbar .brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  color: var(--white);
  font-size: 10px;
}

.site-navbar.auth-navbar .brand-copy small {
  font-size: 7px;
}

.navbar-collapse {
  align-items: center;
  min-height: var(--app-header-height);
}

.site-navbar.auth-navbar .navbar-collapse {
  min-height: 76px;
}

.navbar-nav {
  gap: 2px;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.site-navbar.auth-navbar .navbar-nav .nav-link {
  font-size: 10px;
  padding: 4px 7px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .dropdown-toggle:hover,
.navbar-nav .dropdown-toggle:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar-nav .with-caret::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 2px;
}

.btn-quiet-danger {
  color: var(--white);
  background: rgba(183, 28, 28, 0.14);
  border: 2px solid #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.14);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 10px;
  flex-shrink: 0;
  animation: denunciaPulse 1.8s ease-in-out infinite;
}

.site-navbar.auth-navbar .btn-quiet-danger {
  padding: 6px 10px;
  font-size: 10px;
}

.btn-quiet-danger:hover {
  color: var(--white);
  background: rgba(183, 28, 28, 0.24);
  border-color: #ff7a7c;
  box-shadow: 0 0 0 4px rgba(255, 77, 79, 0.18);
}

@keyframes denunciaPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.14);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 77, 79, 0.2);
  }
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.dropdown-menu {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  margin-top: 10px;
  z-index: 1100;
}

.dropdown-item {
  padding: 10px 14px;
  font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #e8faf8;
  color: var(--teal);
}

.site-main > .alert,
.site-main > .container,
.site-main > .container-fluid > .container,
.site-main > .container-fluid > .row,
.site-main > .card,
.site-main form,
.site-main .card {
  position: relative;
  z-index: 1;
}

.site-main > .container,
.site-main > .container-fluid,
.site-main .container:first-child,
.site-main .container-fluid:first-child {
  padding-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
}

.site-main .card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.site-main .table-responsive {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.site-main table {
  min-width: 980px;
}

.site-main th:last-child,
.site-main td:last-child {
  min-width: 160px;
  white-space: nowrap;
}

.site-main td:last-child form,
.site-main td:last-child a {
  vertical-align: middle;
}

.site-main td:last-child .btn {
  min-width: 44px;
}

.site-main .card-header {
  border-radius: 16px 16px 0 0 !important;
}

.site-main .card-body {
  padding: 1.5rem;
}

.site-main form .row {
  row-gap: 0;
}

.alert {
  margin: 1rem;
}

@media (max-width: 1180px) {
  #capa {
    min-height: 460px;
  }

  .capa-shell {
    left: 2.4%;
    right: 2.4%;
    border-radius: 120px 0 110px 110px / 110px 0 110px 110px;
  }

  .capa-slide-copy {
    left: 7%;
    max-width: 360px;
  }

  .capa-slide-copy h1 {
    font-size: 36px;
  }
}

@media (max-width: 860px) {
  :root {
    --app-header-height: 96px;
  }

  #capa {
    height: auto;
    min-height: 0;
    padding: 0 0 18px;
  }

  .capa-shell {
    position: relative;
    inset: auto;
    min-height: 500px;
    border-radius: 46px;
  }

  .capa-slide-copy {
    left: 32px;
    right: 32px;
    top: auto;
    bottom: 84px;
    transform: none;
    max-width: 420px;
  }

  .capa-slide-media::after {
    background: linear-gradient(180deg, rgba(240, 237, 227, 0.12) 0%, rgba(240, 237, 227, 0.34) 38%, rgba(240, 237, 227, 0.94) 100%);
  }

  .capa-slide-copy h1 {
    font-size: 32px;
  }

  .capa-slide-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .capa-stars {
    bottom: 58px;
  }

  .capa-dots {
    bottom: 22px;
  }

  .qs-grid,
  .pet-grid,
  .redes-cols,
  .rg {
    grid-template-columns: 1fr;
  }

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

  .mock-nav {
    display: none;
  }

  .mock-header {
    padding: 0 20px;
  }

  .mock-header-actions {
    padding-left: 12px;
  }

  .site-navbar {
    min-height: var(--app-header-height);
  }

  .site-navbar .container {
    min-height: var(--app-header-height);
  }

  .site-main {
    padding-top: 16px;
  }

  .navbar-collapse {
    background: var(--teal);
    margin: 0 -12px;
    padding: 12px;
    border-radius: 0 0 16px 16px;
  }

  .navbar-nav {
    gap: 6px;
  }

  .navbar-nav .nav-link,
  .btn-quiet-danger {
    width: 100%;
    justify-content: space-between;
  }

  .site-main > .container,
  .site-main > .container-fluid,
  .site-main .container:first-child,
  .site-main .container-fluid:first-child {
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .card-img {
    height: 210px;
  }
}

@media (max-width: 560px) {
  #capa {
    padding-bottom: 14px;
  }

  .capa-shell {
    min-height: 420px;
    border-radius: 30px;
  }

  .capa-slide-copy {
    left: 20px;
    right: 20px;
    bottom: 72px;
    max-width: none;
  }

  .capa-kicker {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .capa-slide-copy h1 {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .capa-slide-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .capa-stars {
    gap: 12px;
    bottom: 50px;
  }

  .capa-stars span {
    font-size: 20px;
  }

  .capa-dots {
    bottom: 18px;
  }

  .card-img {
    height: 220px;
  }

  .noticias-grid,
  .vgrid {
    grid-template-columns: 1fr;
  }

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

  .section-inner {
    padding: 0 20px;
  }

  .social-bar {
    padding: 0 20px;
  }
}

/* ═══════════════════════════════════════════════════
   INNER PAGES — brand-unified theme
   ═══════════════════════════════════════════════════ */

/* Background alinhado com o cream da landing */
.site-main {
  background: var(--cream) !important;
}

/* Botões marca — usados nas views internas */
.btn-brand {
  background: var(--teal);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.btn-brand:hover, .btn-brand:focus {
  background: #009e96;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,184,169,.32);
}

.btn-brand-ol {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 9px 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.btn-brand-ol:hover, .btn-brand-ol:focus {
  background: var(--teal);
  color: #fff;
}

.btn-brand-warn {
  background: var(--yellow);
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn-brand-warn:hover { background: #e6b800; color: var(--navy); transform: translateY(-1px); }

.btn-brand-danger {
  background: #e53e3e;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s;
}
.btn-brand-danger:hover { background: #c53030; color: #fff; }

/* Focus ring nos form controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .25rem rgba(0,184,169,.18);
}
.form-check-input:checked {
  background-color: var(--teal);
  border-color: var(--teal);
}
.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgba(0,184,169,.18);
}

/* Cabeçalho de página interna */
.page-hd {
  padding: 32px 0 20px;
  border-bottom: 3px solid var(--yellow);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.page-hd-left {}
.page-hd-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-hd-kicker::before {
  content: '✳';
  color: var(--yellow);
  font-size: 14px;
}
.page-hd h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}

/* Category pills */
.cat-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 28px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .15s;
  cursor: pointer;
}
.cat-pill-all    { background: #eef1f4; color: var(--navy); border-color: rgba(26,46,59,.15); }
.cat-pill-all:hover,.cat-pill-all.active    { background: var(--navy); color: #fff; border-color: var(--navy); }
.cat-pill-teal   { background: #e0f7f5; color: #00796b; border-color: rgba(0,184,169,.25); }
.cat-pill-teal:hover,.cat-pill-teal.active   { background: var(--teal); color: #fff; border-color: var(--teal); }
.cat-pill-yellow { background: #fff8dc; color: #7a5b00; border-color: rgba(245,200,66,.35); }
.cat-pill-yellow:hover,.cat-pill-yellow.active { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.cat-pill-purple { background: #f0eeff; color: var(--purple); border-color: rgba(61,43,142,.2); }
.cat-pill-purple:hover,.cat-pill-purple.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.cat-pill-navy   { background: #eef2ff; color: #3730a3; border-color: rgba(55,48,163,.2); }
.cat-pill-navy:hover,.cat-pill-navy.active   { background: #3730a3; color: #fff; border-color: #3730a3; }
.cat-pill-green  { background: #ecfdf5; color: #065f46; border-color: rgba(6,95,70,.2); }
.cat-pill-green:hover,.cat-pill-green.active  { background: #065f46; color: #fff; border-color: #065f46; }

/* Badge brand */
.badge-brand  { background: var(--teal);   color: #fff; }
.badge-yellow { background: var(--yellow); color: var(--navy); }
.badge-navy   { background: var(--navy);   color: #fff; }
.badge-purple { background: var(--purple); color: #fff; }
.badge-red    { background: #e53e3e;       color: #fff; }
.badge-green  { background: #2d9e6b;       color: #fff; }

/* Metric cards do dashboard */
.metric-card {
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  border: none;
  color: #fff;
}
.metric-card .mc-icon {
  font-size: 28px;
  margin-bottom: 6px;
  opacity: .85;
}
.metric-card .mc-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}
.metric-card .mc-value {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}
.metric-card .mc-sub {
  font-size: 13px;
  opacity: .65;
}
.mc-teal   { background: linear-gradient(135deg, var(--teal),   #007a72); }
.mc-yellow { background: linear-gradient(135deg, #d4a300, #b88400); color: var(--navy) !important; }
.mc-yellow .mc-label, .mc-yellow .mc-sub { opacity: .65; }
.mc-navy   { background: linear-gradient(135deg, var(--navy),   #0f1e28); }
.mc-purple { background: linear-gradient(135deg, var(--purple), #2a1d66); }

/* Auth page */
.auth-page {
  min-height: calc(100vh - var(--app-header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}
.auth-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(26,46,59,.12);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}
.auth-card-wide { max-width: 700px; }
.auth-card-top {
  background: linear-gradient(135deg, var(--teal) 0%, #007a72 100%);
  padding: 36px 32px 28px;
  text-align: center;
  position: relative;
}
.auth-card-top::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 28px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.auth-logo-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,255,255,.3);
}
.auth-logo-ring img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.auth-card-top h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 4px;
}
.auth-card-top p {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin: 0;
}
.auth-card-body {
  padding: 32px 36px 36px;
}
.auth-divider {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
  margin: 18px 0;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e5e7eb;
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* Article / news show */
.article-hero {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 32px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.article-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.article-kicker::before { content: '✳'; color: var(--yellow); font-size: 14px; }
.article-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 10px;
}
.article-subtitle {
  font-size: 17px;
  color: #6b7280;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-bar {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 auto 36px;
}
.article-body {
  font-size: 17px;
  line-height: 1.85;
  color: #374151;
  max-width: 760px;
  margin: 0 auto;
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2, .article-body h3 { color: var(--navy); font-weight: 800; margin: 1.6em 0 .6em; }
.article-body img { max-width: 100%; border-radius: 12px; margin: 1em 0; }
.article-body a { color: var(--teal); text-decoration: underline; }
.article-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}

/* Paginação com tema da marca */
.pagination .page-link {
  color: var(--teal);
  border-color: #d1cfc5;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px !important;
  margin: 0 2px;
}
.pagination .page-link:hover {
  background: #e0f7f5;
  color: var(--teal);
  border-color: var(--teal);
}
.pagination .page-item.active .page-link {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.pagination .page-item.disabled .page-link {
  color: #9ca3af;
  border-color: #e5e7eb;
}

/* Alertas com tema */
.alert-success {
  background: #e0f7f5;
  border-color: rgba(0,184,169,.3);
  color: #005f56;
}
.alert-danger {
  background: #fff0f0;
  border-color: rgba(229,62,62,.25);
  color: #9b1c1c;
}
.alert-info {
  background: #eef2ff;
  border-color: rgba(55,48,163,.2);
  color: #3730a3;
}
.alert-warning {
  background: #fff8dc;
  border-color: rgba(245,200,66,.4);
  color: #7a5b00;
}

/* Tabelas */
.table > :not(caption) > * > * {
  background: transparent;
}
.table thead th {
  border-bottom: 2px solid rgba(0,0,0,.05);
}
.table > tbody > tr:hover > td {
  background: rgba(0,184,169,.04);
}

/* Modais */
.modal-content {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

/* Inputs/selects globais */
.form-control, .form-select {
  border-color: #d1cfc5;
  background-color: #faf9f5;
}
.form-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}

/* Re-skin Bootstrap default button colors to brand palette */
.site-main .btn-primary,
.site-main .btn-primary:focus {
  background-color: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-primary:hover {
  background-color: #009e96;
  border-color: #009e96;
  color: #fff;
}
.site-main .btn-success,
.site-main .btn-success:focus {
  background-color: #2d9e6b;
  border-color: #2d9e6b;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-success:hover {
  background-color: #24845a;
  border-color: #24845a;
}
.site-main .btn-warning,
.site-main .btn-warning:focus {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-danger,
.site-main .btn-danger:focus {
  background-color: #e53e3e;
  border-color: #e53e3e;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-secondary,
.site-main .btn-secondary:focus {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-outline-primary {
  color: var(--teal);
  border-color: var(--teal);
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-outline-primary:hover {
  background-color: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.site-main .btn-info,
.site-main .btn-info:focus {
  background-color: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
}
.site-main .btn-info:hover {
  background-color: #2a1d66;
  border-color: #2a1d66;
}
/* Card headers using Bootstrap bg utility */
.site-main .card-header.bg-primary { background: linear-gradient(135deg, var(--teal), #007a72) !important; }
.site-main .card-header.bg-success { background: linear-gradient(135deg, #2d9e6b, #1a7a50) !important; }
.site-main .card-header.bg-warning { background: linear-gradient(135deg, #d4a300, #b88400) !important; }
.site-main .card-header.bg-info    { background: linear-gradient(135deg, var(--purple), #2a1d66) !important; }
.site-main .card-header.bg-danger  { background: linear-gradient(135deg, #e53e3e, #c53030) !important; }
