/* ═══════════════════════════════════════════════════════════
   VERKOM — CSS compartilhado das páginas internas
   Complementa o estilo inline do index.html
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS (espelho do index) ── */
:root {
  --red:        #C8111A;
  --red-light:  #F5E8E8;
  --red-mid:    #E8C0C0;
  --ink:        #1A1612;
  --ink-60:     #6B6460;
  --ink-30:     #B8B4B0;
  --cream:      #F7F4EF;
  --cream-dark: #EDE9E2;
  --white:      #FFFFFF;
  --dark:       #14110F;
  --dark-card:  #1E1B18;
  --border:     rgba(26,22,18,0.10);
  --border-red: rgba(200,17,26,0.18);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-sm: 3px;
  --radius:    8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-light { color: rgba(200,17,26,0.85); }
.eyebrow-light::before { background: var(--red); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(247,244,239,0.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-60); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 0.8rem !important; font-weight: 700 !important;
  letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #A50E16 !important; transform: translateY(-1px); }
.nav-hamburger { display: none; background: none; border: none; font-size: 1.3rem; color: var(--ink); cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 8px 0 20px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 13px 32px; font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--ink-60); }
.nav-mobile a:hover { color: var(--ink); }
.nav-mobile .mob-cta { margin: 12px 32px 0; background: var(--red); color: var(--white) !important; padding: 12px 20px; border-radius: var(--radius-sm); text-align: center; font-weight: 700 !important; }

/* ── PAGE HERO (menor que o index, sem foto lateral) ── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black, transparent);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 14px 0 24px;
}
.page-hero h1 strong { color: var(--red); font-weight: 800; }
.page-hero p {
  font-size: 1.05rem;
  color: var(--ink-60);
  line-height: 1.72;
  max-width: 540px;
}
.page-hero-dark {
  background: var(--dark);
  border-bottom: none;
}
.page-hero-dark::before {
  background-image:
    linear-gradient(rgba(200,17,26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,17,26,0.06) 1px, transparent 1px);
}
.page-hero-dark h1 { color: var(--white); }
.page-hero-dark p { color: rgba(255,255,255,0.55); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-30); margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-60); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 0.5rem; color: var(--ink-30); }

/* ── BUTTONS ── */
.btn-red { background: var(--red); color: var(--white); padding: 14px 30px; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-red:hover { background: #A50E16; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,17,26,0.28); }
.btn-ghost { background: transparent; color: var(--ink); padding: 13px 26px; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; border: 1.5px solid var(--border); display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--ink); color: var(--red); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.65); padding: 11px 24px; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; border: 1.5px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s, color 0.2s; }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); padding: 15px 32px; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

/* ── PILLS / TAGS ── */
.pill { font-family: var(--font-head); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border: 1px solid var(--border-red); border-radius: 2px; color: var(--red); background: var(--red-light); }
.case-pill { font-family: var(--font-head); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(200,17,26,0.3); border-radius: 2px; color: rgba(200,17,26,0.7); background: rgba(200,17,26,0.06); }

/* ── SOL ITEM (igual ao index) ── */
.sol-list { border-top: 1px solid var(--border); }
.sol-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--border); cursor: default; }
.sol-item:hover .sol-item-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.sol-item-icon { width: 44px; height: 44px; border: 1.5px solid var(--border-red); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; background: var(--red-light); transition: background 0.2s, color 0.2s, border-color 0.2s; flex-shrink: 0; }
.sol-item-body h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.sol-item-body p { font-size: 0.88rem; color: var(--ink-60); line-height: 1.6; }
.sol-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.sol-item-num { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; color: var(--ink-30); align-self: center; letter-spacing: 0.04em; }

/* ── SECTION HELPERS ── */
.section-cream { background: var(--cream); padding: 96px 0; }
.section-white { background: var(--white); padding: 96px 0; }
.section-dark { background: var(--dark); padding: 96px 0; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.section-cream-dark { background: var(--cream-dark); padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { margin-bottom: 56px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; margin: 12px 0 16px; }
.section-header h2 em { font-style: italic; color: var(--red); }
.section-header p { font-size: 0.97rem; color: var(--ink-60); line-height: 1.72; max-width: 560px; }
.section-header-dark h2 { color: var(--white); }
.section-header-dark p { color: rgba(255,255,255,0.5); }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }

/* ── DIFF CARD ── */
.diff-card { background: var(--white); padding: 36px 32px; transition: background 0.2s; }
.diff-card:hover { background: var(--red-light); }
.diff-card-icon { width: 40px; height: 40px; background: var(--red-light); border: 1.5px solid var(--border-red); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 0.95rem; margin-bottom: 18px; }
.diff-card h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.diff-card p { font-size: 0.85rem; color: var(--ink-60); line-height: 1.6; }

/* ── CASE CARD (dark) ── */
.case-card { background: var(--dark-card); padding: 40px 36px; position: relative; overflow: hidden; transition: background 0.25s; }
.case-card:hover { background: #252220; }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.case-card:hover::before { transform: scaleX(1); }
.case-logo-wrap { min-height: 56px; display: flex; align-items: center; margin-bottom: 24px; }
.case-logo-wrap img { max-height: 56px; width: auto; max-width: 180px; object-fit: contain; opacity: 0.9; transition: opacity 0.2s; }
.case-card:hover .case-logo-wrap img { opacity: 0.65; }
.case-sector { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.case-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.case-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.case-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  background: var(--cream-dark);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--ink-30);
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.photo-placeholder i { font-size: 2rem; }

/* ── PARTNERS (logos) ── */
.partners-inner { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.partners-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-30); flex-shrink: 0; }
.partners-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.partners-logos img { height: 26px; width: auto; filter: brightness(0); opacity: 0.2; transition: opacity 0.2s; }
.partners-logos img:hover { opacity: 0.5; }

/* ── CTA FINAL ── */
.cta-final { background: linear-gradient(135deg,#C8111A 0%, #A50E16 100%); padding: 96px 0; position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta-text h2 { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 400; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-text h2 em { font-style: italic; opacity: 0.75; }
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.cta-sublink { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.cta-sublink:hover { color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 26px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 240px; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.38); margin-bottom: 10px; }
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; font-size: 0.78rem; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.38); font-size: 0.82rem; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-col h5 { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.2); }
.footer-cnpj { font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.16); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .page-hero { padding: 120px 0 60px; }
  .sol-item { grid-template-columns: 48px 1fr; }
  .sol-item-num { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .partners-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}
