/* ==========================================================================
   PET CLÍNICA AMIGO FIEL — Design System
   Cores herdadas da identidade física da clínica (laranja), evoluídas para
   um sistema digital premium: grafite para autoridade, off-white para calma,
   laranja reservado para ação e destaque (não para preencher a tela).
   ========================================================================== */

:root{
  /* Cor */
  --orange: #E8753A;
  --orange-dark: #CF5F27;
  --orange-light: #F4A261;
  --ink: #252525;
  --ink-soft: #55504C;
  --bg: #FFFDFC;
  --bg-soft: #FFF3EC;
  --green: #6E8F72;
  --white: #FFFFFF;
  --line: rgba(37,37,37,.09);
  --line-soft: rgba(37,37,37,.06);

  /* Sombra */
  --shadow-sm: 0 2px 10px rgba(37,26,17,.06);
  --shadow-md: 0 14px 34px rgba(37,26,17,.10);
  --shadow-lg: 0 28px 70px rgba(37,26,17,.16);
  --shadow-orange: 0 14px 30px rgba(232,117,58,.30);

  /* Forma */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Tipografia */
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1220px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--font-head); margin: 0; color: var(--ink); letter-spacing: -.01em; }
p{ margin: 0; }
svg{ display: block; }
::selection{ background: var(--orange-light); color: var(--ink); }

.container{ width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Utilitários de tipografia ---------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-dark);
}
.eyebrow::before{
  content: ''; width: 18px; height: 2px; background: var(--orange);
  border-radius: var(--radius-full);
}
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; line-height: 1.15; margin-top: 14px; }
.section-head p{ margin-top: 16px; font-size: 17px; color: var(--ink-soft); }

section{ padding: 96px 0; }
.section-soft{ background: var(--bg-soft); }

/* ---------- Botões ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn svg{ width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary{ position: relative; overflow: hidden; background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(232,117,58,.38); }
.btn-primary::before{
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .65s var(--ease);
}
.btn-primary:hover::before{ left: 130%; }
.btn-outline{ background: transparent; color: var(--ink); border-color: rgba(37,37,37,.18); }
.btn-outline:hover{ border-color: var(--ink); background: rgba(37,37,37,.04); transform: translateY(-2px); }
.btn-dark{ background: var(--ink); color: var(--white); }
.btn-dark:hover{ background: #000; transform: translateY(-2px); }
.btn-whatsapp{ background: #25D366; color: var(--white); }
.btn-whatsapp:hover{ background: #1DA851; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.35); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 11px 20px; font-size: 14px; }

/* ---------- Animação de entrada ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view{ transition-delay: .08s; }
.reveal-delay-2.in-view{ transition-delay: .16s; }
.reveal-delay-3.in-view{ transition-delay: .24s; }
.reveal-delay-4.in-view{ transition-delay: .32s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
  .hero-card-float, .hero-badge-float, .hero-logo-float{ animation: none; }
  .btn-primary::before{ display: none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar{
  background: var(--ink); color: rgba(255,255,255,.82);
  font-size: 13px; font-weight: 500;
}
.topbar .container{ display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a{ display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color .2s; white-space: nowrap; }
.topbar a:hover{ color: var(--orange-light); }
.topbar svg{ width: 14px; height: 14px; color: var(--orange-light); flex-shrink: 0; }

header.header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,252,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
header.header.scrolled{ border-color: var(--line); box-shadow: 0 4px 24px rgba(37,26,17,.06); }

.header-inner{ display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }

.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{ width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-name{ font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -.01em; margin-top: 1px; }
.brand-name span{ color: var(--orange); }
.brand-sub{ font-size: 11.5px; font-weight: 600; letter-spacing: .05em; color: var(--ink-soft); text-transform: uppercase; }

.nav-desktop{ display: none; align-items: center; gap: 6px; }
.nav-desktop a:not(.btn){
  padding: 10px 16px; border-radius: var(--radius-full); font-weight: 600; font-size: 15px;
  color: var(--ink-soft); transition: color .2s, background-color .2s;
}
.nav-desktop a:not(.btn):hover{ color: var(--ink); background: var(--bg-soft); }
.nav-desktop .btn{ margin-left: 10px; }

.menu-toggle{
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: transparent; border: 1px solid var(--line);
  color: var(--ink);
}
.icon-lg{ width: 22px; height: 22px; }

.nav-mobile{
  display: flex; flex-direction: column; gap: 4px;
  max-height: 0; overflow: hidden; padding: 0 20px;
  background: var(--bg); border-top: 1px solid transparent;
  transition: max-height .35s var(--ease), padding .35s var(--ease), border-color .35s;
}
.nav-mobile.open{ max-height: 480px; padding: 16px 20px 22px; border-color: var(--line); }
.nav-mobile-link{ padding: 13px 6px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
.nav-mobile .btn{ margin-top: 14px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  padding: 64px 0 88px;
  background:
    radial-gradient(circle at 88% 8%, rgba(244,162,97,.28), transparent 55%),
    radial-gradient(circle at 6% 92%, rgba(232,117,58,.14), transparent 45%),
    var(--bg);
  overflow: hidden;
}
.hero-inner{ display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hero-copy .eyebrow{ margin-bottom: 20px; }
.hero-copy h1{
  font-size: clamp(34px, 5.4vw, 58px); font-weight: 800; line-height: 1.08;
  letter-spacing: -.02em;
}
.hero-copy h1 em{ font-style: normal; color: var(--orange); }
.hero-copy p{ margin-top: 22px; font-size: 18.5px; color: var(--ink-soft); max-width: 520px; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust-inline{ display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.hero-trust-inline .avatars{ display: flex; }
.hero-trust-inline .avatars span{
  width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--bg);
  background: var(--orange-light); margin-left: -12px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 13px;
}
.hero-trust-inline .avatars span:first-child{ margin-left: 0; }
.hero-trust-inline strong{ display: block; font-family: var(--font-head); font-size: 14px; color: var(--ink); }
.hero-trust-inline small{ color: var(--ink-soft); font-size: 13px; }

.hero-visual{ position: relative; }
.hero-frame{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-width: 460px; margin: 0 auto;
}
.hero-frame img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

.hero-card-float{
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px; max-width: 240px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-card-float .icon-wrap{
  width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-float .icon-wrap svg{ width: 22px; height: 22px; color: var(--orange); }
.hero-card-float strong{ display: block; font-family: var(--font-head); font-size: 14px; }
.hero-card-float span{ font-size: 12.5px; color: var(--ink-soft); }

.hero-badge-float{
  position: absolute; top: 18px; right: -14px; z-index: 3;
  background: var(--ink); color: var(--white); border-radius: var(--radius-full);
  padding: 10px 18px 10px 14px; display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; box-shadow: var(--shadow-md);
  animation: floaty 5.5s ease-in-out infinite; animation-delay: .3s;
}
.hero-badge-float svg{ width: 16px; height: 16px; color: var(--orange-light); }

.hero-logo-float{
  position: absolute; right: -16px; bottom: -16px; z-index: 3;
  width: 150px; height: 150px; border-radius: 50%; padding: 8px;
  background: var(--white); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  animation: floaty 6s ease-in-out infinite; animation-delay: .6s;
}
.hero-logo-float img{ width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* ==========================================================================
   BARRA DE CONFIANÇA
   ========================================================================== */
.trustbar{ background: var(--ink); }
.trustbar .container{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px;
  padding-top: 40px; padding-bottom: 40px;
}
.trust-item{ display: flex; align-items: center; gap: 14px; }
.trust-item .icon-wrap{
  width: 46px; height: 46px; border-radius: 13px; background: rgba(232,117,58,.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item .icon-wrap svg{ width: 22px; height: 22px; color: var(--orange-light); }
.trust-item strong{ display: block; font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--white); }
.trust-item span{ font-size: 13px; color: rgba(255,255,255,.58); }

/* ==========================================================================
   NOSSO CUIDADO
   ========================================================================== */
.care-grid{ display: grid; grid-template-columns: 1fr; gap: 22px; }
.care-card{
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.care-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.care-card .icon-wrap{
  width: 52px; height: 52px; border-radius: 15px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.care-card .icon-wrap svg{ width: 25px; height: 25px; color: var(--orange); }
.care-card h3{ font-size: 18.5px; font-weight: 700; }
.care-card p{ margin-top: 10px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ==========================================================================
   SOBRE A DRA. THAIS
   ========================================================================== */
.about-grid{ display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.about-photo{ position: relative; padding-bottom: 24px; }
.about-photo-frame{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; max-width: 420px; margin: 0 auto; position: relative;
  background: var(--ink);
}
.about-photo-frame img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.about-crmv{
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-full); box-shadow: var(--shadow-md);
  padding: 10px 22px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
  color: var(--ink); white-space: nowrap; border: 1px solid var(--line-soft);
}
.about-crmv span{ color: var(--orange); }

.about-copy h3.name{ font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--orange-dark); margin-top: 16px; }
.about-copy p{ margin-top: 18px; font-size: 16.5px; color: var(--ink-soft); }
.about-signature{ margin-top: 28px; font-family: var(--font-head); font-style: normal; font-size: 22px; color: var(--ink); font-weight: 600; }
.about-signature small{ display: block; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-top: 4px; }

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-grid{ display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card{
  position: relative; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); padding: 28px 24px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card .icon-wrap{
  width: 50px; height: 50px; border-radius: 14px; background: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: var(--shadow-orange);
}
.service-card .icon-wrap svg{ width: 24px; height: 24px; color: var(--white); }
.service-card h3{ font-size: 17.5px; font-weight: 700; }
.service-card p{ margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.service-card .service-link{
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--orange-dark);
}
.service-card .service-link svg{ width: 15px; height: 15px; transition: transform .25s var(--ease); }
.service-card:hover .service-link svg{ transform: translateX(4px); }
.service-card.featured{ background: var(--ink); border-color: var(--ink); }
.service-card.featured .icon-wrap{ background: var(--orange-light); }
.service-card.featured h3, .service-card.featured .service-link{ color: var(--white); }
.service-card.featured p{ color: rgba(255,255,255,.62); }

/* ==========================================================================
   CTA WHATSAPP
   ========================================================================== */
.cta-whats{
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--orange-dark), var(--orange) 60%, var(--orange-light));
  padding: 56px 40px; text-align: center; color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-whats::before{
  content: ''; position: absolute; inset: 0; opacity: .1;
  background-image: radial-gradient(circle, #fff 1.6px, transparent 1.6px);
  background-size: 26px 26px;
}
.cta-whats > *{ position: relative; z-index: 1; }
.cta-whats .eyebrow{ color: rgba(255,255,255,.85); }
.cta-whats .eyebrow::before{ background: rgba(255,255,255,.7); }
.cta-whats h2{ color: var(--white); font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin-top: 14px; }
.cta-whats p{ margin-top: 12px; font-size: 16.5px; color: rgba(255,255,255,.88); max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-whats .btn{ margin-top: 28px; }
.cta-whats .btn-whatsapp{ background: var(--ink); }
.cta-whats .btn-whatsapp:hover{ background: #000; }

/* ==========================================================================
   GALERIA
   ========================================================================== */
.gallery-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-item{
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1/1; background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}
.gallery-item.tall{ aspect-ratio: 1/1.5; }
.gallery-item img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.05); }
.gallery-item-logo img{ object-fit: contain; box-sizing: border-box; padding: 15%; background: var(--bg-soft); }
.gallery-item::after{
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: linear-gradient(0deg, rgba(37,37,37,.55), transparent 60%);
}
.gallery-item:hover::after{ opacity: 1; }
.gallery-caption{
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--white);
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .gallery-caption{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   AVALIAÇÕES
   ========================================================================== */
.reviews-grid{ display: grid; grid-template-columns: 1fr; gap: 20px; }
.review-card{
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 16px;
}
.review-stars{ display: flex; gap: 3px; }
.review-stars svg{ width: 17px; height: 17px; color: var(--orange); }
.review-card p{ font-size: 15px; color: var(--ink-soft); line-height: 1.65; flex-grow: 1; }
.review-author{ display: flex; align-items: center; gap: 12px; }
.review-author .avatar{
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); font-size: 15px;
}
.review-author strong{ display: block; font-family: var(--font-head); font-size: 14.5px; }
.review-author span{ font-size: 12.5px; color: var(--ink-soft); }

/* ==========================================================================
   LOCALIZAÇÃO
   ========================================================================== */
.location-grid{ display: grid; grid-template-columns: 1fr; gap: 32px; }
.location-info{
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
}
.location-row{ display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.location-row:last-of-type{ border-bottom: none; }
.location-row .icon-wrap{
  width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-row .icon-wrap svg{ width: 20px; height: 20px; color: var(--orange); }
.location-row strong{ display: block; font-family: var(--font-head); font-size: 15px; margin-bottom: 3px; }
.location-row span, .location-row p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.location-row .placeholder-tag{
  display: inline-block; margin-top: 4px; font-size: 11.5px; font-weight: 700;
  color: var(--orange-dark); background: var(--bg-soft); padding: 3px 9px; border-radius: var(--radius-full);
  letter-spacing: .03em;
}
.location-info .btn{ margin-top: 24px; width: 100%; }

.location-map{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  min-height: 320px; position: relative; border: 1px solid var(--line-soft);
}
.location-map .map-ph{
  position: absolute; inset: 0; background: linear-gradient(160deg, var(--bg-soft), #FFE3D1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 30px; color: var(--orange-dark);
}
.location-map .map-ph svg{ width: 40px; height: 40px; }
.location-map .map-ph strong{ font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.location-map .map-ph span{ font-size: 13px; color: var(--ink-soft); max-width: 260px; }
.location-map iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.footer{ background: var(--ink); color: rgba(255,255,255,.66); padding-top: 72px; }
.footer-top{ display: grid; grid-template-columns: 1fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark{ width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-brand-text strong{ display: block; font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 16.5px; }
.footer-brand-text span{ font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.footer-col p{ font-size: 14.5px; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,.55); }
.footer-tagline{ margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--orange-light); }
.footer-heading{ font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.footer-links li{ margin-bottom: 12px; }
.footer-links a{ font-size: 14.5px; transition: color .2s; }
.footer-links a:hover{ color: var(--orange-light); }
.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14.5px; }
.footer-contact svg{ width: 17px; height: 17px; color: var(--orange-light); flex-shrink: 0; margin-top: 2px; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s;
}
.footer-social a:hover{ background: var(--orange); border-color: var(--orange); }
.footer-social svg{ width: 17px; height: 17px; }
.footer-bottom{ display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; padding: 26px 0 30px; font-size: 13px; color: rgba(255,255,255,.42); }
.footer-bottom a{ color: rgba(255,255,255,.6); }

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================== */
.whats-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.42);
  transform: scale(0); opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease), background .2s;
}
.whats-float.visible{ transform: scale(1); opacity: 1; }
.whats-float:hover{ background: #1DA851; }
.whats-float svg{ width: 30px; height: 30px; color: var(--white); }
.whats-float .ping{
  position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping{
  0%{ transform: scale(1); opacity: .55; }
  100%{ transform: scale(1.9); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (min-width: 640px){
  .care-grid{ grid-template-columns: repeat(2, 1fr); }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px){
  .hero-inner{ grid-template-columns: 1.05fr .95fr; gap: 40px; }
  .about-grid{ grid-template-columns: .85fr 1.15fr; }
  .location-grid{ grid-template-columns: .95fr 1.05fr; }
}

@media (min-width: 1000px){
  .nav-desktop{ display: flex; }
  .menu-toggle, .nav-mobile{ display: none; }
  .trustbar .container{ grid-template-columns: repeat(4, 1fr); }
  .care-grid{ grid-template-columns: repeat(4, 1fr); }
  .services-grid{ grid-template-columns: repeat(3, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(3, 1fr); }
  .footer-top{ grid-template-columns: 1.3fr .8fr .8fr; }
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(1){ grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
}
