/* ================================================
   GATOCENTRISMO — Design System
   Versão: 1.0
================================================ */

/* ─── CSS Variables ───────────────────────────── */
:root {
  /* Brand Colors */
  --pink:         #E4115A;
  --pink-hover:   #c40f4f;
  --pink-light:   #F9A4C5;
  --pink-pale:    rgba(228, 17, 90, 0.12);
  --pink-glow:    rgba(228, 17, 90, 0.25);
  --dark:         #1F1F1F;
  --dark-card:    #272727;
  --dark-surface: #2E2E2E;
  --dark-border:  rgba(255, 255, 255, 0.10);
  --dark-border2: rgba(255, 255, 255, 0.06);
  --white:        #FFFFFF;
  --peach:        #F4B07A;
  --pink-soft:    #F9A4C5;
  --sand:         #F4F1EF;
  --sand-dark:    #E8E4DF;
  --green:        #6DC6A4;
  --green-pale:   rgba(109, 198, 164, 0.15);

  /* Text */
  --t-dark:        #FFFFFF;
  --t-dark-muted:  rgba(255, 255, 255, 0.62);
  --t-dark-subtle: rgba(255, 255, 255, 0.38);
  --t-light:       #1F1F1F;
  --t-light-muted: rgba(31, 31, 31, 0.62);

  /* Typography */
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --cont:   1200px;
  --cont-p: 24px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:   0 2px 8px  rgba(0,0,0,0.08);
  --sh-md:   0 8px 24px rgba(0,0,0,0.12);
  --sh-lg:   0 20px 56px rgba(0,0,0,0.18);
  --sh-pink: 0 8px 28px var(--pink-glow);

  /* Z-index */
  --z-nav:   1000;
  --z-menu:  999;
  --z-float: 500;

  /* Transitions */
  --ease:    0.22s ease;
  --ease-lg: 0.35s ease;

  /* Nav height */
  --nav-h: 72px;
}

/* ─── Reset & Base ────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t-light);
  background-color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); border: none; background: none; cursor: pointer; }
input, textarea { font-family: var(--font); }

/* ─── Container ───────────────────────────────── */
.container {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 0 var(--cont-p);
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), opacity var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--sh-pink);
}
.btn-primary:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 12px 32px var(--pink-glow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #111; transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(31,31,31,0.3);
}
.btn-outline-dark:hover { border-color: var(--dark); background: rgba(31,31,31,0.05); }

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

.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── Tags / Badges ───────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  color: var(--pink);
  margin-bottom: 16px;
}
.tag-white {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.tag-green {
  background: var(--green-pale);
  color: var(--green);
}

/* ─── Section headings ────────────────────────── */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.72;
  max-width: 620px;
  margin-top: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }
.section-header.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

/* ─── Animate on scroll — delays handled by Motion One ── */

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(228,17,90,0.12), 0 4px 24px rgba(228,17,90,0.07);
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 1px 0 rgba(228,17,90,0.18), 0 6px 32px rgba(228,17,90,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Footer: logo sobre fundo escuro — inverte para branco */
.logo-img-footer {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(31,31,31,0.65);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  background: rgba(31,31,31,0.06);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-social {
  display: flex;
  gap: 8px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  color: rgba(31,31,31,0.5);
  transition: color var(--ease), background var(--ease);
}
.nav-social a:hover {
  color: var(--dark);
  background: rgba(31,31,31,0.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--ease);
}
.hamburger:hover { background: rgba(31,31,31,0.06); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 14, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-menu);
  padding: 32px var(--cont-p);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease,
              visibility 0s linear 0.38s;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease,
              visibility 0s;
}
.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
  display: block;
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-menu a:hover { color: var(--pink); padding-left: 8px; }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }
.mobile-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  color: var(--white);
  border: none;
  padding: 0;
  font-size: 0;
}
.mobile-social a:hover { background: var(--pink); }

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ── Video background ─────────────────── */
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  pointer-events: none;
}

/* Gradient: opaque white left (text) → transparent right (vídeo aparece) */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,1.00)  0%,
    rgba(255,255,255,0.96) 30%,
    rgba(255,255,255,0.60) 58%,
    rgba(255,255,255,0.08) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 80px;
  width: 100%;
}

/* Hero text */
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.badge-outline {
  border: 1.5px solid rgba(31,31,31,0.22);
  color: var(--t-light-muted);
  background: rgba(255,255,255,0.85);
}
.badge-fill {
  background: var(--pink-pale);
  border: 1.5px solid rgba(228,17,90,0.35);
  color: var(--pink);
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-title em {
  color: var(--pink);
  font-style: normal;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--t-light-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero video card */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--sand-dark);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  box-shadow: var(--sh-md);
  transition: transform var(--ease-lg), box-shadow var(--ease-lg);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--sand) 0%, #f0e3e9 50%, var(--pink-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(228,17,90,0.08) 0%, transparent 65%);
}
.video-cat-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.18;
}
.play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: var(--pink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--sh-pink);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.play-btn:hover {
  background: var(--pink-hover);
  transform: scale(1.1);
  box-shadow: 0 16px 40px var(--pink-glow);
}
.play-btn svg { margin-left: 4px; }

.video-caption {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t-light-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--sand-dark);
  background: rgba(255,255,255,0.95);
}
.video-caption svg { flex-shrink: 0; color: var(--pink); }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--sand-dark);
  box-shadow: var(--sh-sm);
}
.stat-item {
  background: rgba(255,255,255,0.92);
  padding: 16px 12px;
  text-align: center;
}
.stat-value {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--t-light-muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(31,31,31,0.18);
  color: rgba(31,31,31,0.4);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  animation: bounce 2.2s ease infinite;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.scroll-arrow:hover { color: var(--dark); border-color: rgba(31,31,31,0.4); background: var(--white); }

/* ================================================
   ABOUT / GATOCENTRISMO
================================================ */
.section-about {
  background: var(--sand);
  padding: var(--sp-2xl) 0;
}

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

.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--t-light-muted);
  margin-bottom: 18px;
}
.about-content p:last-of-type { margin-bottom: 28px; }

.feature-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--t-light);
  border: 1.5px solid var(--sand-dark);
  box-shadow: var(--sh-sm);
}

/* About visual */
.about-visual {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-card {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1F1F1F 0%, #2d1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}
.about-img-placeholder svg { opacity: 0.3; }

.about-quote-card {
  border-radius: var(--r-md);
  background: var(--pink);
  padding: 20px 24px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  text-align: center;
}
.about-quote-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

/* ================================================
   ATENDIMENTO
================================================ */
.section-services {
  background: var(--dark);
  padding: var(--sp-2xl) 0 calc(var(--sp-2xl) + 96px);
  color: var(--t-dark);
}

/* Bento grid */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--ease), transform var(--ease);
}
.service-card:hover {
  border-color: rgba(228,17,90,0.35);
  transform: translateY(-3px);
}

.service-phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
}

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--t-dark-muted);
  line-height: 1.45;
}
.service-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  margin-top: 4px;
  transition: gap var(--ease);
}
.service-cta:hover { gap: 10px; }

/* Partner cards */
.partners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: 24px 28px;
  transition: border-color var(--ease);
}
.partner-card:hover { border-color: rgba(109,198,164,0.3); }
.partner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.partner-card h4 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.partner-card p { font-size: 13px; color: var(--t-dark-muted); line-height: 1.5; }

/* ================================================
   RESGATE CTA
================================================ */
.section-resgate {
  background: var(--pink);
  padding: var(--sp-2xl) 0 0;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

/* Onda de transição */
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.wave-top svg {
  display: block;
  width: 100%;
  height: 64px;
}
@media (max-width: 640px) {
  .wave-top svg { height: 40px; }
  .section-resgate { padding-top: calc(var(--sp-2xl) + 28px); }
}
.section-resgate::before {
  content: '';
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.section-resgate::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.resgate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
}

/* Coluna direita: área do gato */
.resgate-cat-col {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}

/* Gato: absolutamente posicionado na direita, na frente de tudo */
.resgate-cat {
  position: absolute;
  bottom: -80px;
  right: -20px;
  height: 540px;
  width: auto;
  z-index: 20;
  filter: drop-shadow(-10px 16px 36px rgba(0,0,0,0.30));
  user-select: none;
  pointer-events: none;
}

.resgate-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}

.resgate-grid h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.resgate-grid > div > p {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 20px;
}

.resgate-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.resgate-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.9;
}
.resgate-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.resgate-stat-block {
  text-align: center;
  flex-shrink: 0;
}
.resgate-big-num {
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.2);
}
.resgate-big-label {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.6;
  text-align: center;
  margin-top: 4px;
}

/* ================================================
   COMPARISON
================================================ */
.section-comparison {
  background: var(--white);
  padding: var(--sp-2xl) 0;
  position: relative;
  z-index: 25;
}

.comparison-table {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--sand-dark);
  margin-bottom: 40px;
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.comp-col-dog,
.comp-col-cat {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.comp-col-dog { background: var(--sand); color: var(--t-light); border-right: 1.5px solid var(--sand-dark); }
.comp-col-cat { background: var(--pink); color: var(--white); }

.comp-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-col-cat .comp-icon { background: rgba(255,255,255,0.2); }

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--sand-dark);
}
.comp-row:nth-child(odd) .comp-cell-dog { background: var(--white); }
.comp-row:nth-child(odd) .comp-cell-cat { background: #fef0f5; }
.comp-row:nth-child(even) .comp-cell-dog { background: #fafafa; }
.comp-row:nth-child(even) .comp-cell-cat { background: #fce8ef; }

.comp-cell-dog,
.comp-cell-cat {
  padding: 20px 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--t-light);
}
.comp-cell-dog { border-right: 1px solid var(--sand-dark); color: var(--t-light-muted); }
.comp-cell-cat { font-weight: 600; color: var(--dark); }

.comparison-footer {
  text-align: center;
}
.comparison-footer p {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--t-light);
}

/* ================================================
   PREVENTION
================================================ */
.section-prevention {
  background: var(--sand);
  padding: var(--sp-2xl) 0;
}
.prevention-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.prevention-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prevention-main-card {
  border-radius: var(--r-xl);
  background: var(--dark);
  padding: 48px 36px;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--dark-border);
}
.prevention-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}
.prevention-main-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.prevention-main-card p { font-size: 14px; color: var(--t-dark-muted); line-height: 1.6; }

.prevention-mini-card {
  border-radius: var(--r-md);
  background: var(--white);
  padding: 20px 24px;
  border: 1.5px solid var(--sand-dark);
  display: flex;
  align-items: center;
  gap: 16px;
}
.prevention-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.prevention-mini-card strong { font-size: 15px; font-weight: 800; display: block; margin-bottom: 2px; }
.prevention-mini-card span { font-size: 13px; color: var(--t-light-muted); }

.prevention-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--t-light-muted);
  margin-bottom: 18px;
}

.quote-box {
  background: var(--pink);
  border-radius: var(--r-md);
  padding: 20px 24px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.quote-box::before {
  content: '"';
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

/* ================================================
   HOW IT WORKS
================================================ */
.section-how {
  background: var(--dark);
  padding: var(--sp-2xl) 0;
  color: var(--white);
}
.section-how .section-subtitle { color: var(--t-dark-muted); }

/* Steps bento */
.steps-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
}
.steps-bento::after {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(25% + 24px);
  right: calc(25% + 24px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dark-border), transparent);
  pointer-events: none;
}

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--ease), transform var(--ease);
}
.step-card:hover { border-color: rgba(228,17,90,0.3); transform: translateY(-3px); }

.step-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 16px;
}
.step-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.step-card p { font-size: 13px; color: var(--t-dark-muted); line-height: 1.6; }

.emergency-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-left: 3px solid #FFB020;
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--t-dark-muted);
}
.emergency-note strong { color: #FFB020; }
.emergency-note svg { flex-shrink: 0; color: #FFB020; }

.how-cta { text-align: center; }

/* ================================================
   TEAM
================================================ */
.section-team {
  background: var(--white);
  padding: var(--sp-2xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.team-card {
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: row;
}
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.team-photo {
  flex: 0 0 42%;
  aspect-ratio: 1 / 1;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5edf2 0%, #fce8ef 100%);
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-light-muted);
}

.team-info { padding: 28px 28px 28px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.team-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-crmv {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: rgba(228,17,90,.08);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.team-info p { font-size: 13px; color: var(--t-light-muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.team-seals { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--green-pale);
  color: var(--green);
  letter-spacing: 0.04em;
}

.cat-friendly-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--sand) 0%, #ede8e3 100%);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1.5px solid var(--sand-dark);
}
.cfp-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.cfp-logo-wrap {
  flex-shrink: 0;
  width: 180px;
}
.cfp-logo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
  mix-blend-mode: multiply;
}
.cat-friendly-banner h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.cat-friendly-banner p { font-size: 14px; color: var(--t-light-muted); line-height: 1.65; }

/* ================================================
   BLOG
================================================ */
.section-blog {
  background: var(--sand);
  padding: var(--sp-2xl) 0;
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--sand-dark);
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.blog-card.featured { grid-row: span 2; }
.blog-card.featured .blog-img { height: 280px; }
.blog-card:last-child {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-card:last-child .blog-img { width: 300px; flex-shrink: 0; height: auto; min-height: 200px; }
.blog-card:last-child .blog-content { flex: 1; }

.blog-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-img-placeholder {
  width: 100%;
  height: 100%;
}
.blog-img-1 { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-soft) 100%); }
.blog-img-2 { background: linear-gradient(135deg, var(--peach) 0%, #ffe8d4 100%); }
.blog-img-3 { background: linear-gradient(135deg, var(--green) 0%, #a8e6cf 100%); }
.blog-img-4 { background: linear-gradient(135deg, #2a2a3e 0%, #1F1F1F 100%); }
.blog-img-5 { background: linear-gradient(135deg, var(--pink) 0%, var(--dark) 100%); }
.blog-img-6 { background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%); }

.blog-tag-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.92);
  color: var(--dark);
}

.blog-content {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-content h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--t-light);
}
.blog-card.featured .blog-content h3 { font-size: 20px; }
.blog-card:last-child .blog-content h3 { font-size: 20px; }
.blog-content p {
  font-size: 14px;
  color: var(--t-light-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
}
.blog-link:hover { gap: 8px; }

/* ================================================
   FAQ
================================================ */
.section-faq {
  background: var(--dark);
  padding: var(--sp-2xl) 0;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.faq-photo { aspect-ratio: 16/9; overflow: hidden; }
.faq-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.faq-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}
.faq-question { font-size: 16px; font-weight: 800; color: var(--t-dark); line-height: 1.4; }
.faq-answer   { font-size: 14px; color: var(--t-dark-muted); line-height: 1.65; }

/* ================================================
   LOCATION
================================================ */
.section-location {
  background: var(--dark);
  padding: var(--sp-2xl) 0;
  color: var(--white);
}

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

.location-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  margin-top: 8px;
}
.location-coverage {
  font-size: 15px;
  color: var(--t-dark-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  border: 1px solid var(--dark-border);
}
.info-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.info-item span { font-size: 14px; color: var(--t-dark-muted); line-height: 1.55; }

.social-section h4 { font-size: 14px; font-weight: 600; color: var(--t-dark-muted); margin-bottom: 12px; }
.social-btns { display: flex; gap: 8px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--dark-border);
  color: var(--white);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.social-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.social-btn.instagram:hover { border-color: rgba(228,17,90,0.4); }

/* Map placeholder */
.map-card {
  border-radius: var(--r-xl);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.map-bg {
  flex: 1;
  background:
    radial-gradient(circle at 30% 40%, rgba(228,17,90,0.07) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(109,198,164,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #1a1a2e 0%, #1F1F1F 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin-cluster {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map-pin {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--sh-pink);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: var(--sh-pink); }
  50% { box-shadow: 0 0 0 12px rgba(228,17,90,0.12), var(--sh-pink); }
}
.map-cities {
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.map-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.map-footer span { font-size: 13px; color: var(--t-dark-muted); }
.map-footer a {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
}
.map-footer a:hover { gap: 8px; }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: #111111;
  color: var(--white);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: var(--t-dark-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-crmv {
  font-size: 12px;
  color: var(--t-dark-subtle);
  font-weight: 600;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-dark-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-col .btn { margin-top: 16px; justify-content: center; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--t-dark-subtle); }
.footer-bottom a { color: var(--t-dark-muted); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--white); }

/* ================================================
   FLOATING WHATSAPP
================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-float);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}
.whatsapp-float span.label {
  white-space: nowrap;
  transition: opacity var(--ease), max-width var(--ease);
}

/* ================================================
   RESPONSIVE — Tablet (768px)
================================================ */
@media (max-width: 1024px) {
  :root { --sp-2xl: 72px; }

  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-badges, .hero-ctas { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { position: static; }

  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3) { grid-column: span 2; }

  .resgate-grid { grid-template-columns: 1fr; }
  .resgate-stat-block { display: none; }
  .resgate-cat-col { display: none; }

  .prevention-grid { grid-template-columns: 1fr; gap: 40px; }
  .prevention-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .prevention-main-card { grid-column: span 2; }

  .steps-bento { grid-template-columns: repeat(2, 1fr); }
  .steps-bento::after { display: none; }

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-card { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

/* ================================================
   RESPONSIVE — Mobile (640px)
================================================ */
@media (max-width: 640px) {
  :root {
    --sp-2xl: 64px;
    --sp-xl:  48px;
    --cont-p: 20px;
    --nav-h:  64px;
  }

  /* ── Texto: nunca vazar lateralmente ── */
  html, body { overflow-x: hidden; max-width: 100%; }
  p, h1, h2, h3, h4, li, span {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* ── Correções de overflow específicas ── */
  .about-quote-card { overflow: hidden !important; }
  .section-resgate::before,
  .section-resgate::after { display: none; }
  .blog-slider-wrap { overflow-x: hidden; }
  .cursor-glow      { display: none; }

  /* ── Containers nunca transbordam ── */
  .container        { overflow-x: hidden; }
  .about-grid,
  .prevention-grid  { max-width: 100%; overflow: hidden; }
  .about-content,
  .about-visual,
  .prevention-content,
  .prevention-visual { width: 100%; max-width: 100%; min-width: 0; }

  /* ── Seções: mais respiro interno ── */
  .section-about,
  .section-services,
  .section-comparison,
  .section-prevention,
  .section-how,
  .section-team,
  .section-blog,
  .section-location { padding-top: 56px; padding-bottom: 56px; }

  /* ── Hero: mais espaço interno ── */
  .hero-inner { padding: 48px 0 56px; }
  .hero-title  { font-size: clamp(30px, 9vw, 42px); }

  /* ── Blog grid legado ── */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-row: auto; }
  .blog-card:last-child { flex-direction: column; }
  .blog-card:last-child .blog-img { width: 100%; height: 180px; }
  .blog-card:last-child { grid-column: auto; }

  /* ── Blog slider: header alinhado, menos gap ── */
  .section-blog .section-header.split {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }
  .section-blog .section-header .section-title { font-size: clamp(22px, 6vw, 30px); }
  .blog-slider-wrap { margin-top: 24px; }
  .blog-slider { padding: 8px 20px 4px; }
  .blog-slider .blog-card { flex: 0 0 calc(100vw - 56px); max-width: calc(100vw - 56px); }

  /* ── Services ── */
  .services-bento { grid-template-columns: 1fr; }
  .service-card:nth-child(3) { grid-column: auto; }
  .service-card { padding: 24px 20px; }
  .partners-row { grid-template-columns: 1fr; }

  /* ── Comparison ── */
  .comp-cell-dog, .comp-cell-cat { padding: 14px 16px; font-size: 13px; }
  .comp-col-dog,  .comp-col-cat  { padding: 14px 16px; font-size: 13px; }

  /* ── Steps ── */
  .steps-bento { grid-template-columns: 1fr; }
  .step-card { padding: 22px 20px; }

  /* ── Location: social buttons não cortam ── */
  .social-btns { flex-wrap: wrap; gap: 8px; }
  .social-btn  { flex: 1 1 auto; justify-content: center; min-width: 140px; }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Stat items ── */
  .hero-stats { grid-template-columns: 1fr; gap: 0; }
  .stat-item  { border-top: 1px solid var(--dark-border); }

  /* ── WhatsApp float ── */
  .whatsapp-float span.label { display: none; }
  .whatsapp-float { padding: 14px; }

  /* ── Cat friendly / Prevention ── */
  .cat-friendly-banner { grid-template-columns: 1fr; text-align: center; }
  .cfp-icon { margin: 0 auto; }
  .prevention-visual { grid-template-columns: 1fr; }
  .prevention-main-card { grid-column: auto; }

  /* ── Section headers ── */
  .section-header.split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-title    { font-size: clamp(26px, 7.5vw, 36px); }
  .section-subtitle { font-size: 15px; }
}

/* ─── Focus & Accessibility ───────────────────── */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim], [data-anim="left"], [data-anim="right"], [data-anim="scale"], [data-anim="fade"],
  .hero-text .hero-badges, .hero-text .hero-title, .hero-text .hero-subtitle,
  .hero-text .hero-ctas, .hero-visual, .hero-stats .stat-item,
  .mobile-menu a, .mobile-menu .btn, .mobile-menu .mobile-social { opacity: 1 !important; transform: none !important; }
}

/* ================================================
   MOBILE UX — Touch & Interaction Improvements
================================================ */

/* Remove 300ms tap delay on interactive elements */
.btn, .service-cta, .nav-logo, .social-btn, .slider-btn,
.hamburger, .whatsapp-float, .blog-card, a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Touch active feedback (Motion One also handles, CSS is instant fallback) */
@media (hover: none) {
  /* Disable hover transforms that don't work well on touch */
  .blog-card:hover          { transform: none; }
  .blog-card:hover .blog-img img { transform: none; }
  .team-card:hover          { transform: none; }
  .partner-card:hover       { transform: none; }
  .step-card:hover          { background: transparent; }
  .info-item:hover          { transform: none; }
  .feature-pill:hover       { transform: none; box-shadow: none; border-color: inherit; }
  .prevention-mini-card:hover { transform: none; box-shadow: none; }
  /* Visual tap feedback */
  .btn:active               { opacity: 0.82; }
  .service-card:active      { box-shadow: 0 0 0 1px rgba(228,17,90,0.25), 0 12px 32px rgba(0,0,0,0.22); }
}

/* Mobile: ensure cfp logo fits properly */
@media (max-width: 640px) {
  .cfp-logo-wrap             { width: 130px; margin: 0 auto 4px; }

  /* Larger touch targets for service CTA */
  .service-cta               { padding: 12px 0; display: flex; align-items: center; gap: 6px; }

  /* Team cards: flip to vertical on mobile */
  .team-grid                 { grid-template-columns: 1fr; }
  .team-card                 { flex-direction: column; }
  .team-photo                { flex: none; width: 100%; min-height: 0; aspect-ratio: 1 / 1; }
  .team-photo img            { position: absolute; }
  .team-info                 { padding: 20px 20px 24px; }

  /* Partner card: better spacing on mobile */
  .partner-card              { padding: 20px; }
  .partner-card h4           { font-size: 16px; }
  .partner-card p            { font-size: 13px; }

  /* WhatsApp float: clear from content */
  .whatsapp-float            { bottom: 20px; right: 16px; }

  /* Blog card image height on mobile */
  .blog-slider .blog-card .blog-img { height: 180px; }

  /* Better tap targets on nav */
  .mobile-menu a             { padding: 14px 0; font-size: 20px; }
  .mobile-menu               { padding: 88px 28px 32px; }
}

/* ================================================
   SCROLL PROGRESS BAR
================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink) 0%, #ff6b9d 60%, var(--pink-light) 100%);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(228,17,90,0.55), 0 0 4px rgba(228,17,90,0.3);
  transition: width 80ms linear;
  pointer-events: none;
}

/* ================================================
   GLASS BUTTONS
================================================ */
/* Base: position relativa para o shimmer */
.btn { position: relative; overflow: hidden; }

/* Shimmer sweep no hover do botão primário */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -70%;
  width: 40%;
  height: 220%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-22deg);
  transition: left 0s;
  pointer-events: none;
}
.btn-primary:hover::after {
  left: 140%;
  transition: left 0.65s ease;
}

/* Botão primário com glass sutil */
.btn-primary {
  background: rgba(228,17,90,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--sh-pink), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: rgba(196,15,79,0.95);
}

/* Botão outline escuro (Saber mais) — glass claro */
.btn-outline-dark {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.85);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.9);
}

/* Botão outline branco (dark sections) — glass escuro */
.btn-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 16px rgba(0,0,0,0.12);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

/* WhatsApp float — glass verde */
.whatsapp-float {
  background: rgba(37,211,102,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ================================================
   ANIMAÇÕES MELHORADAS
================================================ */

/* Motion One handles all scroll animations — CSS sets initial hidden state only */
[data-anim] { opacity: 0; }

/* Float suave na ilustração do card de vídeo */
.video-cat-bg svg {
  animation: gentle-float 5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  50%       { transform: translateY(-14px) rotate(2deg) scale(1.04); }
}

/* WhatsApp float pulsa suavemente */
.whatsapp-float {
  animation: wa-pulse 3.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.18); }
  50%       { box-shadow: 0 8px 28px rgba(37,211,102,0.35), 0 0 0 10px rgba(37,211,102,0.07), inset 0 1px 0 rgba(255,255,255,0.18); }
}

/* Botão primário: shake very subtle on CTA attention */
.hero-ctas .btn-primary {
  animation: cta-breathe 4s ease-in-out infinite;
}
@keyframes cta-breathe {
  0%, 100% { box-shadow: var(--sh-pink), inset 0 1px 0 rgba(255,255,255,0.2); }
  50%       { box-shadow: 0 12px 36px rgba(228,17,90,0.4), inset 0 1px 0 rgba(255,255,255,0.2); }
}
.hero-ctas .btn-primary:hover { animation: none; }

/* Service cards — tilt 3D (controlado por JS, CSS define a transição suave) */
.service-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease, border-color 0.22s, box-shadow 0.22s;
}

/* Step cards hover */
.step-card {
  transition: border-color 0.22s, transform 0.22s ease, background 0.22s;
}
.step-card:hover {
  background: rgba(228,17,90,0.04);
}

/* Blog card hover lift mais pronunciado */
.blog-card {
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-card:hover { transform: translateY(-6px) scale(1.01); }

/* Team card hover */
.team-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); }

/* Partner cards */
.partner-card { transition: border-color 0.22s, transform 0.22s ease; }
.partner-card:hover { transform: translateY(-3px); }

/* Info items on location hover */
.info-item {
  transition: transform 0.2s ease;
  cursor: default;
}
.info-item:hover { transform: translateX(4px); }

/* Scroll arrow bounce melhorado */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* Onda animada em 3 camadas na base de .section-services */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}

.wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 200%;
}
.wave-layer svg {
  width: 50%;
  flex-shrink: 0;
  display: block;
}

/* Camada 3 — mais funda, lenta (18s), mesma direção */
.wave-layer--3 svg { height: 96px; }
.wave-layer--3 { animation: wave-flow 18s linear infinite; }

/* Camada 2 — média, velocidade oposta (13s) */
.wave-layer--2 svg { height: 80px; }
.wave-layer--2 { animation: wave-flow 13s linear infinite reverse; }

/* Camada 1 — frente, rápida (8s), totalmente opaca */
.wave-layer--1 svg { height: 64px; }
.wave-layer--1 { animation: wave-flow 8s linear infinite; }

@keyframes wave-flow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .wave-layer { animation: none; }
}

/* Section tag fade in de baixo */
.tag, .resgate-tag {
  display: inline-block;
  animation: none;
}

/* Count-up não pisca */
.count-up { display: inline-block; will-change: contents; }

/* ================================================
   NOVAS ANIMAÇÕES — FLUIDEZ E MOVIMENTO
================================================ */

/* ─── Directional variants — Motion One handles transforms ── */
[data-anim="left"], [data-anim="right"], [data-anim="scale"], [data-anim="fade"] { opacity: 0; }

/* ─── Hero — Motion One handles entrance animation ── */
.hero-text .hero-badges,
.hero-text .hero-title,
.hero-text .hero-subtitle,
.hero-text .hero-ctas,
.hero-visual { opacity: 0; }

/* ─── will-change para cards com hover transform ── */
.blog-card, .team-card, .step-card, .partner-card { will-change: transform; }

/* ─── Blog: zoom na imagem ao hover ─────────────── */
.blog-img { overflow: hidden; }
.blog-img img,
.blog-img .blog-img-placeholder {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-img img,
.blog-card:hover .blog-img .blog-img-placeholder { transform: scale(1.06); }

/* ─── Feature pill hover ─────────────────────────── */
.feature-pill {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}
.feature-pill:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 18px rgba(0,0,0,0.10);
  border-color: rgba(228,17,90,0.3);
}

/* ─── Prevention mini-card hover ─────────────────── */
.prevention-mini-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}
.prevention-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

/* ─── Comparison row hover highlight ─────────────── */
.comp-row { transition: background 0.18s ease; }
.comp-row:hover .comp-cell-dog { background: #f0f0f0 !important; }
.comp-row:hover .comp-cell-cat { background: #fbd8e5 !important; }

/* ─── Service card: glow accent no hover ─────────── */
.service-card:hover {
  box-shadow: 0 0 0 1px rgba(228,17,90,0.18), 0 20px 48px rgba(0,0,0,0.28);
}

/* ─── Mobile menu — Motion One handles stagger ── */
.mobile-menu a,
.mobile-menu .btn,
.mobile-menu .mobile-social {
  opacity: 0;
  transition: color var(--ease), padding-left var(--ease);
}

/* ─── Cursor glow (desktop only) ─────────────────── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,17,90,0.055) 0%, transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: normal;
  will-change: transform, opacity;
}

/* ─── Step connector line animado ─────────────────── */
.steps-bento::after {
  background: linear-gradient(to right, transparent, rgba(228,17,90,0.25), rgba(228,17,90,0.25), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.steps-bento.visible::after { transform: scaleX(1); }

/* ─── Stat items — Motion One handles stagger ── */
.hero-stats .stat-item { opacity: 0; }

/* ─── Tag: entrada com scale suave ─────────────── */
.section-about .tag,
.section-services .tag,
.section-comparison .tag,
.section-prevention .tag,
.section-team .tag,
.section-blog .tag {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

/* ─── Scroll arrow: usa bounce melhorado ───────── */
.scroll-arrow {
  animation: bounce 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ─── about-quote-card: sutil shimmer no load ── */
.about-quote-card {
  overflow: hidden;
}
.about-quote-card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  animation: quote-shimmer 5s ease infinite 1.5s;
}
@keyframes quote-shimmer {
  0%, 80%, 100% { left: -80%; }
  40%           { left: 130%; }
}

/* ─── Scroll progress bar gradient animado ──── */
.scroll-progress {
  background: linear-gradient(90deg, var(--pink) 0%, #ff6b9d 50%, var(--pink-light) 100%);
  background-size: 200% 100%;
  animation: progress-gradient 3s ease infinite;
}
@keyframes progress-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Section: acento rosa no topo das seções dark ── */
.section-services,
.section-how,
.section-location { position: relative; overflow: hidden; }

.section-services::before,
.section-how::before,
.section-location::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 72px; height: 3px;
  background: var(--pink);
  border-radius: 0 0 4px 4px;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
  z-index: 2;
}
.section-services.section-in-view::before,
.section-how.section-in-view::before,
.section-location.section-in-view::before {
  transform: translateX(-50%) scaleX(1);
}

/* ─── Cursor glow: não aparece em touch/mobile ── */
@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ================================================
   BLOG SLIDER
================================================ */
.section-blog {
  background: var(--sand);
  padding: var(--sp-2xl) 0 0;
  overflow: hidden;
}
.section-blog .container { padding-bottom: 0; }

/* Header com controles */
.blog-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.slider-nav {
  display: flex;
  gap: 6px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(31,31,31,0.18);
  background: var(--white);
  color: var(--t-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  will-change: transform;
}
.slider-btn:hover:not(:disabled) {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: scale(1.08);
}
.slider-btn:disabled { opacity: 0.32; cursor: default; pointer-events: none; }

/* Slider wrap: sai do container para ir até a borda */
.blog-slider-wrap {
  margin-top: 40px;
  padding-bottom: var(--sp-xl);
}

/* Track scrollável */
.blog-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 24px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.blog-slider::-webkit-scrollbar { display: none; }
.blog-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

/* Cards dentro do slider — tamanho fixo uniforme */
.blog-slider .blog-card {
  flex: 0 0 300px;
  max-width: 300px;
  height: 400px;
  scroll-snap-align: start;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  user-select: none;
}
.blog-slider .blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px) scale(1.01); }

.blog-slider .blog-img {
  position: relative;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-slider .blog-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.blog-slider .blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-slider .blog-content {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.blog-slider .blog-content h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--t-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-slider .blog-content p {
  font-size: 13px;
  color: var(--t-light-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Barra de progresso do slider */
.slider-progress-track {
  height: 3px;
  background: var(--sand-dark);
  border-radius: var(--r-full);
  margin-top: 24px;
  overflow: hidden;
}
.slider-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), #ff6b9d);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 0.2s ease;
}

/* Fade-out nas bordas */
.blog-slider-wrap::before,
.blog-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 28px;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.blog-slider-wrap { position: relative; }
.blog-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--sand), transparent);
}
.blog-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--sand), transparent);
}

/* Neutraliza regras do grid antigo que afetam o último card */
.blog-slider .blog-card:last-child {
  flex-direction: column;
  grid-column: auto;
}
.blog-slider .blog-card:last-child .blog-img {
  width: 100%;
  height: 210px;
  min-height: unset;
}
.blog-slider .blog-card:last-child .blog-content { flex: unset; }

/* Responsive */
@media (max-width: 768px) {
  .blog-slider .blog-card { flex: 0 0 280px; max-width: 280px; }
  .blog-header-right .btn { display: none; }
}
@media (max-width: 480px) {
  .blog-slider .blog-card { flex: 0 0 calc(100vw - 48px); max-width: calc(100vw - 48px); }
  .blog-slider { padding: 8px 16px 4px; }
}
