/* ══════════════════════════════════════════════════════════
   APPLIK CARE — main.css
   Montserrat · Azul #0044a3 · Azul claro #1779bd · Laranja #ff8400
══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../_shared/fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.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: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../_shared/fonts/JTUQjIg1_i6t8kCHKm459WxRyS7m.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;
}

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  /* Applik Care brand palette */
  --primary:       #1779bd;   /* color_1 — CTA buttons, links */
  --primary-dark:  #0e5d96;
  --primary-light: #e8f4fb;
  --secondary:     #323d90;   /* color_2 — headings, accents */
  --accent:        #ff8400;   /* color_3 — highlight, badges */
  --header-bg:     #0044a3;   /* color_7 — header & topbar */

  --text:         #383838;   /* color_6 */
  --text-soft:    #6b7280;
  --white:        #ffffff;
  --bg:           #ffffff;
  --bg-alt:       #f4f8fc;
  --border:       #e0e9f5;

  --header-h:     72px;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.12);
  --t:            all .28s ease;
  --max-w:        1200px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Container ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }

/* ─── Sections ───────────────────────────────────────────── */
.section          { padding-block: 88px; background: var(--bg); }
.section-alt      { background: var(--bg-alt); }
.section-dark     { background: var(--header-bg); }
.section-navy     { background: var(--secondary); }
section[id]       { scroll-margin-top: calc(var(--header-h) + 8px); }

.section-header   { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-label-dark {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: .98rem;
  color: var(--text-soft);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.75;
}
.section-title-dark {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle-dark {
  font-size: .98rem;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ─── Scroll animation ───────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-in.visible { opacity: 1; transform: none; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--t);
  white-space: nowrap;
}
.btn i { width: 17px; height: 17px; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(23,121,189,.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(23,121,189,.4); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,132,0,.3);
}
.btn-accent:hover { background: #e07600; transform: translateY(-2px); }

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

.btn-header {
  background: var(--white);
  color: var(--header-bg);
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  transition: var(--t);
}
.btn-header:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: var(--t);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* ─── Header ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
  transition: box-shadow .3s;
}

.page-home .header { position: fixed; inset: 0 0 auto; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.logo-link { flex-shrink: 0; }
.logo-img  { height: 48px; width: auto; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav-link {
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--t);
}
.nav-link:hover, .nav-link-active { color: var(--white); background: rgba(255,255,255,.12); }

.menu-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}
.menu-toggle i { width: 24px; height: 24px; }
.menu-toggle:hover { background: rgba(255,255,255,.1); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--header-bg);
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 32px;
  color: var(--white);
}
.hero-text h1 strong { color: var(--white); font-weight: 900; }
.hero-image { overflow: hidden; }
.hero-image img { width: 100%; object-fit: cover; }

/* ─── About / Sobre ──────────────────────────────────────── */
.sobre-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.sobre-inner .section-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sobre-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 28px;
  line-height: 1.25;
}
.sobre-inner p {
  font-size: .98rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre-inner p:last-child { margin-bottom: 0; }

/* ─── Diferenciais / O Applik Care ──────────────────────── */
.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.diferenciais-text { color: var(--white); }
.diferenciais-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--white);
}
.diferenciais-text p {
  font-size: .98rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 14px;
}
.diferenciais-text p:last-child { margin-bottom: 0; }

/* ─── Serviços ───────────────────────────────────────────── */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--t);
}
.servico-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.servico-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.servico-icon i { width: 26px; height: 26px; color: var(--primary); }
.servico-card h3 {
  font-size: .96rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.servico-card p {
  font-size: .86rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Vacinação card with photo */
.servico-card-foto {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.servico-card-foto .servico-text { padding: 8px 0; }
.servico-foto-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.servico-foto-gallery img {
  border-radius: 8px;
  object-fit: cover;
  height: 120px;
  width: 100%;
}

/* ─── Planos ─────────────────────────────────────────────── */
.planos-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 64px;
}
.planos-intro-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.planos-intro-text p {
  font-size: .98rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}
.planos-intro-text .planos-tagline {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.planos-intro-img { text-align: center; }
.planos-intro-img img { max-height: 280px; margin-inline: auto; object-fit: contain; }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.planos-grid-last {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin-inline: auto;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.plan-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-4px); }

.plan-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.plan-logo img { max-height: 72px; max-width: 140px; object-fit: contain; margin-inline: auto; }
.plan-logo-placeholder {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.plan-logo-placeholder i { width: 36px; height: 36px; color: var(--primary); }

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 4px;
}
.plan-price {
  text-align: center;
  margin-bottom: 6px;
}
.plan-price .price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}
.plan-price .price-label {
  font-size: .82rem;
  color: var(--text-soft);
}
.plan-taxa {
  text-align: center;
  font-size: .76rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 18px; }

.plan-features { flex: 1; margin-bottom: 20px; }
.plan-features li {
  font-size: .82rem;
  color: var(--text-soft);
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.plan-features li strong { color: var(--text); }

.plan-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.plan-action-link {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  transition: var(--t);
}
.plan-action-link:hover { background: var(--primary-dark); transform: translateY(-1px); }
.plan-action-pix {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.plan-action-pix:hover { background: var(--primary); color: var(--white); }

/* ─── Fidelidade section ─────────────────────────────────── */
.fidelidade-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.fidelidade-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.fidelidade-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}
.fidelidade-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.fidelidade-desc {
  font-size: .96rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.fidelidade-left-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.fidelidade-left-img img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }
.fidelidade-meta {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.fidelidade-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 20px 0 24px;
  color: var(--text);
}
.fidelidade-price .price-prefix { font-size: 1rem; font-weight: 700; }
.fidelidade-price .price-number { font-size: 3rem; font-weight: 900; color: var(--primary); }
.fidelidade-price .price-suffix { font-size: 1rem; font-weight: 700; }
.fidelidade-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
}
.fidelidade-features li {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.fidelidade-features li:first-child { padding-top: 0; }
.fidelidade-features li:last-child { border-bottom: none; }
.fidelidade-btn { width: 100%; text-align: center; display: block; }

/* ─── Parceiros Locais ───────────────────────────────────── */
.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.parceiro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--t);
}
.parceiro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.parceiro-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.parceiro-logo img { max-height: 56px; max-width: 140px; object-fit: contain; margin-inline: auto; }
.parceiro-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  text-align: center;
}
.parceiro-benefits { font-size: .8rem; color: var(--text-soft); line-height: 1.65; }
.parceiro-benefits li { padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.parceiro-benefits li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

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

/* Wizard full-row card */
.parceiro-card-wide { grid-column: span 2; }

/* ─── Clube de Parcerias ─────────────────────────────────── */
.clube-text { text-align: center; margin-bottom: 48px; }
.clube-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 36px;
  margin-bottom: 48px;
}
.clube-logo img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: opacity .2s;
}
.clube-logo img:hover { opacity: 1; }

/* ─── Contato ────────────────────────────────────────────── */
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contato-text { color: var(--white); }
.contato-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.contato-text p {
  font-size: .96rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contato-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.contato-info { display: flex; flex-direction: column; gap: 16px; }
.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px 20px;
}
.contato-info-item i { width: 22px; height: 22px; color: rgba(255,255,255,.7); flex-shrink: 0; margin-top: 2px; }
.contato-info-item-text { color: var(--white); }
.contato-info-item-text strong { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.contato-info-item-text span { font-size: .94rem; line-height: 1.55; color: rgba(255,255,255,.9); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: #001e5c;
  padding: 28px;
  text-align: center;
}
.footer-nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-nav a { font-size: .84rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .servico-card-foto { grid-column: span 2; }
  .parceiros-grid { grid-template-columns: repeat(2, 1fr); }
  .parceiro-card-wide { grid-column: span 2; }
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
  .planos-grid-last { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .diferenciais-inner { grid-template-columns: 1fr; }
  .planos-intro { grid-template-columns: 1fr; }
  .planos-intro-img { display: none; }
  .fidelidade-card { grid-template-columns: 1fr; }
  .fidelidade-left-img { display: none; }
  .contato-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .container { padding-inline: 18px; }
  .nav { display: none; flex-direction: column; gap: 4px; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--header-bg); padding: 16px 18px 20px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
  .nav.open { display: flex; }
  .nav-link { color: var(--white); padding: 10px 14px; border-radius: 8px; width: 100%; }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .hero-text h1 { font-size: 1.75rem; }
  .servicos-grid { grid-template-columns: 1fr; }
  .servico-card-foto { grid-column: span 1; grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .planos-grid-last { grid-template-columns: 1fr; }
  .parceiros-grid { grid-template-columns: 1fr; }
  .parceiro-card-wide { grid-column: span 1; }
  .clube-logo img { height: 28px; }
  .footer-nav { gap: 14px; }
}
