/* ============================================================
   Dra. Agnes Bueno | Veterinaria Domiciliar SP
   Paleta real da marca: teal #70C5BE, magenta #C020A0
   Fontes: Chelsea Market (titulos) + Poppins (corpo)
   ============================================================ */

:root {
  --teal: #70C5BE;
  --teal-dark: #4FA8A0;
  --teal-soft: #E8F6F4;
  --magenta: #C020A0;
  --magenta-dark: #9C1880;
  --ink: #2C3E50;
  --gray: #6C7B7F;
  --white: #FFFFFF;
  --bg-soft: #F7FBFA;
  --wa-green: #25D366;
  --shadow-sm: 0 4px 14px rgba(44, 62, 80, 0.08);
  --shadow-md: 0 12px 32px rgba(44, 62, 80, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Chelsea Market', 'Poppins', cursive;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

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

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

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

.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.section--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.section--teal h2, .section--teal h3 { color: var(--white); }

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}
.section--teal .eyebrow { color: var(--white); opacity: 0.92; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }
.section--teal .section-head p { color: rgba(255,255,255,0.92); }

/* ---------- Botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--wa { background: var(--wa-green); color: var(--white); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32); }
.btn--wa:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42); }
.btn--magenta { background: var(--magenta); color: var(--white); box-shadow: 0 8px 22px rgba(192, 32, 160, 0.28); }
.btn--magenta:hover { background: var(--magenta-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal-soft); }
.btn--white { background: var(--white); color: var(--teal-dark); }
.btn--white:hover { box-shadow: var(--shadow-md); }
.btn--lg { padding: 17px 38px; font-size: 1.08rem; }

.wa-ico { width: 22px; height: 22px; flex: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(112, 197, 190, 0.22);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: 'Chelsea Market', cursive; font-size: 1.02rem; color: var(--ink); }
.brand-text span { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 0.94rem; font-weight: 500; color: var(--ink); transition: color 0.15s; }
.nav a:hover { color: var(--magenta); }
.nav .btn { padding: 11px 22px; font-size: 0.92rem; }
.nav-links { display: flex; gap: 26px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(112,197,190,0.18), transparent 45%),
    radial-gradient(circle at 8% 90%, rgba(192,32,160,0.10), transparent 42%),
    var(--white);
  padding: 70px 0 80px;
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-soft); color: var(--teal-dark);
  font-weight: 600; font-size: 0.85rem;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 20px; }
.hero h1 .hl { color: var(--magenta); }
.hero p.lead { font-size: 1.12rem; color: var(--gray); margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--gray); font-size: 0.9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .dot { color: var(--teal); font-weight: 700; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: 24px; box-shadow: var(--shadow-md);
  object-fit: cover; aspect-ratio: 4 / 5;
}
.hero-media .float-card {
  position: absolute; bottom: 22px; left: -18px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.float-card .fc-ico {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--teal-soft); display: grid; place-items: center;
  font-size: 1.2rem;
}
.float-card strong { display: block; font-size: 0.92rem; color: var(--ink); }
.float-card small { color: var(--gray); font-size: 0.78rem; }

/* ---------- Cards genericos ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(112,197,190,0.20);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.96rem; }

/* ---------- Por que domiciliar ---------- */
.reason {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  border: 1px solid rgba(112,197,190,0.20); box-shadow: var(--shadow-sm);
}
.reason .ico { font-size: 1.8rem; margin-bottom: 12px; }
.reason h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--ink); }
.reason p { color: var(--gray); font-size: 0.94rem; }

/* ---------- Quem cuida ---------- */
.about .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about-media img { border-radius: 22px; box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 18px; }
.about .lead { color: var(--gray); margin-bottom: 24px; }
.creds { list-style: none; display: grid; gap: 14px; }
.creds li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; }
.creds li .chk {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}

/* ---------- Servicos grid ---------- */
.svc {
  background: var(--white); border-radius: var(--radius-sm); padding: 22px 20px;
  border: 1px solid rgba(112,197,190,0.20); text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.svc .ico { font-size: 2rem; margin-bottom: 12px; }
.svc h3 { font-size: 1rem; margin-bottom: 6px; }
.svc p { font-size: 0.84rem; color: var(--gray); }

/* ---------- Como funciona (steps) ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius); padding: 24px 26px;
  border: 1px solid rgba(112,197,190,0.20); box-shadow: var(--shadow-sm);
}
.step .num {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--magenta); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: 1.15rem;
  font-family: 'Chelsea Market', cursive;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 0.95rem; }

/* ---------- Felino ---------- */
.feline .container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feline-media img { border-radius: 22px; box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.feline h2 { color: var(--white); font-size: clamp(1.7rem, 3.6vw, 2.3rem); margin-bottom: 16px; }
.feline p { color: rgba(255,255,255,0.94); margin-bottom: 14px; }
.feline ul { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.feline ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--white); font-size: 0.97rem; }
.feline ul li::before { content: "\1F43E"; flex: none; }

/* ---------- Onde atendo ---------- */
.area .container { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: stretch; }
.area-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(112,197,190,0.20); box-shadow: var(--shadow-sm);
}
.area-card .ico { font-size: 2rem; margin-bottom: 14px; }
.area-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.area-card p { color: var(--gray); margin-bottom: 8px; font-size: 0.97rem; }
.area-card .addr { color: var(--ink); font-weight: 500; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tags span { background: var(--teal-soft); color: var(--teal-dark); font-size: 0.82rem; font-weight: 500; padding: 6px 14px; border-radius: 50px; }

/* ---------- Atendimentos reais ---------- */
.real { text-align: left; }
.real .ico {
  width: 50px; height: 50px; border-radius: 50%; background: var(--teal-soft);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px;
}
.real h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.real p { color: var(--gray); font-size: 0.95rem; }
.real .tag-real { display: inline-block; margin-top: 14px; font-size: 0.78rem; font-weight: 600; color: var(--magenta); letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(112,197,190,0.20);
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--magenta); font-size: 1.5rem; font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--gray); font-size: 0.97rem; }

/* ---------- Form contato ---------- */
.contact { background: var(--bg-soft); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.contact-info h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 22px; }
.contact-info ul { list-style: none; display: grid; gap: 14px; }
.contact-info ul li { display: flex; gap: 12px; align-items: center; font-size: 0.97rem; }
.contact-info ul li .ico { font-size: 1.2rem; }
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(112,197,190,0.20);
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card .form-sub { color: var(--gray); font-size: 0.92rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; font-family: inherit; font-size: 0.97rem;
  border: 1.5px solid rgba(108,123,127,0.28); border-radius: var(--radius-sm);
  color: var(--ink); background: var(--bg-soft); transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: var(--white); }
.field textarea { resize: vertical; min-height: 92px; }
.form-card .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 14px; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,0.94); font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.82); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer .brand img { height: 56px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer h4 { color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.03em; }
.footer p, .footer a { font-size: 0.92rem; line-height: 1.8; color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--teal); }
.footer ul { list-style: none; }
.footer-about p { margin-top: 14px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* ---------- FAB WhatsApp ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: flex; align-items: center; gap: 0;
}
.fab-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa-green); color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: pulse 2.2s infinite;
  transition: transform 0.18s;
}
.fab-btn:hover { transform: scale(1.06); }
.fab-btn svg { width: 32px; height: 32px; }
.fab-tip {
  position: absolute; right: 72px; bottom: 14px;
  background: var(--white); color: var(--ink);
  font-size: 0.85rem; font-weight: 500; white-space: nowrap;
  padding: 9px 15px; border-radius: 10px; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.fab:hover .fab-tip { opacity: 1; transform: translateX(0); }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Responsivo ---------- */
@media (max-width: 920px) {
  .hero .container, .about .container, .feline .container,
  .area .container, .contact-wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; margin: 0 auto; }
  .about-media, .feline-media { max-width: 440px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-media .float-card { left: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-text span { display: none; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
