/* ═══════════════════════════════════════════════════════════
   São Camilo Benefícios — css/main.css
   Inter + Work Sans · #8D200F · gerado por rewrite-website
   Paleta: --primary #8D200F (dark red) · --header-bg #21252B (dark charcoal)
═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../_shared/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.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: 'Work Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../_shared/fonts/QGYsz_wNahGAdqQ43Rh_fKDp.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;
}

:root {
  /* ── Marca ───────────────────────────────────────────── */
  --primary:        #8D200F;   /* dark red — CTA buttons */
  --primary-dark:   #6b1a0c;   /* darker red — hover */
  --primary-light:  #fdf0ee;   /* light red tint */
  --secondary:      #21252B;   /* dark charcoal */
  --header-bg:      #21252B;   /* dark charcoal header */
  --shadow-primary: 0 8px 32px rgba(141,32,15,.2);

  /* ── Neutros ─────────────────────────────────────────── */
  --dark:         #21252B;
  --dark-2:       #414244;
  --text:         #21252B;
  --text-soft:    #6B7280;
  --text-lighter: #9CA3AF;
  --bg:           #FFFFFF;
  --bg-alt:       #F9FAFB;
  --border:       #E5E7EB;

  /* ── Tokens ──────────────────────────────────────────── */
  --header-h:  72px;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px 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: 'Inter', 'Work Sans', 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 / Layout ──────────────────────────────────── */
.container   { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }
.section     { padding-block: 96px; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--header-bg); }
section[id]  { scroll-margin-top: calc(var(--header-h) + 8px); }
.grid-2         { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.grid-2-reverse { grid-template-columns: 1fr 1.1fr; }

/* ── Section headers ─────────────────────────────────────── */
.section-header   { text-align: center; margin-bottom: 56px; }
.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: 14px; }
.section-title    { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-subtitle { font-size: .98rem; color: var(--text-soft); max-width: 580px; margin-inline: auto; line-height: 1.75; }
.section-title-dark    { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.section-subtitle-dark { font-size: .98rem; color: rgba(255,255,255,.65); max-width: 580px; margin-inline: auto; line-height: 1.75; }

/* ── Scroll animation ────────────────────────────────────── */
.animate-in         { opacity: 0; transform: translateY(28px); 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: 'Inter', 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: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-header { background: var(--primary); color: #fff; padding: 10px 20px; font-size: .82rem; font-weight: 700; border-radius: 50px; box-shadow: 0 2px 12px rgba(0,0,0,.18); transition: var(--t); }
.btn-header i { width: 15px; height: 15px; }
.btn-header:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(6px); transition: var(--t); white-space: nowrap; }
.btn-hero-ghost i { width: 17px; height: 17px; }
.btn-hero-ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 16px 36px; border-radius: 50px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: var(--t); }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* ── Header ──────────────────────────────────────────────── */
.header            { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: var(--header-bg); transition: box-shadow .3s; }
.page-home .header { position: fixed; inset: 0 0 auto; }
.hero              { padding-top: var(--header-h); }
.header.scrolled   { box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.nav      { display: flex; align-items: center; height: var(--header-h); }
.nav-logo { flex-shrink: 0; margin-right: auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-right: 20px; }
.nav-link { font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.85); padding: 6px 12px; border-radius: 7px; transition: var(--t); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.15); }
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; margin-left: 12px; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero            { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg         { position: absolute; inset: 0; z-index: 0; }
.hero-bg img     { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay    { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(33,37,43,.88) 0%, rgba(33,37,43,.70) 50%, rgba(33,37,43,.30) 100%); }
.hero-content    { position: relative; z-index: 1; padding-block: 80px; }
.hero-text-inner { max-width: 640px; }
.hero-title      { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 20px; letter-spacing: -.02em; }
.hero-actions    { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ── Especialidades ──────────────────────────────────────── */
.especialidades-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.especialidade-item  { padding: 14px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; color: var(--dark); text-align: center; transition: var(--t); }
.especialidade-item:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ── Descontos grid ──────────────────────────────────────── */
.descontos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.desconto-item  { text-align: center; padding: 28px 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.desconto-num   { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.desconto-item p { font-size: .88rem; color: var(--text-soft); line-height: 1.5; }

/* ── Benefícios list ─────────────────────────────────────── */
.beneficios-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.beneficio-item  { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.beneficio-item i { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.beneficio-item p { font-size: .88rem; color: var(--text-soft); line-height: 1.55; }

/* ── Parceiros ───────────────────────────────────────────── */
.parceiros-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
.parceiro-item  { display: flex; align-items: center; justify-content: center; padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.parceiro-item img { max-height: 50px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: var(--t); }
.parceiro-item:hover img { filter: grayscale(0); opacity: 1; }

/* ── Plan cards ──────────────────────────────────────────── */
.plans-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan-card   { border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; background: rgba(255,255,255,.06); transition: var(--t); position: relative; }
.plan-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.plan-card.destaque { border-color: var(--primary); }
.plan-popular { position: absolute; top: 0; left: 50%; transform: translate(-50%, -1px); background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 16px; border-radius: 0 0 8px 8px; }
.plan-header  { padding: 28px 24px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.plan-name    { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.plan-tagline { font-size: .82rem; color: rgba(255,255,255,.5); }
.plan-body    { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.plano-em-breve { text-align: center; padding: 16px 0; flex: 1; }
.em-breve-badge { display: inline-block; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.plano-em-breve p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.plan-actions      { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.plan-action-link  { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-radius: var(--radius-sm); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .85rem; font-weight: 600; color: #fff; transition: var(--t); }
.plan-action-link:hover { background: var(--primary); border-color: var(--primary); }
.plan-action-link i { width: 16px; height: 16px; }

/* ── Subpage ─────────────────────────────────────────────── */
.subpage-banner { background: var(--header-bg); padding: 56px 0 48px; }
.subpage-title  { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.subpage-subtitle { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.75; max-width: 700px; }
.nav-link-active { background: rgba(255,255,255,.15); color: #fff !important; }

/* ── Footer ──────────────────────────────────────────────── */
.footer         { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-content { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 52px; padding-block: 64px; }
.footer-logo    { height: 50px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; margin-bottom: 18px; }
.footer-contato h4, .footer-nav h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-contato p   { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 10px; }
.footer-contato i   { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contato a:hover { color: #fff; }
.footer-nav ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a   { font-size: .85rem; transition: var(--t); }
.footer-nav a:hover { color: #fff; padding-left: 6px; }
.footer-bottom  { border-top: 1px solid rgba(255,255,255,.08); padding-block: 20px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-credit  { color: rgba(255,255,255,.35) !important; }
.footer-credit strong { color: rgba(255,255,255,.55); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 22px rgba(37,211,102,.55); z-index: 999; transition: var(--t); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.65); }

/* ══ RESPONSIVO ═════════════════════════════════════════════ */
@media (max-width: 960px) {
  .grid-2, .grid-2-reverse { grid-template-columns: 1fr; gap: 44px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.destaque { transform: none; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .especialidades-grid { grid-template-columns: repeat(3, 1fr); }
  .descontos-grid { grid-template-columns: 1fr 1fr; }
  .beneficios-list { grid-template-columns: 1fr; }
  .parceiros-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .nav-menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 12px 0 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 12px 28px; border-radius: 0; font-size: .95rem; color: var(--text); }
  .nav-link:hover { background: var(--primary-light); color: var(--primary-dark); }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 100svh; }
  .hero-content { padding-block: 48px; }
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .descontos-grid { grid-template-columns: 1fr; }
  .parceiros-grid { grid-template-columns: repeat(2, 1fr); }
}
