/* ============================================
   CRIATIVA SOLUCOES - GLOBAL STYLES
   Dark premium + raposa + tecnologia humana
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@600;700;800&display=swap');

/* --- VARIABLES --- */
:root {
  --cs-ink: #120606;
  --cs-wine: #300505;
  --cs-surface: #241010;
  --cs-surface-2: #351514;
  --cs-orange: #FF5A00;
  --cs-orange-deep: #D83A00;
  --cs-gold: #FFB000;
  --cs-white: #FFF8F5;
  --cs-muted: #D3B9B2;
  --cs-line: #5C302A;
  --cs-success: #52D68A;
  --cs-gradient-action: linear-gradient(100deg, #FFB000 0%, #FF5A00 48%, #D83A00 100%);
  --cs-gradient-dark: radial-gradient(circle at 75% 20%, rgba(255,90,0,.24), transparent 32%), linear-gradient(135deg, #300505, #120606 65%);
  --cs-shadow-btn: 0 10px 30px rgba(255,90,0,.16);
  --cs-shadow-card: 0 18px 45px rgba(0,0,0,.32);
  --cs-max-width: 1200px;
  --cs-gutter: 24px;
  --cs-radius: 18px;
  --cs-radius-sm: 12px;
  --cs-font-title: 'Sora', sans-serif;
  --cs-font-body: 'Inter', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--cs-font-body);
  background: var(--cs-ink);
  color: var(--cs-muted);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; }
button { cursor: pointer; }
h1,h2,h3,h4,h5,h6 { font-family: var(--cs-font-title); color: var(--cs-white); line-height: 1.08; }

/* --- CONTAINER --- */
.cs-container {
  width: min(100% - var(--cs-gutter)*2, var(--cs-max-width));
  margin: 0 auto;
}

/* --- HEADER --- */
.cs-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(18,6,6,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.cs-header.scrolled { border-color: rgba(92,48,42,.48); }
.cs-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 16px;
}
.cs-logo { height: 56px; width: auto; flex-shrink: 0; }
.cs-nav { display: flex; align-items: center; gap: 28px; }
.cs-nav-link {
  font-size: 15px; font-weight: 500; color: var(--cs-muted);
  position: relative; padding: 4px 0;
  transition: color .25s;
}
.cs-nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--cs-orange);
  transition: width .3s cubic-bezier(.22,.61,.36,1);
}
.cs-nav-link:hover, .cs-nav-link.active { color: var(--cs-white); }
.cs-nav-link:hover::after, .cs-nav-link.active::after { width: 100%; }

/* Header CTA */
.cs-header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px; border-radius: var(--cs-radius-sm);
  background: var(--cs-gradient-action); color: var(--cs-ink);
  font-weight: 600; font-size: 14px; flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}
.cs-header-cta:hover { transform: translateY(-1px); box-shadow: var(--cs-shadow-btn); }

/* Members button */
.cs-members-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--cs-line); color: var(--cs-muted);
  transition: color .25s, border-color .25s;
}
.cs-members-btn:hover { color: var(--cs-orange); border-color: var(--cs-orange); }
.cs-members-btn svg { width: 20px; height: 20px; }

/* Mobile toggle */
.cs-menu-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--cs-line); border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.cs-menu-bar { width: 20px; height: 2px; background: var(--cs-white); display: block; transition: .3s; }
.cs-menu-toggle.open .cs-menu-bar:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.cs-menu-toggle.open .cs-menu-bar:nth-child(2) { opacity: 0; }
.cs-menu-toggle.open .cs-menu-bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- SUBMENU --- */
.cs-has-submenu { position: relative; }
.cs-submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 220px; background: var(--cs-surface); border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius); padding: 8px 0; opacity: 0;
  pointer-events: none; transition: opacity .25s, transform .25s;
  transform: translateX(-50%) translateY(8px);
  box-shadow: var(--cs-shadow-card); z-index: 210;
}
.cs-has-submenu:hover .cs-submenu,
.cs-has-submenu:focus-within .cs-submenu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cs-submenu-link {
  display: block; padding: 10px 20px; font-size: 14px; color: var(--cs-muted);
  transition: background .2s, color .2s;
}
.cs-submenu-link:hover { background: var(--cs-surface-2); color: var(--cs-white); }

/* --- BUTTONS --- */
.cs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 32px; border-radius: var(--cs-radius-sm);
  font-weight: 600; font-size: 16px; transition: transform .25s, box-shadow .25s, filter .25s;
}
.cs-btn:hover { transform: translateY(-2px); }
.cs-btn-primary {
  background: var(--cs-gradient-action); color: var(--cs-ink);
  box-shadow: var(--cs-shadow-btn);
}
.cs-btn-primary:hover { filter: brightness(1.08); box-shadow: 0 14px 40px rgba(255,90,0,.24); }
.cs-btn-secondary {
  background: transparent; color: var(--cs-white);
  border: 1px solid var(--cs-line);
}
.cs-btn-secondary:hover { border-color: var(--cs-orange); color: var(--cs-orange); }
.cs-btn-sm { height: 44px; padding: 0 24px; font-size: 14px; }
.cs-btn-lg { height: 56px; padding: 0 40px; font-size: 17px; }

/* --- HERO --- */
.cs-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.cs-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.cs-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,6,6,.92) 0%, rgba(48,5,5,.7) 50%, rgba(18,6,6,.85) 100%);
}
.cs-hero-content { position: relative; z-index: 2; width: 100%; }
.cs-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.cs-hero h1 { font-size: clamp(36px, 5vw, 64px); margin: 0 0 20px; }
.cs-hero-text { font-size: 18px; line-height: 1.7; max-width: 560px; margin: 0 0 32px; }
.cs-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.cs-hero-micro { font-size: 13px; color: var(--cs-muted); opacity: .8; }

/* Rotating text */
.cs-rotating { color: var(--cs-orange); font-weight: 700; display: inline-block; }
@keyframes csRotateIn {
  from { opacity: 0; transform: translateY(0.22em); }
  to { opacity: 1; transform: translateY(0); }
}
.cs-rotating.active { animation: csRotateIn .45s cubic-bezier(.22,.61,.36,1) forwards; }

/* Hero parallax shapes */
.cs-hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.cs-hero-shape {
  position: absolute; border-radius: 50%; opacity: .18;
  background: radial-gradient(circle, var(--cs-orange), transparent 70%);
  will-change: transform;
}
.cs-hero-shape--1 { width: 500px; height: 500px; top: -10%; right: 5%; }
.cs-hero-shape--2 { width: 300px; height: 300px; bottom: 10%; left: -5%; }
.cs-hero-shape--3 { width: 180px; height: 180px; top: 40%; right: 30%; opacity: .1; }

/* Hero panel */
.cs-hero-panel {
  background: rgba(36,16,16,.65); border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius); padding: 28px;
  backdrop-filter: blur(8px);
}
.cs-hero-panel-title { color: var(--cs-gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.cs-hero-panel-row {
  background: rgba(255,255,255,.03); border: 1px dashed rgba(92,48,42,.5);
  padding: 14px 16px; border-radius: var(--cs-radius-sm); margin-bottom: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.cs-hero-panel-row span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--cs-muted); }
.cs-hero-panel-row strong { color: var(--cs-white); font-size: 15px; font-family: var(--cs-font-title); }

/* --- SECTIONS --- */
.cs-section { padding: 100px 0; position: relative; }
.cs-section-dark { background: var(--cs-wine); }
.cs-section-alt { background: rgba(36,16,16,.5); }
.cs-kicker {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--cs-gold); margin-bottom: 12px;
}
.cs-section-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cs-section-subtitle { font-size: 18px; max-width: 640px; margin-bottom: 40px; }

/* --- CARDS --- */
.cs-cards-grid { display: grid; gap: 20px; }
.cs-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cs-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cs-card {
  background: var(--cs-surface); border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius); padding: 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.cs-card:hover { transform: translateY(-4px); border-color: rgba(255,90,0,.3); box-shadow: var(--cs-shadow-card); }
.cs-card-icon { width: 48px; height: 48px; margin-bottom: 16px; color: var(--cs-orange); }
.cs-card h3 { font-size: 20px; margin-bottom: 10px; }
.cs-card p { font-size: 15px; line-height: 1.6; }

/* --- STEPS --- */
.cs-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cs-step { position: relative; padding: 32px; background: var(--cs-surface); border: 1px solid var(--cs-line); border-radius: var(--cs-radius); }
.cs-step-num { font-family: var(--cs-font-title); font-size: 48px; font-weight: 800; color: var(--cs-orange); opacity: .3; line-height: 1; margin-bottom: 16px; }
.cs-step h3 { font-size: 20px; margin-bottom: 10px; }
.cs-step p { font-size: 15px; }

/* --- DUAL SECTION --- */
.cs-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cs-dual-img { border-radius: var(--cs-radius); overflow: hidden; }
.cs-dual-img img { width: 100%; height: 100%; object-fit: cover; }

/* --- TESTIMONIALS --- */
.cs-testimonials-track { display: flex; gap: 20px; overflow: hidden; }
.cs-testimonial {
  flex: 0 0 calc(50% - 10px); background: var(--cs-surface);
  border: 1px solid var(--cs-line); border-radius: var(--cs-radius); padding: 28px;
}
.cs-testimonial-quote { font-size: 16px; font-style: italic; line-height: 1.7; margin-bottom: 16px; color: var(--cs-white); }
.cs-testimonial-author { font-size: 14px; font-weight: 600; color: var(--cs-orange); }
.cs-testimonial-role { font-size: 13px; color: var(--cs-muted); }

/* --- FAQ --- */
.cs-faq { max-width: 800px; margin: 0 auto; }
.cs-faq-item {
  border: 1px solid var(--cs-line); border-radius: var(--cs-radius-sm);
  background: var(--cs-surface); margin-bottom: 12px; overflow: hidden;
}
.cs-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; font-weight: 600; color: var(--cs-white); text-align: left;
  font-size: 16px; cursor: pointer;
}
.cs-faq-q::after { content: '+'; font-size: 22px; color: var(--cs-orange); transition: transform .2s; }
.cs-faq-item.open .cs-faq-q::after { transform: rotate(45deg); }
.cs-faq-a { max-height: 0; overflow: hidden; transition: max-height .22s ease, padding .22s; }
.cs-faq-item.open .cs-faq-a { max-height: 400px; }
.cs-faq-a-inner { padding: 0 24px 18px; font-size: 15px; line-height: 1.7; }

/* --- FORMS --- */
.cs-form { display: grid; gap: 16px; }
.cs-form-row { display: grid; gap: 6px; }
.cs-form label { font-size: 13px; font-weight: 600; color: var(--cs-white); }
.cs-form input, .cs-form select, .cs-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(18,6,6,.7); border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius-sm); color: var(--cs-white);
  transition: border-color .25s, box-shadow .25s;
}
.cs-form input:focus, .cs-form select:focus, .cs-form textarea:focus {
  outline: none; border-color: var(--cs-orange);
  box-shadow: 0 0 0 3px rgba(255,90,0,.15);
}
.cs-form textarea { min-height: 120px; resize: vertical; }
.cs-form-error { font-size: 12px; color: #ff8f8f; min-height: 16px; }
.cs-form-consent { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.cs-form-consent input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--cs-orange); }
.cs-form-feedback { font-size: 14px; min-height: 20px; padding: 10px; border-radius: 8px; display: none; }
.cs-form-feedback.success { display: block; background: rgba(82,214,138,.1); color: var(--cs-success); }
.cs-form-feedback.error { display: block; background: rgba(255,100,100,.1); color: #ff8f8f; }

/* --- FOOTER --- */
.cs-footer {
  border-top: 1px solid var(--cs-line); padding: 48px 0 32px;
  background: var(--cs-wine);
}
.cs-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cs-footer-brand img { height: 52px; margin-bottom: 16px; }
.cs-footer-brand p { font-size: 14px; max-width: 280px; }
.cs-footer h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; color: var(--cs-white); }
.cs-footer-link { display: block; font-size: 14px; padding: 4px 0; color: var(--cs-muted); transition: color .2s; }
.cs-footer-link:hover { color: var(--cs-orange); }
.cs-footer-bottom { text-align: center; font-size: 13px; padding-top: 24px; border-top: 1px solid rgba(92,48,42,.3); }

/* --- WHATSAPP FLOATING --- */
.cs-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  animation: csWhatsappPulse 2s infinite 3s;
}
.cs-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.cs-whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes csWhatsappPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,.1); }
}

/* --- ANIMATIONS --- */
.cs-animate { opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s cubic-bezier(.22,.61,.36,1); }
.cs-animate.cs-visible { opacity: 1; transform: translateY(0); }
.cs-animate-left { opacity: 0; transform: translateX(-24px); transition: opacity .55s, transform .55s cubic-bezier(.22,.61,.36,1); }
.cs-animate-left.cs-visible { opacity: 1; transform: translateX(0); }
.cs-animate-right { opacity: 0; transform: translateX(24px); transition: opacity .55s, transform .55s cubic-bezier(.22,.61,.36,1); }
.cs-animate-right.cs-visible { opacity: 1; transform: translateX(0); }

/* Stagger */
.cs-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .4s cubic-bezier(.22,.61,.36,1); }
.cs-stagger.cs-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.cs-stagger.cs-visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.cs-stagger.cs-visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.cs-stagger.cs-visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.cs-stagger.cs-visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.cs-stagger.cs-visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* CTA pulse */
@keyframes csCtaPulse {
  0%,100% { box-shadow: var(--cs-shadow-btn); }
  50% { box-shadow: 0 10px 40px rgba(255,90,0,.3), 0 0 0 8px rgba(255,90,0,.06); }
}
.cs-btn-pulse { animation: csCtaPulse 3s ease-in-out 4; }

/* EMBREVE */
.cs-embreve {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
.cs-embreve h1 {
  font-size: clamp(64px, 12vw, 140px); font-weight: 800;
  background: var(--cs-gradient-action); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 24px;
}
.cs-embreve p { font-size: 20px; max-width: 500px; }

/* --- PORTFOLIO GRID --- */
.cs-portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cs-portfolio-item {
  border-radius: var(--cs-radius-sm); overflow: hidden; border: 1px solid var(--cs-line);
  transition: transform .3s, border-color .3s;
}
.cs-portfolio-item:hover { transform: translateY(-4px); border-color: var(--cs-orange); }
.cs-portfolio-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* --- STATS --- */
.cs-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.cs-stat { text-align: center; }
.cs-stat-num {
  font-family: var(--cs-font-title); font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  background: var(--cs-gradient-action); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-stat-label { font-size: 14px; margin-top: 4px; }

/* --- IMAGE WITH OVERLAY --- */
.cs-img-overlay { position: relative; overflow: hidden; border-radius: var(--cs-radius); }
.cs-img-overlay img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cs-img-overlay:hover img { transform: scale(1.04); }
.cs-img-overlay::after { content: ''; position: absolute; inset: 0; background: rgba(18,6,6,.45); }

/* --- PAGE HERO (internal pages) --- */
.cs-page-hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  padding: 150px 0 80px; overflow: hidden;
}
.cs-page-hero .cs-hero-content { width: 100%; }
.cs-page-hero .cs-container { width: min(100% - var(--cs-gutter)*2, var(--cs-max-width)); margin: 0 auto; }
.cs-page-hero h1 { font-size: clamp(32px, 4.5vw, 56px); margin: 0 0 16px; max-width: 100%; }
.cs-page-hero .cs-hero-text { font-size: 18px; max-width: 640px; }

/* --- CONTRAST FIXES --- */
main { background: var(--cs-ink); }
section { background-color: transparent; }
.cs-section-title,
.cs-section h2,
.cs-step h3,
.cs-card h3 { color: var(--cs-white); }
.cs-card p,
.cs-step p,
.cs-section-subtitle { color: var(--cs-muted); }
.cs-kicker { color: var(--cs-gold); }
.cs-section-alt { background: linear-gradient(180deg, #180808 0%, #120606 100%); }
.cs-section-dark { background: #1a0808; }

/* --- BADGES --- */
.cs-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(255,90,0,.12); border: 1px solid rgba(255,90,0,.25);
  font-size: 12px; font-weight: 600; color: var(--cs-orange);
  text-transform: uppercase; letter-spacing: .06em;
}
.cs-badge--gold { background: rgba(255,176,0,.12); border-color: rgba(255,176,0,.25); color: var(--cs-gold); }

/* --- FEATURE GRID --- */
.cs-feature-grid { display: grid; gap: 16px; }
.cs-feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cs-feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cs-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--cs-surface); border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius-sm); transition: border-color .3s;
}
.cs-feature-item:hover { border-color: rgba(255,90,0,.3); }
.cs-feature-icon { width: 24px; height: 24px; color: var(--cs-orange); flex-shrink: 0; margin-top: 2px; }
.cs-feature-text { font-size: 14px; font-weight: 500; color: var(--cs-white); }

/* --- COMPARISON --- */
.cs-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cs-comparison-col { padding: 32px; border-radius: var(--cs-radius); }
.cs-comparison-col--before { background: rgba(255,60,60,.06); border: 1px solid rgba(255,60,60,.15); }
.cs-comparison-col--after { background: rgba(82,214,138,.06); border: 1px solid rgba(82,214,138,.15); }
.cs-comparison-col h3 { margin-bottom: 16px; }
.cs-comparison-col--before h3 { color: #ff8f8f; }
.cs-comparison-col--after h3 { color: var(--cs-success); }
.cs-comparison-col ul { list-style: none; }
.cs-comparison-col li { padding: 8px 0; font-size: 15px; padding-left: 24px; position: relative; }
.cs-comparison-col--before li::before { content: '✕'; position: absolute; left: 0; color: #ff8f8f; font-weight: 700; }
.cs-comparison-col--after li::before { content: '✓'; position: absolute; left: 0; color: var(--cs-success); font-weight: 700; }

/* --- FLOW / STEPS HORIZONTAL --- */
.cs-flow { display: flex; align-items: flex-start; gap: 0; position: relative; }
.cs-flow-step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.cs-flow-step::after {
  content: ''; position: absolute; top: 24px; right: -12px;
  width: 24px; height: 2px; background: var(--cs-orange); opacity: .4;
}
.cs-flow-step:last-child::after { display: none; }
.cs-flow-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cs-surface); border: 2px solid var(--cs-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cs-font-title); font-weight: 800; font-size: 18px;
  color: var(--cs-orange); margin: 0 auto 12px;
}
.cs-flow-step h4 { font-size: 16px; margin-bottom: 6px; }
.cs-flow-step p { font-size: 13px; }

/* --- PLAN CARDS --- */
.cs-plan {
  background: var(--cs-surface); border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius); padding: 32px; text-align: center;
  transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.cs-plan:hover { transform: translateY(-4px); }
.cs-plan--featured { border-color: var(--cs-orange); position: relative; transform: scale(1.03); }
.cs-plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.cs-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cs-gradient-action); color: var(--cs-ink);
  padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.cs-plan h3 { font-size: 22px; margin-bottom: 8px; }
.cs-plan-price {
  font-family: var(--cs-font-title); font-size: 36px; font-weight: 800;
  color: var(--cs-white); margin: 16px 0 8px;
}
.cs-plan-price span { font-size: 16px; font-weight: 400; color: var(--cs-muted); }
.cs-plan-desc { font-size: 14px; margin-bottom: 24px; }
.cs-plan-features { text-align: left; flex: 1; margin-bottom: 24px; }
.cs-plan-features li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(92,48,42,.2); display: flex; align-items: center; gap: 8px; }
.cs-plan-features li::before { content: '✓'; color: var(--cs-success); font-weight: 700; }

/* --- SEGMENT TAGS --- */
.cs-segments { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cs-segment-tag {
  padding: 10px 20px; border-radius: 24px;
  background: var(--cs-surface); border: 1px solid var(--cs-line);
  font-size: 14px; font-weight: 500; color: var(--cs-white);
  transition: border-color .3s, background .3s;
}
.cs-segment-tag:hover { border-color: var(--cs-orange); background: var(--cs-surface-2); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .cs-hero-grid { grid-template-columns: 1fr; }
  .cs-dual { grid-template-columns: 1fr; }
  .cs-cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cs-steps { grid-template-columns: 1fr; }
  .cs-footer-grid { grid-template-columns: 1fr 1fr; }
  .cs-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-testimonial { flex: 0 0 100%; }
  .cs-comparison { grid-template-columns: 1fr; }
  .cs-feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cs-flow { flex-wrap: wrap; }
  .cs-flow-step { flex: 0 0 50%; margin-bottom: 24px; }
  .cs-flow-step::after { display: none; }
  .cs-plan--featured { transform: none; }
  .cs-plan--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  :root { --cs-gutter: 16px; }
  .cs-nav { display: none; }
  .cs-nav.open {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(18,6,6,.98); padding: 40px 24px; gap: 24px; z-index: 199;
  }
  .cs-nav.open .cs-nav-link { font-size: 22px; font-weight: 700; }
  .cs-menu-toggle { display: flex; }
  .cs-header-cta { display: none; }
  .cs-header-inner { height: 64px; }
  .cs-logo { height: 42px; }
  .cs-section { padding: 64px 0; }
  .cs-hero { min-height: auto; padding: 100px 0 60px; }
  .cs-page-hero { min-height: auto; padding: 120px 0 64px; }
  .cs-cards-grid--3 { grid-template-columns: 1fr; }
  .cs-cards-grid--2 { grid-template-columns: 1fr; }
  .cs-feature-grid--4 { grid-template-columns: 1fr; }
  .cs-feature-grid--3 { grid-template-columns: 1fr; }
  .cs-flow-step { flex: 0 0 100%; }
  .cs-footer-grid { grid-template-columns: 1fr; }
  .cs-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-hero-actions { flex-direction: column; }
  .cs-hero-actions .cs-btn { width: 100%; }
  .cs-embreve h1 { font-size: clamp(48px, 16vw, 100px); }
  .cs-submenu { position: static; transform: none; opacity: 1; pointer-events: auto; border: none; box-shadow: none; background: transparent; padding: 0 0 0 20px; }
  .cs-has-submenu .cs-submenu { display: none; }
  .cs-has-submenu.open .cs-submenu { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .cs-animate, .cs-animate-left, .cs-animate-right { opacity: 1; transform: none; }
  .cs-stagger > * { opacity: 1; transform: none; }
  .cs-whatsapp-float { animation: none; }
}
