/* =========================================
   FULL OUTSOURCING — Design System
   ========================================= */

:root {
  --navy:        #2C2C2C;
  --navy-light:  #3D3D3D;
  --blue:        #CC1A1A;
  --blue-dark:   #A81515;
  --blue-pale:   #FDEAEA;
  --green:       #25D366;
  --text:        #1C1C1E;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --bg:          #FFFFFF;
  --bg-alt:      #F9F9F9;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(204,26,26,.15);
  --transition:  .25s ease;
  --max-w:       1160px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Skip link --- */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--blue); color: #fff; padding: .5rem 1rem; z-index: 9999; }
.skip-link:focus { top: 0; }

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

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }
p { max-width: 65ch; }
strong { font-weight: 600; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius-md);
  font-size: .9375rem; font-weight: 600; line-height: 1; white-space: nowrap;
  transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-ghost.btn-lg { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }
.btn-ghost.btn-lg:hover { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: #1EBE57; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; }
.main-nav a {
  display: block; padding: .5rem .75rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy); background: var(--bg-alt); }
.header-cta { margin-left: .5rem; padding: .55rem 1.1rem; font-size: .875rem; }

.header-social { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }
.header-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--navy); background: var(--bg-alt);
  transition: var(--transition);
}
.header-social a:hover { background: var(--blue); color: #fff; }
.header-social svg { width: 18px; height: 18px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* --- Hero --- */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.1) 100%);
  pointer-events: none; z-index: 0;
}
/* Linhas neon decorativas */
.hero-neon-line {
  position: absolute; pointer-events: none; z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(204,26,26,.6), transparent);
  height: 1px; width: 60%;
  animation: neon-sweep 6s ease-in-out infinite;
}
.hero-neon-line--1 { top: 30%; left: -10%; animation-delay: 0s; }
.hero-neon-line--2 { top: 65%; left: 20%; width: 40%; animation-delay: 3s; opacity: .5; }
@keyframes neon-sweep {
  0%,100% { opacity: 0; transform: translateX(-20px); }
  50% { opacity: 1; transform: translateX(20px); }
}
/* Hero layout */
.hero-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: flex-end;
}
.hero-inner { position: relative; padding-bottom: 5rem; }
/* Mascote no hero */
.hero-mascot {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  filter: drop-shadow(0 0 32px rgba(204,26,26,.35));
  animation: mascot-float 4s ease-in-out infinite;
}
.hero-mascot img { width: 100%; max-width: 380px; display: block; }
.hero-mascot-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 40px;
  background: radial-gradient(ellipse, rgba(204,26,26,.5) 0%, transparent 70%);
  filter: blur(12px);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes mascot-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes glow-pulse {
  0%,100% { opacity: .6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.15); }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(204,26,26,.2); border: 1px solid rgba(204,26,26,.55);
  color: rgba(255,255,255,.9); font-size: .8125rem; font-weight: 500;
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.75rem;
  box-shadow: 0 0 12px rgba(204,26,26,.25);
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; line-height: 1.1; }
.hero-span-neon {
  color: #FF6B6B;
  text-shadow: 0 0 20px rgba(204,26,26,.7), 0 0 40px rgba(204,26,26,.4);
}
.hero p { font-size: 1.0625rem; color: rgba(255,255,255,.8); margin-bottom: 2.25rem; max-width: 52ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Logos strip — clientes */
.logos-strip { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.logos-strip-label { text-align: center; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 2rem; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.logos-row img { opacity: .75; transition: opacity .2s; filter: grayscale(30%); max-height: 52px; width: auto; }
.logos-row img:hover { opacity: 1; filter: none; }
.logos-row--large { gap: 1.5rem; }
.logos-row--large img { max-height: 60px; opacity: .8; }

/* Segments grid */
.segments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.segment-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.segment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.segment-card img, .segment-card .segment-icon-svg { margin: 0 auto 1.25rem; }
.segment-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.segment-card p { font-size: .9rem; color: var(--text-muted); max-width: none; }
.segment-card--cta { border-color: rgba(204,26,26,.25); background: var(--blue-pale); }
.segment-card--cta:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(204,26,26,.12); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* Marcas parceiras */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.brand-card {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.75rem 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brand-card img { max-height: 44px; width: auto; max-width: 110px; object-fit: contain; opacity: .85; transition: opacity .2s; }
.brand-card:hover img { opacity: 1; }
.brand-card span { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }

/* Diferenciais em linha */
.diferenciais-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diferencial-item {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--border);
  background: #fff;
  position: relative;
  transition: background .2s;
}
.diferencial-item:last-child { border-right: none; }
.diferencial-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.diferencial-item:hover { background: var(--bg-alt); }
.diferencial-item:hover::after { transform: scaleX(1); }
.diferencial-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background .2s, box-shadow .2s;
}
.diferencial-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.diferencial-item:hover .diferencial-icon {
  background: var(--blue);
  box-shadow: 0 0 14px rgba(204,26,26,.4);
}
.diferencial-item:hover .diferencial-icon svg { stroke: #fff; }
.diferencial-item h3 { font-size: 1rem; margin-bottom: .5rem; }
.diferencial-item p { font-size: .875rem; color: var(--text-muted); max-width: none; }

/* Cards de soluções com foto */
.solucoes-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.solucao-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--text);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.solucao-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.solucao-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.12); border-color: transparent; }
.solucao-card:hover::after { transform: scaleX(1); }
.solucao-img { aspect-ratio: 16/9; overflow: hidden; }
.solucao-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.solucao-card:hover .solucao-img img { transform: scale(1.05); }
.solucao-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .625rem; }
.solucao-body h3 { font-size: 1.0625rem; color: var(--navy); }
.solucao-body p { font-size: .875rem; color: var(--text-muted); flex: 1; }
.solucao-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--blue);
  margin-top: .5rem;
  transition: gap .2s;
}
.solucao-card:hover .solucao-link { gap: .625rem; }

/* Cards de diferenciais — neon no hover */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, rgba(204,26,26,.06) 0%, transparent 100%);
  transition: height .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(204,26,26,.12); border-color: rgba(204,26,26,.2); }
.card:hover::before { height: 100%; }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background .25s, box-shadow .25s;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.card:hover .card-icon {
  background: var(--blue);
  box-shadow: 0 0 16px rgba(204,26,26,.45);
}
.card:hover .card-icon svg { stroke: #fff; }
.card h3 { margin-bottom: .625rem; }
.card p { font-size: .9375rem; color: var(--text-muted); }
.card-link { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 600; color: var(--blue); margin-top: 1rem; }

/* Seção de vídeo */
.video-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.video-section-text .section-label { margin-bottom: .75rem; display: block; }
.video-section-text .section-title { margin-bottom: 1rem; }
.video-section-text p { color: var(--text-muted); margin-bottom: 2rem; }
.video-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.15); }
.video-wrap video { width: 100%; display: block; }

/* Hero para páginas internas — legado (contato etc.) */
.page-hero {
  background: var(--navy); color: #fff; padding: 5rem 0;
  position: relative; background-size: cover; background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.55); pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; margin-bottom: .75rem; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,.8); }

/* Hero duas colunas para páginas de produto */
.inner-hero {
  background: var(--navy); color: #fff;
  padding: 4.5rem 0; position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,26,26,.08) 0%, transparent 60%);
  pointer-events: none;
}
.inner-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(204,26,26,.5), transparent);
}
.inner-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative;
}
.inner-hero-text .section-label { margin-bottom: .75rem; display: block; }
.inner-hero-text .section-label::before { background: rgba(204,26,26,.8); box-shadow: 0 0 8px rgba(204,26,26,.5); }
.inner-hero-text h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.inner-hero-text p { font-size: 1.0625rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 480px; }
.inner-hero-text .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.inner-hero-img { display: flex; align-items: center; justify-content: center; }
.inner-hero-img img { max-height: 340px; width: 100%; object-fit: contain; filter: drop-shadow(0 12px 40px rgba(0,0,0,.35)); }

.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* --- Sections --- */
section { padding: 5.5rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--blue);
  margin-bottom: .875rem;
}
.section-label::before {
  content: ''; display: inline-block; width: 20px; height: 2px;
  background: var(--blue);
  box-shadow: 0 0 6px rgba(204,26,26,.7);
}
.section-title { margin-bottom: .875rem; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 60ch; }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }
.bg-alt { background: var(--bg-alt); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy .section-label { color: rgba(255,255,255,.55); }
.bg-navy .section-label::before { background: rgba(255,255,255,.4); box-shadow: none; }
.bg-navy h2 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,.75); }

/* --- Cards grid --- */
.cards-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* --- Feature list (incluso / checklist) --- */
.feature-list { display: grid; gap: .75rem; }
.feature-item { display: flex; align-items: flex-start; gap: .875rem; }
.feature-item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.feature-item p { font-size: .9375rem; color: var(--text-muted); margin: 0; }

/* --- Stats bar --- */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }
.stat {
  text-align: center; padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-size: 2.75rem; font-weight: 800; color: #fff;
  letter-spacing: -.03em; line-height: 1; margin-bottom: .375rem;
  text-shadow: 0 0 20px rgba(255,255,255,.2);
}
.stat-label { font-size: .8125rem; color: rgba(255,255,255,.5); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.bg-navy .stat-number { color: #fff; text-shadow: 0 0 24px rgba(204,26,26,.5); }
.bg-navy .stat-label { color: rgba(255,255,255,.5); }

/* --- Btn primary neon hover --- */
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 24px rgba(204,26,26,.5), 0 0 0 1px rgba(204,26,26,.3);
  transform: translateY(-2px);
}

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 780px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; gap: 1rem;
  font-size: 1rem; font-weight: 600; text-align: left;
  cursor: pointer; background: var(--bg); transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question[aria-expanded="true"] { color: var(--blue); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: .9375rem; }
.faq-answer.open { display: block; }

/* --- Table (comparativo) --- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
th { background: var(--navy); color: #fff; font-weight: 600; padding: 1rem 1.25rem; text-align: left; }
td { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg-alt); }
.check { color: var(--blue); font-weight: 700; }
.cross { color: var(--text-muted); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--blue); color: #fff;
  padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-inline: auto; margin-bottom: 2rem; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* --- Segmentos chips --- */
.chips { display: flex; flex-wrap: wrap; gap: .75rem; }
.chip {
  padding: .5rem 1rem; border-radius: 100px;
  border: 1px solid var(--border); font-size: .875rem; font-weight: 500;
  color: var(--text-muted); background: var(--bg);
}

/* --- Blog --- */
.posts-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.post-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card-img { aspect-ratio: 16/9; background: var(--bg-alt); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-category { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: .5rem; }
.post-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.post-card h3 a:hover { color: var(--blue); }
.post-card-excerpt { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { font-size: .8125rem; color: var(--text-muted); }

/* Single post */
.post-content { max-width: 740px; margin-inline: auto; }
.post-header { max-width: 740px; margin-inline: auto; margin-bottom: 3rem; }
.post-body { font-size: 1.0625rem; line-height: 1.8; }
.post-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 1.1875rem; margin: 2rem 0 .75rem; }
.post-body p { margin-bottom: 1.25rem; max-width: none; }
.post-body ul, .post-body ol { margin: 1.25rem 0 1.25rem 1.5rem; }
.post-body li { margin-bottom: .5rem; }
.post-body ul li { list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body strong { font-weight: 600; }
.post-body a { color: var(--blue); text-decoration: underline; }
.post-body img { border-radius: var(--radius-md); margin: 2rem 0; }
.post-cta { background: var(--blue-pale); border: 1px solid rgba(0,87,255,.2); border-radius: var(--radius-lg); padding: 2rem; margin: 3rem 0; text-align: center; }
.post-cta h3 { color: var(--navy); margin-bottom: .5rem; }
.post-cta p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: .9375rem; }

/* --- Contact form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 40px; height: 40px; background: var(--blue-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { color: var(--blue); width: 20px; height: 20px; }
.contact-item-text strong { display: block; font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .2rem; }
.contact-item-text a:hover { color: var(--blue); }
.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9375rem;
  transition: var(--transition); background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,255,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: var(--radius-md); padding: 1rem 1.25rem; color: #065F46; display: none; margin-bottom: 1rem; }

/* --- Footer --- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .9rem; margin-top: .75rem; line-height: 1.6; max-width: 28ch; }
.site-footer h3 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1rem; font-weight: 600; }
.site-footer ul { display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-contact li { font-size: .875rem; }
.footer-cta .btn { width: 100%; text-align: center; margin-bottom: .75rem; }
.footer-cta p { font-size: .875rem; margin-bottom: 1.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); max-width: none; }

/* --- WhatsApp float --- */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  display: flex; align-items: center; gap: .6rem;
  background: var(--blue); color: #fff;
  border-radius: 999px; padding: .4rem 1.1rem .4rem .4rem;
  box-shadow: 0 4px 20px rgba(204,26,26,.4);
  transition: var(--transition);
}
.whatsapp-float img { width: 48px; height: 48px; border-radius: 50%; display: block; flex-shrink: 0; }
.whatsapp-float-text { font-weight: 600; font-size: .9rem; white-space: nowrap; }
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(204,26,26,.5); }

/* --- Includes / dois colunas --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text h2 { margin-bottom: 1rem; }
.col-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.col-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-alt); aspect-ratio: 4/3; }
.col-img img { width: 100%; height: 100%; object-fit: cover; }
.col-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .875rem; }

/* --- Responsive --- */
/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Tablet largo — 860px */
@media (max-width: 860px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-mascot { display: none; }
  .hero-card { display: none; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .inner-hero-img { display: none; }
  .inner-hero { padding: 3.5rem 0; }
  .solucoes-grid { grid-template-columns: 1fr; }
  .diferenciais-row { grid-template-columns: 1fr 1fr; }
  .diferencial-item { border-bottom: 1px solid var(--border); border-right: none; }
  .diferencial-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .diferencial-item:last-child,
  .diferencial-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .video-section { grid-template-columns: 1fr; gap: 2rem; }
  .logos-row { gap: 1.25rem; }
  .logos-row img { max-width: 90px; }
  .ribbons-grid { grid-template-columns: 1fr; }
  .destaque-box { flex-direction: column; gap: 1rem; }
  .crosslink-box { flex-direction: column; }
  .crosslink-box .btn { width: 100%; text-align: center; }
}

/* Tablet — 768px */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .hero { padding: 3.5rem 0 0; min-height: auto; }
  .hero-inner { padding-bottom: 3.5rem; }

  /* Nav */
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .header-social { display: none; }
  .whatsapp-float-text { display: none; }
  .whatsapp-float { padding: .4rem; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: .875rem .75rem; }

  /* Layouts */
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: .5rem; }

  /* Texto */
  p { max-width: 100%; }
  .section-subtitle { max-width: 100%; }

  /* Tabela comparativa */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 480px; }

  /* Botões hero */
  .hero-actions { flex-wrap: wrap; gap: .75rem; }
  .inner-hero-text .hero-actions { flex-direction: column; align-items: flex-start; }
  .inner-hero-text .hero-actions .btn { width: 100%; justify-content: center; }

  /* CTA banner */
  .cta-actions { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  /* Destaque box */
  .destaque-box { padding: 1.5rem; }

  /* Crosslink box */
  .crosslink-box { padding: 1.75rem; }
}

/* Mobile — 600px */
@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .diferenciais-row { grid-template-columns: 1fr; }
  .diferencial-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .diferencial-item:last-child { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .solucao-card { flex-direction: column; }
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* Mobile pequeno — 480px */
@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
  .container { padding-inline: 1rem; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1rem; }

  /* Hero home */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Grids */
  .segments-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .logos-row { gap: .75rem; }
  .logos-row img { max-width: 72px; }

  /* Cards */
  .card { padding: 1.5rem 1.25rem; }
  .ribbon-card { padding: 1.5rem 1.25rem; }
  .segment-card { padding: 1.5rem 1.25rem; }
  .diferencial-item { padding: 1.5rem 1.25rem; }

  /* Tabela */
  table { font-size: .8125rem; }
  table td, table th { padding: .6rem .75rem; }

  /* FAQ */
  .faq-question { font-size: .9rem; }

  /* Inner hero */
  .inner-hero { padding: 2.5rem 0; }
  .inner-hero-text h1 { font-size: 1.75rem; }
  .inner-hero-text p { font-size: .9375rem; }

  /* Footer */
  .footer-brand p { font-size: .875rem; }
  .footer-links ul li, .footer-contact ul li { font-size: .875rem; }

  /* Destaque box */
  .destaque-box { padding: 1.25rem; }
  .destaque-box-icon { width: 42px; height: 42px; }

  /* Chips */
  .chip { font-size: .775rem; padding: .35rem .75rem; }

  /* Botões */
  .btn-lg { padding: .875rem 1.5rem; font-size: .9375rem; }
  .btn-sm { padding: .45rem 1rem; }

  /* Nav dropdown no mobile */
  .nav-dropdown-toggle { padding: .875rem .75rem; }
}

/* =========================================
   ANIMAÇÕES E MOVIMENTO
   ========================================= */

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* --- Hero animado --- */
.hero-tag   { animation: fadeSlideDown .5s ease both; }
.hero h1    { animation: fadeSlideUp .6s .1s ease both; }
.hero p     { animation: fadeSlideUp .6s .25s ease both; }
.hero-actions { animation: fadeSlideUp .6s .4s ease both; }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Cards com hover mais vivo --- */
.card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(204,26,26,.12);
  border-color: rgba(204,26,26,.2);
}
.card-icon {
  transition: transform .3s ease, background .3s ease;
}
.card:hover .card-icon {
  transform: scale(1.12);
  background: #FCD9D9;
}

/* --- Linha decorativa no card-link --- */
.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .25s ease;
}
.card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.card:hover .card-link::after { width: 100%; }
.card:hover .card-link { gap: .6rem; }

/* --- Botão com efeito de onda --- */
.btn-primary, .btn-wa {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.btn-primary:hover::after, .btn-wa:hover::after {
  transform: translateX(0);
}

/* --- Número counter pulse --- */
.stat-number {
  display: inline-block;
  transition: transform .3s ease;
}
.stat:hover .stat-number {
  transform: scale(1.08);
}

/* --- Header scroll effect --- */
.site-header {
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

/* --- FAQ com slide suave --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  display: block !important;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* --- WhatsApp float com pulso --- */
.whatsapp-float {
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(204,26,26,.4); }
  50%       { box-shadow: 0 4px 32px rgba(204,26,26,.7), 0 0 0 8px rgba(204,26,26,.1); }
}
.whatsapp-float:hover { animation: none; }

/* --- Linha de destaque no hero --- */
.hero h1 span {
  position: relative;
  display: inline-block;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  opacity: .6;
}

/* --- Section label com barra lateral --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* --- Chip hover --- */
.chip {
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.chip:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* --- Feature item animado --- */
.feature-item {
  transition: transform .25s ease;
}
.feature-item:hover {
  transform: translateX(4px);
}
.feature-item svg {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--blue);
}
.feature-item:hover svg {
  transform: scale(1.2);
}

/* --- Linha decorativa abaixo do h2 em seções --- */
.section-title {
  position: relative;
  padding-bottom: .875rem;
  margin-bottom: 1rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}
.section-header--center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* --- Stat bar com borda animada --- */
.stat {
  position: relative;
  transition: transform .3s ease;
}
.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: width .4s ease;
}
.stat:hover::after { width: 40px; }
.stat:hover { transform: translateY(-4px); }

/* --- CTA banner com brilho no botão --- */
.btn-white {
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* --- Post card hover --- */
.post-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(204,26,26,.1);
}

/* --- Nav link com underline animado --- */
.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .75rem;
  right: .75rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .25s ease;
  border-radius: 2px;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* --- Dropdown de navegação --- */
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  display: block; padding: .5rem .75rem; border-radius: var(--radius-sm);
  font: inherit; font-size: .875rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
  display: flex; align-items: center; gap: .3rem;
  position: relative;
}
.nav-dropdown-toggle:hover,
.has-dropdown.open .nav-dropdown-toggle { color: var(--navy); background: var(--bg-alt); }
.nav-dropdown-toggle::after {
  content: ''; position: absolute; bottom: 4px; left: .75rem; right: .75rem; height: 2px;
  background: var(--blue); transform: scaleX(0); transition: transform .25s ease; border-radius: 2px;
}
.nav-dropdown-toggle:hover::after,
.has-dropdown.open .nav-dropdown-toggle::after { transform: scaleX(1); }
.dropdown-chevron { transition: transform .2s ease; flex-shrink: 0; margin-left: .1rem; }
.has-dropdown.open .dropdown-chevron { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: 0 12px 40px rgba(0,0,0,.12);
  width: 220px; padding: .375rem;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  list-style: none; margin: 0;
  /* Override do .main-nav ul { display: flex } */
  display: flex; flex-direction: column; gap: 0;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top: none;
  border-bottom-color: var(--border);
}
.nav-dropdown::after {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top: none;
  border-bottom-color: #fff;
}
.has-dropdown.open .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .75rem; border-radius: var(--radius-md);
  text-decoration: none; color: var(--text); transition: background .15s;
}
.nav-dropdown li a:hover { background: var(--blue-pale); }
.nav-dropdown li a::after { display: none; }
.nav-dropdown-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.nav-dropdown-icon svg { width: 15px; height: 15px; stroke: var(--blue); }
.nav-dropdown li a:hover .nav-dropdown-icon { background: rgba(204,26,26,.12); }
.nav-dropdown-text { display: flex; flex-direction: column; gap: .1rem; }
.nav-dropdown-text strong { font-size: .8125rem; font-weight: 600; line-height: 1.2; color: var(--navy); }
.nav-dropdown-text small { font-size: .72rem; color: var(--text-muted); font-weight: 400; line-height: 1.3; }

/* Mobile: dropdown vira lista vertical */
@media (max-width: 860px) {
  .nav-dropdown {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; padding: 0;
    background: transparent; opacity: 1; pointer-events: auto;
    display: none;
  }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { padding: .6rem 1rem .6rem 2rem; }
  .nav-dropdown-icon { display: none; }
  .nav-dropdown-text small { display: none; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: .5rem 0; }
}

/* --- Header CTA cor vermelha --- */
.header-cta { background: var(--blue); color: #fff; }
.header-cta:hover { background: var(--blue-dark); }

/* --- Página etiquetas e ribbons --- */
.destaque-box {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: var(--blue-pale); border: 1px solid rgba(204,26,26,.2);
  border-left: 4px solid var(--blue); border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}
.destaque-box-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(204,26,26,.35);
}
.destaque-box-icon svg { stroke: #fff; }
.destaque-box h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.destaque-box p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

.card--etiqueta .card-uso { font-size: .8125rem; color: var(--text-muted); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }

.ribbons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ribbon-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; transition: transform .2s, box-shadow .2s;
}
.ribbon-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(204,26,26,.12); border-color: rgba(204,26,26,.2); }
.ribbon-card--destaque { border-color: rgba(204,26,26,.3); background: var(--blue-pale); }
.ribbon-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.ribbon-card-header h3 { margin: 0; font-size: 1.05rem; }
.ribbon-tag { font-size: .75rem; font-weight: 600; padding: .2rem .65rem; border-radius: 999px; }
.ribbon-tag--eco { background: #e8f5e9; color: #2e7d32; }
.ribbon-tag--top { background: rgba(204,26,26,.1); color: var(--blue); }
.ribbon-tag--pro { background: #e3f2fd; color: #1565c0; }
.ribbon-specs { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .4rem; }
.ribbon-specs li { font-size: .85rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.ribbon-specs li::before { content: '–'; position: absolute; left: 0; color: var(--blue); }

.crosslink-box {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
}
.crosslink-box-text .section-label { display: block; margin-bottom: .5rem; }
.crosslink-box-text h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.crosslink-box-text p { color: var(--text-muted); font-size: .9375rem; margin: 0; max-width: 480px; }

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .hero-tag, .hero h1, .hero p, .hero-actions,
  .whatsapp-float { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
