/* =====================================================
   PATINHAS PARA ADOÇÃO — styles.css
   =====================================================
   Para alterar as cores, edite as variáveis no :root.
   ===================================================== */

/* ==================== VARIÁVEIS ==================== */
:root {
  --color-bg:           #F7F4F4;
  --color-white:        #FFFFFF;
  --color-pink:         #B14F73;
  --color-pink-dark:    #943E5F;
  --color-orange:       #F0A329;
  --color-orange-dark:  #D98D1D;
  --color-coral:        #C85B52;
  --color-text:         #4A3A3F;
  --color-text-soft:    #6B5960;
  --color-border:       #E9D8DD;
  --color-shadow:       rgba(74, 58, 63, 0.12);

  --font-title:         'Nunito', 'Trebuchet MS', Arial, sans-serif;
  --font-body:          'Open Sans', 'Segoe UI', Arial, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 8px var(--color-shadow);
  --shadow-md:   0 4px 20px var(--color-shadow);
  --shadow-lg:   0 8px 40px var(--color-shadow);

  --max-width:   1200px;
  --header-h:    72px;

  --transition:  0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==================== UTILITÁRIOS ==================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 72px;
}

.section--alt {
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-soft);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.75;
}

.section-text {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 600px;
  margin-inline: auto;
  margin-top: 12px;
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-pink);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-pink-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
}
.btn--orange:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
}
.btn--outline:hover {
  background: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-pink);
}
.btn--white:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--coral {
  background: var(--color-coral);
  color: var(--color-white);
}
.btn--coral:hover {
  background: #b34840;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==================== CARDS BASE ==================== */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header__logo-fallback {
  display: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.header__logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-pink);
  line-height: 1.2;
  max-width: 140px;
}

.header__nav {
  flex: 1;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.header__nav-link {
  display: block;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition);
}
.header__nav-link:hover,
.header__nav-link:focus-visible {
  color: var(--color-pink);
  background: rgba(177, 79, 115, 0.08);
}

.header__cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.875rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-left: auto;
}

.header__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 72px;
  background: linear-gradient(135deg, #fff5f8 0%, #fff9f0 100%);
  overflow: hidden;
}

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

.hero__badge {
  display: inline-block;
  background: rgba(177, 79, 115, 0.12);
  color: var(--color-pink);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title em {
  color: var(--color-pink);
  font-style: normal;
}

.hero__text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-soft);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}

.hero__stat-icon {
  font-size: 1.2rem;
}

.hero__stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f5d9e4 0%, #fdecd3 100%);
  box-shadow: var(--shadow-lg);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero__image-wrap--fallback .hero__image {
  display: none;
}

.hero__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: var(--color-pink);
}

.hero__image-wrap:not(.hero__image-wrap--fallback) .hero__image-placeholder {
  display: none;
}

.hero__paw {
  font-size: 4rem;
  opacity: 0.6;
}

.hero__image-placeholder p {
  font-size: 0.9rem;
  opacity: 0.7;
  font-family: var(--font-title);
  font-weight: 700;
}

/* ==================== SOBRE ==================== */
.about__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about__card {
  text-align: center;
}

.about__card .card__icon {
  font-size: 3rem;
  display: block;
  margin-inline: auto;
}

/* ==================== PETS GRID ==================== */
.pets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.pet-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.pet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pet-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f5d9e4 0%, #fdecd3 100%);
}

.pet-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-pink);
}

.pet-card__image-placeholder span {
  font-size: 3.5rem;
  opacity: 0.6;
}

.pet-card__image-placeholder p {
  font-size: 0.8rem;
  opacity: 0.6;
  font-family: var(--font-title);
  font-weight: 700;
}

.pet-card__status {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pet-card__species-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-white);
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.pet-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pet-card__name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
}

.pet-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pet-card__meta-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pet-card__personality {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  font-style: italic;
  margin-top: 4px;
  flex: 1;
}

.pet-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  border-top: 1px solid var(--color-border);
  transition: background var(--transition);
}

.pet-card__btn:hover,
.pet-card__btn:focus-visible {
  background: var(--color-pink-dark);
}

.pet-card__btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: -3px;
}

/* ==================== PROCESSO ==================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: none;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.process__step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-coral));
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(177, 79, 115, 0.35);
}

.process__step-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.process__step-text {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

/* ==================== COMO AJUDAR ==================== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.help-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.help-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.help-card__icon {
  font-size: 2.2rem;
}

.help-card__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

.help-card__text {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  line-height: 1.65;
  flex: 1;
}

.help-card__btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-coral) 60%, var(--color-orange) 100%);
}

.cta-banner__content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-banner__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==================== HISTÓRIAS ==================== */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.story-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.story-card__image-wrap {
  background: linear-gradient(135deg, #f5d9e4 0%, #fdecd3 100%);
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card__image-placeholder {
  font-size: 3.5rem;
  opacity: 0.5;
}

.story-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card__quote {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}

.story-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2rem;
  color: var(--color-pink);
  font-family: var(--font-title);
  line-height: 1;
  opacity: 0.6;
}

.story-card__footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-card__name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.story-card__pet {
  font-size: 0.82rem;
  color: var(--color-pink);
  font-weight: 600;
}

/* ==================== FAQ ==================== */
.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition), color var(--transition);
}

.faq__question:hover {
  background: rgba(177, 79, 115, 0.05);
}

.faq__question:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: -3px;
}

.faq__question[aria-expanded="true"] {
  color: var(--color-pink);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(177, 79, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-pink);
  transition: transform var(--transition), background var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--color-pink);
  color: var(--color-white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__answer.is-open {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.75;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

/* ==================== CONTATO ==================== */
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.contact__btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact__btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}

.contact__btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.contact__btn--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.contact__btn--email {
  background: var(--color-pink);
  color: var(--color-white);
}

.contact__btn-icon {
  font-size: 1.3rem;
}

.contact__info {
  max-width: 500px;
  margin-inline: auto;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact__detail {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.contact__detail-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-pink);
  min-width: 100px;
  flex-shrink: 0;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* ==================== RODAPÉ ==================== */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding-top: 56px;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__logo-fallback {
  font-size: 2.4rem;
}

.footer__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer__slogan {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.footer__nav-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  margin-bottom: 16px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}

.footer__nav-link:hover {
  opacity: 1;
  color: var(--color-orange);
}

.footer__nav-link:focus-visible {
  outline: 2px solid var(--color-orange);
  border-radius: 2px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer__social-link:hover {
  opacity: 1;
}

.footer__location,
.footer__cnpj {
  font-size: 0.82rem;
  opacity: 0.55;
  margin-top: 4px;
}

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom-text {
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ==================== MOBILE NAV ==================== */
@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .header__nav.is-open {
    max-height: 500px;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .header__nav-link {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav-link:last-of-type {
    border-bottom: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .footer__container {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* ==================== FOCO / ACESSIBILIDADE ==================== */
:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

/* Mostrar foco apenas com teclado */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==================== SCROLL SUAVE (FALLBACK) ==================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .card,
  .pet-card,
  .help-card,
  .story-card,
  .faq__answer,
  .header__hamburger-bar,
  .header__nav {
    transition: none;
  }
}
