@import url("https://use.typekit.net/fwl0piq.css");
#navegacao-portais {
  margin: 0;
  padding: 0;
  outline: 0;
  text-decoration: none;
  list-style: none;
  line-height: normal;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  background-color: #ff0000;
  align-content: center;
  z-index: 999;
}
#navegacao-portais a {
  -webkit-transition: all ease 0.25s;
  -moz-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
#navegacao-portais ul {
  margin: 0;
  padding: 0;
  display: inline-table;
  list-style: none;
}
#navegacao-portais ul li {
  display: inline-table;
  text-transform: uppercase;
  margin: 0;
}
#navegacao-portais ul li a {
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
}
#navegacao-portais li {
  padding: 6px 4px;
}
#navegacao-portais li:hover {
  background-color: rgba(51, 51, 51, 0.1254901961);
}
#navegacao-portais li:hover a {
  color: #ffffff;
  opacity: 0.85;
}

@media (min-width: 576px) {
  #navegacao-portais li {
    padding: 6px 10px;
  }
}
:root {
  --color-primary: #d50006;
  --color-primary-soft: #e8807c;
  --color-secondary: #296f5d;
  --color-secondary-soft: #4ea996;
  --color-gray-700: #80888c;
  --color-gray-500: #919ca3;
  --color-gray-200: #c6ced5;
  --color-bg: #ffffff;
  --color-surface: #faf9f9;
  --color-text: #17100d;
  --color-text-soft: #4d4a49;
  --color-lilac: #935496;
  --color-yellow: #feb000;
  --font-heading: "dynapuff-variable", "Trebuchet MS", sans-serif;
  --font-body: "fuzzy-bubbles", "Segoe UI", sans-serif;
  --font-footer: system-ui, -apple-system, Arial, sans-serif;
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 12px 32px rgba(23, 16, 13, 0.08);
  --shadow-strong: 0 22px 42px rgba(23, 16, 13, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.55;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

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

a {
  text-decoration: none;
}

::selection {
  background-color: var(--color-yellow);
  color: var(--color-text);
}

::-moz-selection {
  background-color: var(--color-yellow);
  color: var(--color-text);
}

#navegacao-portais {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  background-color: var(--color-primary);
  z-index: 999;
}
#navegacao-portais a {
  transition: all ease 0.25s;
}
#navegacao-portais ul {
  margin: 0;
  padding: 0;
  display: inline-table;
  list-style: none;
}
#navegacao-portais ul li {
  display: inline-table;
  text-transform: uppercase;
  margin: 0;
}
#navegacao-portais ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
#navegacao-portais li {
  padding: 6px 4px;
}
#navegacao-portais li:hover {
  background-color: rgba(51, 51, 51, 0.125);
}
#navegacao-portais li:hover a {
  opacity: 0.85;
}
@media (min-width: 576px) {
  #navegacao-portais li {
    padding: 6px 10px;
  }
}

.site-header {
  position: absolute;
  top: 40px;
  left: 50% !important;
  right: 0;
  width: 100% !important;
  max-width: 1400px !important;
  z-index: 900;
  padding: 0.6rem 1rem;
  background: transparent;
  transition: background 0.3s;
  transform: translateX(-50%) !important;
}
.site-header.is-scrolled {
  position: fixed;
  top: 10px;
}
.site-header .navbar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(23, 16, 13, 0.1);
}
.site-header .header-brand-scroll {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.site-header.is-logo-visible .header-brand-scroll {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header .header-logo {
  height: 36px;
  width: auto;
}
.site-header .navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--color-text);
  padding: 0.25rem 0.5rem;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.4rem 0.9rem !important;
  border-radius: 999px;
  transition: color 0.25s, background-color 0.25s;
}
.site-header .nav-link:hover, .site-header .nav-link:focus {
  color: var(--color-primary);
  background-color: rgba(213, 0, 6, 0.06);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: url("../images/bg-vermelho.jpg") center/cover no-repeat;
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
}

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

.hero-logo {
  max-width: 380px;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-caolendario {
  max-width: 680px;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-cal-2027 {
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-visual {
  text-align: center;
}

.hero-calendar-wrap {
  position: relative;
}

.hero-calendar {
  width: min(100%, 640px);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(23, 16, 13, 0.22));
}

.nova-chance-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: var(--color-surface);
}

.nova-chance-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.nova-chance-paw {
  width: 42px;
  margin-top: 0.3rem;
}

.nova-chance-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}

.nova-chance-section p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  max-width: 500px;
}

.nova-chance-cta {
  color: var(--color-text) !important;
  font-style: italic;
}

.nova-chance-dog-wrap {
  position: relative;
  display: inline-block;
}

.nova-chance-dog {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(23, 16, 13, 0.15));
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  max-width: 760px;
  margin: 0 auto;
}

.stats-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-soft) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.stats-section .section-title,
.stats-section .section-subtitle {
  color: #fff;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.stat-number-text {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.4rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: var(--color-surface);
}

.step-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon i {
  font-size: 1.6rem;
  color: #fff;
}

.step-number {
  font-size: 2.5rem;
  color: var(--color-gray-200);
  margin-bottom: 0.5rem;
}

.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.dogs-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.dogs-filters {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.filter-input-wrap {
  position: relative;
}
.filter-input-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-500);
  font-size: 1.1rem;
}
.filter-input-wrap .form-control {
  padding-left: 2.8rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  height: 48px;
  transition: border-color 0.25s;
}
.filter-input-wrap .form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(41, 111, 93, 0.12);
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown-trigger {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  background: var(--color-bg);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.25s;
}
.filter-dropdown-trigger:hover, .filter-dropdown-trigger:focus {
  border-color: var(--color-secondary);
}
.filter-dropdown-trigger .filter-dropdown-label {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter-dropdown-trigger .filter-dropdown-arrow {
  transition: transform 0.25s;
}

.filter-dropdown.is-open .filter-dropdown-trigger {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(41, 111, 93, 0.12);
}
.filter-dropdown.is-open .filter-dropdown-arrow {
  transform: rotate(180deg);
}
.filter-dropdown.is-open .filter-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.filter-dropdown-search {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}
.filter-dropdown-search input {
  width: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.filter-dropdown-search input:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.filter-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  max-height: 220px;
  overflow-y: auto;
}
.filter-dropdown-list li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.filter-dropdown-list li:hover, .filter-dropdown-list li.is-active {
  background: rgba(41, 111, 93, 0.08);
  color: var(--color-secondary);
}

.dog-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.dog-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--color-surface);
}

.dog-card-body {
  padding: 1rem 1.25rem;
}

.dog-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.dog-card-unit {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.dog-card-unit i {
  font-size: 0.9rem;
}

.dogs-empty {
  padding: 3rem 1rem;
}
.dogs-empty i {
  font-size: 3rem;
  color: var(--color-gray-200);
  display: block;
  margin-bottom: 1rem;
}
.dogs-empty p {
  font-size: 1.05rem;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background-color: var(--color-surface);
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-quote {
  margin-bottom: 1rem;
}
.testimonial-quote i {
  font-size: 2rem;
  color: var(--color-primary-soft);
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  border-top: 1px solid var(--color-gray-200);
  padding-top: 0.75rem;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-text);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: url("../images/bg-vermelho.jpg") center/cover no-repeat;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(213, 0, 6, 0.82);
}

.cta-card {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-primary-brand {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary-brand:hover, .btn-primary-brand:focus {
  background: rgb(172.2, 0, 4.8507042254);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(213, 0, 6, 0.3);
}

.btn-outline-brand {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  border-top: 4px solid var(--color-primary);
}

.footer-main {
  padding: 3rem 0 2rem;
  font-family: var(--font-footer);
}
.footer-main .footer-logo {
  max-height: 60px;
  margin-bottom: 1rem;
}
.footer-main h6 {
  color: #fff;
  font-family: var(--font-footer);
  margin-bottom: 0.75rem;
}
.footer-main address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.footer-main a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-main a:hover {
  color: var(--color-yellow);
}
.footer-main .vr {
  opacity: 0.2;
  min-height: 80px;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

#btn-topo {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 800;
  box-shadow: 0 4px 14px rgba(213, 0, 6, 0.3);
}
#btn-topo.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#btn-topo:hover {
  background: rgb(162, 0, 4.5633802817);
  transform: translateY(-3px);
}

.floating-icon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

.fi-pos-1 {
  top: 12%;
  left: 88%;
  width: 42px;
}

.fi-pos-2 {
  top: 72%;
  left: 5%;
  width: auto;
}

.fi-pos-3 {
  top: 45%;
  left: 92%;
  width: auto;
}

.fi-pos-4 {
  top: 18%;
  left: 3%;
  width: 44px;
}

.fi-pos-5 {
  top: 65%;
  left: 93%;
  width: 30px;
}

.fi-pos-6 {
  top: 10%;
  left: 90%;
  width: 40px;
}

.fi-pos-7 {
  top: 80%;
  left: 6%;
  width: 36px;
}

.fi-pos-8 {
  top: 35%;
  left: 2%;
  width: 32px;
}

.fi-pos-9 {
  top: 15%;
  left: 94%;
  width: 38px;
}

.fi-pos-10 {
  top: 75%;
  left: 4%;
  width: 44px;
}

.fi-pos-11 {
  top: 20%;
  left: 92%;
  width: 36px;
}

.fi-pos-12 {
  top: 70%;
  left: 3%;
  width: 40px;
}

.fi-pos-13 {
  top: 8%;
  left: 4%;
  width: 34px;
}

.fi-pos-14 {
  top: 85%;
  left: 90%;
  width: 42px;
}

.fi-pos-15 {
  top: 50%;
  left: 95%;
  width: 30px;
}

.fi-pos-16 {
  top: 30%;
  left: 6%;
  width: 38px;
}

.fi-anim-float {
  animation: float-y 4s ease-in-out infinite;
}

.fi-anim-float-2 {
  animation: float-y-2 10s ease-in-out infinite;
}

.fi-anim-float-x {
  animation: float-x 9s ease-in-out infinite;
}

.fi-anim-spin {
  animation: spin-cw 12s linear infinite;
}

@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float-y-2 {
  0%, 100% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
}
@keyframes float-x {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}
@keyframes spin-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes pulse-soft {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes bounce-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 991.98px) {
  .hero-logo {
    max-width: 400px;
    width: 100%;
  }
  .hero-visual {
    margin-top: 2.5rem;
  }
  .hero-calendar {
    width: min(100%, 380px);
  }
  .floating-icon {
    opacity: 0.35;
    width: 24px !important;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-calendar {
    width: min(100%, 300px);
  }
  .stat-card {
    padding: 1rem 0.75rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .filter-dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 60vh;
  }
  .filter-dropdown-menu .filter-dropdown-list {
    max-height: 45vh;
  }
}
@media (max-width: 575.98px) {
  .site-header .header-logo {
    height: 28px;
  }
  .site-header .navbar {
    padding: 0.4rem 1rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
}
#dogModal .modal-content {
  border-radius: 1.25rem;
  border: none;
  overflow: hidden;
}

#dogModal .modal-header {
  border-bottom: 1px solid rgba(213, 0, 6, 0.1);
  padding: 1.25rem 1.5rem;
}
#dogModal .modal-header .modal-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.5rem;
}

#dogModal .modal-body {
  padding: 1.5rem;
}

.dog-modal-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0.75rem;
  background: var(--color-gray-200);
}

.dog-modal-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  margin-bottom: 1rem;
}
.dog-modal-info dt {
  font-weight: 600;
  color: var(--color-gray-700);
  font-size: 0.875rem;
}
.dog-modal-info dt::after {
  content: "";
}
.dog-modal-info dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text);
}

.dog-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.dog-modal-badges .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(41, 111, 93, 0.1);
  color: var(--color-secondary);
}
.dog-modal-badges .badge-item i {
  font-size: 1rem;
}

.dog-modal-tutor {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
}
.dog-modal-tutor h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.dog-modal-tutor h5 i {
  margin-right: 0.35rem;
}
.dog-modal-tutor p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.dog-modal-tutor a {
  color: var(--color-secondary);
  text-decoration: none;
}
.dog-modal-tutor a:hover {
  text-decoration: underline;
}

.dog-modal-history {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
}
.dog-modal-history h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.dog-modal-history h5 i {
  margin-right: 0.35rem;
}
.dog-modal-history p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray-700);
}

.dog-modal-gallery {
  margin-top: 1.5rem;
}
.dog-modal-gallery h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.dog-modal-gallery h5 i {
  margin-right: 0.35rem;
}

.dog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
}

.dog-gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.dog-gallery-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--color-secondary);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox.d-none {
  display: none !important;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/*# sourceMappingURL=custom.css.map */