/* =========================================================
   Dra. Caroline Fonseca | Médica-Veterinária
   Folha de estilo principal
========================================================= */

/* =========================================================
   FONTE (auto-hospedada, sem chamadas a terceiros)
========================================================= */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* =========================================================
   CSS CUSTOM PROPERTIES
========================================================= */
:root {
  --sage: #6B9E97;
  --sage-deep: #2E5C57;
  --sage-dark: #1A3330;
  --sage-light: #EDF4F3;
  --sage-mid: #B5D3CF;
  --gold: #C4A87A;
  --gold-light: #F4EEE3;
  --cream: #F7F4EF;
  --text: #1A2B28;
  --text-mid: #4A6460;
  --text-soft: #58726E;
  --text-faint: #8FA8A4;
  --sage-text: #44736C;
  --border: #DDE8E6;
  --white: #FFFFFF;

  --font: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(26,51,48,0.07);
  --shadow-md: 0 8px 32px rgba(26,51,48,0.12);
  --shadow-lg: 0 20px 60px rgba(26,51,48,0.16);
  --transition: 0.25s ease;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* clip evita barra horizontal sem transformar o body em contentor de scroll */
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Foco visível e consistente (acessibilidade) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero-text-panel :focus-visible,
.cta-section :focus-visible,
.footer :focus-visible,
.cookie-banner :focus-visible,
.page-hero :focus-visible { outline-color: var(--sage-mid); }

/* Link "pular para o conteúdo" */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }
p { color: var(--text-mid); line-height: 1.75; text-wrap: pretty; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 0.85rem;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0.85rem 0 1.75rem;
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 80px 0; }
@media (min-width: 768px) { .section-pad { padding: 100px 0; } }
@media (min-width: 1024px) { .section-pad { padding: 120px 0; } }

.section-pad-sm { padding: 56px 0; }
@media (min-width: 768px) { .section-pad-sm { padding: 72px 0; } }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-whatsapp {
  background: var(--gold);
  color: var(--sage-dark);
  box-shadow: 0 4px 20px rgba(196,168,122,0.4);
}
.btn-whatsapp:hover {
  background: #d3ba92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,168,122,0.55);
}

.btn-ghost-light {
  background: transparent;
  color: var(--sage-mid);
  border: 1.5px solid rgba(181,211,207,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(181,211,207,0.7);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage-deep);
}
.btn-outline:hover {
  background: var(--sage-deep);
  color: var(--white);
}

.btn-large { font-size: 1rem; padding: 1rem 2rem; }

.icon-wa { width: 20px; height: 20px; flex-shrink: 0; }

/* Link de texto com seta */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-deep);
  min-height: 44px;
  transition: color var(--transition), gap var(--transition);
}
.arrow-link::after { content: '\2192'; transition: transform var(--transition); }
.arrow-link:hover { color: var(--sage-text); }
.arrow-link:hover::after { transform: translateX(3px); }

/* =========================================================
   NAVIGATION
========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,244,239,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(26,51,48,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-brand svg { flex-shrink: 0; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.nav-brand-title {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sage-deep);
  background: var(--sage-light);
}
.nav-links a[aria-current="page"] { font-weight: 600; }

.nav-cta { display: none; flex-shrink: 0; }

.nav-hamburger {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.15rem;
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] { background: var(--sage-light); color: var(--sage-deep); }
.nav-mobile .btn { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }
}

/* =========================================================
   HERO, painel duplo
========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--nav-h);
}

@media (min-width: 768px) {
  .hero { grid-template-columns: 54fr 46fr; }
}

.hero-image-panel {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .hero-image-panel { order: 2; aspect-ratio: auto; }
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  position: absolute;
  inset: 0;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 24px rgba(26,51,48,0.14);
  max-width: calc(100% - 40px);
}

@media (min-width: 768px) { .hero-badge { bottom: 24px; right: 24px; } }

.hero-badge-icon {
  width: 34px;
  height: 34px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-title { font-size: 0.82rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.hero-badge-sub { font-size: 0.72rem; color: var(--text-soft); line-height: 1.2; }

.hero-text-panel {
  background: var(--sage-dark);
  display: flex;
  align-items: center;
  padding: 56px 1.5rem;
}

@media (min-width: 768px) {
  .hero-text-panel {
    order: 1;
    padding: 80px clamp(2rem, 5vw, 72px);
    justify-content: flex-end;
  }
}

.hero-text-inner { width: 100%; max-width: 520px; }

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; line-height: 1.15; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--sage-mid);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage-mid);
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--white); }

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(181,211,207,0.18);
}

.hero-cred-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.2rem;
}
.hero-cred-value { font-size: 0.875rem; font-weight: 600; color: var(--white); }

/* =========================================================
   PAGE HERO, cabeçalho das subpáginas
========================================================= */
.page-hero {
  background: var(--sage-dark);
  padding: calc(var(--nav-h) + 56px) 0 56px;
}
@media (min-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 80px) 0 80px; }
}

.page-hero-inner { max-width: 720px; }
.page-hero .eyebrow { color: var(--sage-mid); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p {
  color: var(--sage-mid);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  margin-top: 1.25rem;
  max-width: 620px;
}
.page-hero .divider-gold { margin-bottom: 0; }

/* Breadcrumb */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 500;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; color: var(--sage-mid); }
.breadcrumb li + li::before { content: '/'; color: rgba(181,211,207,0.45); }
.breadcrumb a { color: var(--sage-mid); padding: 0.4rem 0; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb [aria-current="page"] { color: var(--white); }

/* Variante clara (páginas legais) */
.page-hero--light { background: var(--cream); border-bottom: 1px solid var(--border); }
.page-hero--light h1 { color: var(--text); }
.page-hero--light p { color: var(--text-mid); }
.page-hero--light .eyebrow { color: var(--sage-text); }
.page-hero--light .breadcrumb li { color: var(--text-soft); }
.page-hero--light .breadcrumb a { color: var(--text-soft); }
.page-hero--light .breadcrumb a:hover { color: var(--sage-deep); }
.page-hero--light .breadcrumb [aria-current="page"] { color: var(--text); }
.page-hero--light .breadcrumb li + li::before { color: var(--border); }

/* =========================================================
   ABOUT, foto de altura total + texto
========================================================= */
.about { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 44fr 56fr; min-height: 680px; }
}

.about-img-col { overflow: hidden; background: var(--cream); position: relative; }

.about-img-col img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 900px) { .about-img-col img { min-height: 680px; } }

.about-text-col { display: flex; align-items: center; padding: 60px 1.5rem; }
@media (min-width: 768px)  { .about-text-col { padding: 80px 56px; } }
@media (min-width: 1024px) { .about-text-col { padding: 100px 80px; } }

.about-text-inner { max-width: 540px; }
.about-text-inner p { margin-bottom: 1.1rem; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--gold-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
}
.about-quote p {
  color: var(--text);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

.credential-row { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }

.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}

.credential-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   SERVICES, grelha de cartões
========================================================= */
.services { background: var(--cream); }
.services-intro { max-width: 560px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 480px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.services-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 480px)  { .services-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .services-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sage-text);
  display: block;
}

.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.service-card p { font-size: 0.875rem; color: var(--text-soft); margin: 0; line-height: 1.65; }

.services-cta { text-align: center; margin-top: 2.5rem; }

/* =========================================================
   COMO FUNCIONA, passos
========================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-deep);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--text); }
.step p { font-size: 0.9rem; margin: 0; }

/* =========================================================
   FAQ, acordeão sem JavaScript
========================================================= */
.faq { max-width: 780px; margin-top: 2.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--sage-text);
  border-bottom: 2px solid var(--sage-text);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq-item[open] summary { color: var(--sage-deep); }

.faq-answer { padding: 0 1.35rem 1.35rem; }
.faq-answer p { font-size: 0.92rem; margin: 0; }

/* =========================================================
   TRAINING / GALLERY
========================================================= */
.training { background: var(--white); }

.training-inner { display: flex; flex-direction: column; gap: 2.5rem; }

.training-text .eyebrow { display: block; }
.training-text h2 { color: var(--text); }

.training-text-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .training-text-body { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.training-text-body p { margin-bottom: 1rem; }

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--cream);
}

.gallery-card img { width: 100%; height: auto; }

.gallery-caption { padding: 0.875rem 1.25rem; background: var(--white); }
.gallery-caption p { font-size: 0.8rem; color: var(--text-soft); margin: 0; font-weight: 500; }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   CONTACT, cartões de contato
========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-card h2, .contact-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}
.contact-card p { font-size: 0.9rem; margin: 0; }
.contact-card .contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.contact-card a.contact-value:hover { color: var(--sage-text); text-decoration: underline; text-underline-offset: 3px; }

/* Cartão do Perfil da Empresa no Google */
.google-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .google-card { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}
.google-card-text h2, .google-card-text h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text); }
.google-card-text p { font-size: 0.9rem; margin: 0; max-width: 46ch; }

.btn-google {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.btn-google:hover {
  border-color: var(--sage-mid);
  background: var(--sage-light);
  transform: translateY(-2px);
}
.btn-google svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =========================================================
   CTA / CONTACT SECTION
========================================================= */
.cta-section { background: var(--sage-dark); text-align: center; }

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }

.cta-section .sub {
  color: var(--sage-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.25rem;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-mid);
}

/* =========================================================
   PROSE, páginas legais
========================================================= */
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.25rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.9rem; }
.prose ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1rem;
}
.prose ul li { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.7; }
.prose a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--sage-text); }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
  background: var(--sage-light);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}
.prose-date {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Índice lateral das páginas legais */
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  transition: background var(--transition), color var(--transition);
}
.legal-nav a:hover { background: var(--sage-mid); color: var(--sage-dark); }

/* =========================================================
   NEXT PAGES, navegação entre subpáginas
========================================================= */
.next-pages { background: var(--cream); }
.next-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .next-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .next-grid { grid-template-columns: repeat(4, 1fr); } }

.next-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.next-card:hover { border-color: var(--sage-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.next-card h3 { font-size: 1rem; color: var(--text); }
.next-card p { font-size: 0.85rem; color: var(--text-soft); margin: 0; }

/* =========================================================
   404
========================================================= */
.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--sage-dark);
  padding: calc(var(--nav-h) + 60px) 1.5rem 60px;
}
.error-inner { max-width: 520px; }
.error-code {
  font-size: clamp(4rem, 14vw, 7rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.error-page h1 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.25rem); margin: 1rem 0; }
.error-page p { color: var(--sage-mid); margin-bottom: 2rem; }
.error-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* =========================================================
   FOOTER
========================================================= */
.footer { background: #111f1d; padding: 64px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; }

.footer-name { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.footer-crmv { font-size: 0.78rem; color: var(--text-faint); }
.footer-copy { font-size: 0.78rem; color: var(--text-faint); }

.footer-nav h2, .footer-legal h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}

.footer-nav ul, .footer-legal ul { display: flex; flex-direction: column; gap: 0.15rem; }
.footer-nav a, .footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  color: var(--sage-mid);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--white); }

.footer-google {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--sage-mid);
  transition: color var(--transition);
}
.footer-google:hover { color: var(--white); }
.footer-google svg { width: 16px; height: 16px; flex-shrink: 0; }


.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(107,158,151,0.15);
  padding: 1.25rem 0;
}

.footer-bottom p { font-size: 0.75rem; color: var(--text-faint); text-align: center; margin: 0; }

/* Espaço extra no rodapé quando o banner de cookies está visível */
body.cookie-open .footer-bottom { padding-bottom: 5.5rem; }

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.float-wa {
  color: var(--sage-dark);
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(196,168,122,0.5);
  transition: transform var(--transition), box-shadow var(--transition), bottom var(--transition);
}

.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(196,168,122,0.65); }

.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 767px) {
  .float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* Sobe o botão flutuante enquanto o banner de cookies estiver visível */
body.cookie-open .float-wa { bottom: 150px; }
@media (min-width: 700px) { body.cookie-open .float-wa { bottom: 110px; } }

.float-wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text);
}

.float-wa:hover .float-wa-tooltip { opacity: 1; }
@media (max-width: 767px) { .float-wa-tooltip { display: none; } }

/* =========================================================
   COOKIE BANNER
========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--sage-dark);
  border-top: 1px solid rgba(107,158,151,0.25);
  padding: 1rem 1.5rem calc(1rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--sage-mid);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a { color: var(--sage-mid); text-decoration: underline; text-underline-offset: 2px; }

.cookie-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }

.cookie-ok {
  background: var(--sage-mid);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  min-height: 44px;
  border-radius: 50px;
}
.cookie-ok:hover { background: var(--white); color: var(--sage-dark); }

.cookie-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.85rem;
  color: var(--sage-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-more:hover { color: var(--white); }

/* =========================================================
   MOVIMENTO REDUZIDO
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .float-wa::before { display: none; }
}

/* =========================================================
   IMPRESSÃO
========================================================= */
@media print {
  .nav, .float-wa, .cookie-banner, .skip-link, .next-pages, .cta-section { display: none !important; }
  body { color: #000; background: #fff; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}

/* =========================================================
   UTILITÁRIOS
   (evitam atributos style inline, incompatíveis com a CSP)
========================================================= */
.u-mt-0 { margin-top: 0; }
.u-mt-1 { margin-top: 1.25rem; }
.u-mt-2 { margin-top: 1.75rem; }
.u-mt-3 { margin-top: 2rem; }
.u-mt-4 { margin-top: 2.5rem; }
.eyebrow--light { color: var(--sage-mid); }
.divider-gold--center { margin: 0.85rem auto 0; }
.h-sm { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.contact-value--static { min-height: auto; }
.arrow-link--inline { display: inline-flex; }
