/* ============================================================
   CENTRO DE RECUPERAÇÃO PET — Global Stylesheet
   Veterinária Gabriel Motta · Pelotas/RS
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --gold:        #F9D82E;
  --gold-dark:   #C9A800;
  --gold-light:  #FEF6C0;
  --black:       #0D0D0D;
  --charcoal:    #1E1E1E;
  --slate:       #3A3A3A;
  --mid:         #6B6B6B;
  --soft:        #A8A8A8;
  --off-white:   #F8F7F2;
  --white:       #FFFFFF;
  --whatsapp:    #25D366;
  --whatsapp-dk: #1DA851;

  --font-display: 'DM Sans', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --shadow-gold: 0 8px 32px rgba(249,216,46,.25);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-width:  1120px;
  --section-py: clamp(40px, 6vw, 80px);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);   /* FIX: era var(--charcoal) — fundo e texto iguais */
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--black);
}

.display-lg {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);
}

#servicos-title  { color: var(--off-white); }
#avaliacoes-title { color: var(--off-white); }

.display-md {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
}

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249,216,46,.4);
}

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

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

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-logo img {
  height: 42px;
  width: auto;
  filter: none;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.header-logo-text .name {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.4px;
}
.header-logo-text .sub {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.94);
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: var(--gold); }
.header-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-actions .btn-whatsapp svg { display: none; }
.header-phone {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.94);
  display: none;
  align-items: center;
  gap: 6px;
}
.header-phone svg { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.94);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(72px + clamp(16px, 3vw, 36px));
  padding-bottom: var(--section-py);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,216,46,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(249,216,46,.5);
  color: var(--charcoal);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-dark);
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat .value {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 400;
}

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

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars { color: #F4B400; font-size: 1rem; letter-spacing: 1px; }
.proof-text { font-size: .85rem; color: var(--mid); }
.proof-text strong { color: var(--charcoal); }

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #e8e4d8 0%, #d4cfc2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mid);
  font-size: .85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder svg { opacity: .4; }

.hero-card-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-card-float .icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-card-float .card-text { display: flex; flex-direction: column; gap: 2px; }
.hero-card-float .card-title { font-size: .8rem; font-weight: 600; color: var(--black); }
.hero-card-float .card-sub   { font-size: .72rem; color: var(--mid); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: var(--section-py) 0; }
.section-alt  { background: var(--off-white); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.section-header .section-label { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--mid); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.service-card-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.service-card .arrow {
  font-size: .8rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--transition);
}
.service-card:hover .arrow { gap: 8px; }

.service-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.services-footer { text-align: center; }

/* ============================================================
   ABOUT / GABRIEL
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #e8e4d8 0%, #c9c3b0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mid);
  font-size: .85rem;
  text-align: center;
  padding: 20px;
}

.about-badge-float {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 120px;
}
.about-badge-float .num {
  font-family: var(--font-body);
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}
.about-badge-float .txt {
  font-size: .72rem;
  font-weight: 600;
  opacity: .8;
  display: block;
  margin-top: 4px;
}

.about-content .section-label { display: block; margin-bottom: 12px; }
.about-content h2 { margin-bottom: 16px; }
.about-content > p { margin-bottom: 32px; }

.pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.pillar:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pillar-body h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.pillar-body p { font-size: .88rem; color: var(--slate); line-height: 1.5; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.review-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars { color: #F4B400; font-size: .95rem; letter-spacing: 2px; }

.review-text {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.review-author-info .name { font-size: .85rem; font-weight: 600; color: var(--black); }
.review-author-info .platform { font-size: .72rem; color: var(--mid); }

.reviews-summary {
  text-align: center;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.summary-score {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.summary-right { text-align: left; }
.summary-right .stars { font-size: 1.1rem; display: block; margin-bottom: 4px; }
.summary-right p { font-size: .85rem; color: var(--mid); }

/* --- Reviews: ver mais --- */
.review-hidden { display: none; }

@keyframes reviewFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-entering {
  animation: reviewFadeUp .5s ease forwards;
}
.review-entering:nth-child(1) { animation-delay: 0s;  }
.review-entering:nth-child(2) { animation-delay: .1s; }
.review-entering:nth-child(3) { animation-delay: .2s; }

.reviews-footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  transition: padding var(--transition), opacity var(--transition);
}
.reviews-footer.done {
  padding: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.reviews-show-more {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.72);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 20px;
  transition: color var(--transition);
  line-height: 1;
}
.reviews-show-more:hover { color: var(--white); }

/* ============================================================
   HOURS / LOCATION
   ============================================================ */
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.hours-card, .location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(0,0,0,.06);
}

.hours-card h3, .location-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-list { display: flex; flex-direction: column; gap: 12px; }

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .92rem;
}
.hours-item:last-child { border-bottom: none; padding-bottom: 0; }
.hours-item .day  { font-weight: 600; color: var(--black); }
.hours-item .time { color: var(--slate); }
.hours-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
}

.location-address {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: none;
}

.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--slate);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: all var(--transition);
}
.contact-link:hover { background: var(--gold-light); color: var(--charcoal); }
.contact-link svg { color: var(--gold-dark); flex-shrink: 0; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
  background: var(--charcoal);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,216,46,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 24px;
}
.cta-section .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-brand .name {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-crmv { color: rgba(255,255,255,.4); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-float-btn {
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--white);
  position: relative;
}
.whatsapp-float-btn:hover {
  background: var(--whatsapp-dk);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.whatsapp-float-btn .pulse {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.8); opacity: 0;  }
}

.whatsapp-float-label {
  background: var(--white);
  color: var(--charcoal);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { justify-content: center; }
  .hero-img-wrap     { max-width: 380px; }
  .hero-img-main     { aspect-ratio: 3/4; }
  .hero-card-float   { display: none; }
  .about-inner       { grid-template-columns: 1fr; }
  .about-img-wrap    { max-width: 360px; margin-inline: auto; }
  .about-img-main    { aspect-ratio: 3/4; }
  .about-badge-float { right: 0; }
  .hours-inner       { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .header-nav        { display: none; }
  .menu-toggle       { display: flex; }
  .inner-layout      { grid-template-columns: 1fr; }
  .inner-sidebar     { order: -1; }

  .header-inner { min-height: 70px; }
  .header-logo  { gap: 12px; }
  .header-logo-text .name { font-size: .95rem; }
  .header-logo-text .sub  { font-size: .72rem; }
}

@media (max-width: 600px) {
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; }
  .hero-stats        { gap: 16px; }
  .hero-ctas         { flex-direction: column; }
  .hero-ctas .btn    { width: 100%; justify-content: center; }
  .hours-card, .location-card { padding: 20px; }

  .section        { padding: 40px 0; }
  .section-header { margin-bottom: 20px; }

  .header-inner { min-height: 76px; }
  .header-logo img { height: 38px; }
  .header-logo-text .name { font-size: .95rem; font-weight: 700; }
  .header-logo-text .sub  { font-size: .78rem; }
  .header-actions    { display: none; }

  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .benefits-grid { grid-template-columns: 1fr; }
  .gender-tabs   { flex-direction: column; }
}

@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }

  .header-inner { min-height: 68px; gap: 8px; }
  .header-logo  { gap: 8px; }
  .header-logo img { height: 34px; }
  .header-logo-text .name { font-size: .82rem; }
  .header-logo-text .sub  { font-size: .68rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2)  { transition-delay: .1s; }
.fade-up:nth-child(3)  { transition-delay: .1s; }
.fade-up:nth-child(4)  { transition-delay: .1s; }
.fade-up:nth-child(5)  { transition-delay: .1s; }
.fade-up:nth-child(6)  { transition-delay: .1s; }
.fade-up:nth-child(7)  { transition-delay: .1s; }
.fade-up:nth-child(8)  { transition-delay: .1s; }
.fade-up:nth-child(9)  { transition-delay: .1s; }
.fade-up:nth-child(10) { transition-delay: .1s; }
.fade-up:nth-child(11) { transition-delay: .1s; }
.fade-up:nth-child(12) { transition-delay: .1s; }

/* ============================================================
   INNER PAGE BASE (páginas de serviço)
   ============================================================ */
.page-hero {
  padding-top: calc(80px + 56px);
  padding-bottom: 60px;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,216,46,.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 680px;
  line-height: 1.2;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.page-hero .hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.page-hero .hero-proof .stars { font-size: .9rem; }

/* Inner page layout: conteúdo + sidebar */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.inner-content { min-width: 0; }

.inner-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  margin-top: 40px;
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content p {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Sidebar */
.inner-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-card .btn:last-of-type { margin-bottom: 0; }

.sidebar-hours { display: flex; flex-direction: column; gap: 10px; }
.sidebar-hours li {
  font-size: .88rem;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.sidebar-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-hours li span:first-child { font-weight: 600; color: var(--black); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open  { background: var(--gold-light); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold-dark);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.7;
}
.faq-answer.open { max-height: 500px; padding: 0 24px 20px; }

/* ============================================================
   STEPS LIST
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.step:last-child { border-bottom: none; }

.step-num {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.step-body h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.step-body p  { font-size: .88rem; color: var(--slate); line-height: 1.5; }

/* ============================================================
   INCLUDES CHECKLIST
   ============================================================ */
.includes-list { display: flex; flex-direction: column; gap: 12px; }

.includes-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
}
.includes-item .check {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--black);
  font-weight: 700;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.benefit-item {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,.07);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all var(--transition);
}
.benefit-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.benefit-item .icon { font-size: 1.3rem; flex-shrink: 0; }
.benefit-item p { font-size: .88rem; color: var(--slate); line-height: 1.5; }
.benefit-item p strong { color: var(--black); display: block; margin-bottom: 2px; }

/* ============================================================
   GENDER TABS (castração)
   ============================================================ */
.gender-tabs-wrapper { margin-bottom: 24px; }

.gender-tabs {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,.08);
  margin-bottom: 0;
}
.gender-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  font-size: .9rem;
  color: var(--slate);
  transition: all var(--transition);
  border: none;
  font-family: var(--font-body);
}
.gender-tab.active {
  background: var(--gold);
  color: var(--black);
}
.gender-tab:hover:not(.active) { background: var(--off-white); }

.gender-content { display: none; }
.gender-content.active { display: block; }

.gender-box {
  padding: 28px;
  background: var(--off-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1.5px solid rgba(0,0,0,.08);
  border-top: none;
}
.gender-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.gender-box p {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}
.gender-box p:last-child { margin-bottom: 0; }

/* ============================================================
   NOTICE / ALERT BOX
   ============================================================ */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice-gold {
  background: var(--gold-light);
  border-left: 4px solid var(--gold-dark);
  color: var(--charcoal);
}
.notice-dark {
  background: var(--charcoal);
  border-left: 4px solid var(--gold);
  color: rgba(255,255,255,.85);
}
.notice .notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }