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

:root {
  --brand: #1E50C8;
  --brand-dark: #163d9e;
  --brand-light: #3b6fd4;
  --ink: #0a0f1a;
  --ink-soft: #111827;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --muted: #64748b;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 25px 50px -12px rgba(30, 80, 200, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0f172a; background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; height: 72px; gap: 32px;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; }
.site-nav { display: none; gap: 20px; align-items: center; justify-content: center; flex-wrap: nowrap; }
.site-nav a {
  font-size: 0.8125rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s; white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost { font-size: 0.875rem; font-weight: 600; padding: 8px 16px; color: var(--ink); }
.btn-ghost:hover { color: var(--brand); }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 600; background: var(--brand); color: white;
  padding: 12px 22px; border-radius: 999px; box-shadow: 0 4px 14px rgba(30,80,200,0.3);
  line-height: 1.25; min-height: 44px; text-align: center;
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 600; border: 2px solid rgba(255,255,255,0.4);
  color: white; padding: 12px 24px; border-radius: 12px;
  line-height: 1.25; min-height: 44px; text-align: center;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.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); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px; border-top: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); }
@media (min-width: 1024px) { .site-nav { display: flex; } .menu-toggle { display: none; } }

.hero { position: relative; overflow: hidden; padding: 80px 0 100px; background: linear-gradient(180deg, #f0f4ff 0%, var(--white) 100%); }
.hero.dark { background: var(--ink); color: white; padding: 100px 0 120px; }
.hero.dark .lead { color: rgba(255,255,255,0.75); }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(30,80,200,0.1); border: 1px solid rgba(30,80,200,0.2);
  color: var(--brand); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.hero.dark .hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero h1 .accent { color: var(--brand); }
.hero.dark h1 .accent { background: linear-gradient(135deg, #6b9fff, #a5c4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .lead { font-size: 1.125rem; color: var(--muted); max-width: 52ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.hero-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

/* Hero impactante — home */
.hero-impact {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: var(--ink); color: white; overflow: hidden;
}
.hero-impact .hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.4;
}
.hero-impact .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,0.94) 0%, rgba(30,80,200,0.5) 100%);
}
.hero-impact-grid {
  position: relative; z-index: 1; display: grid; gap: 48px; align-items: center;
  padding: 100px 0 80px;
}
.hero-impact-content .hero-logo { height: 56px; width: auto; margin-bottom: 28px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); }
.hero-impact h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-impact h1 .accent { background: linear-gradient(135deg, #6b9fff, #a5c4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-impact .lead { font-size: 1.125rem; color: rgba(255,255,255,0.78); max-width: 52ch; margin-bottom: 32px; }
.hero-impact .hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.hero-visual-stack { position: relative; }
.hero-visual-frame { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 40px 80px rgba(0,0,0,0.45); }
.hero-visual-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-watermark { position: absolute; bottom: -24px; right: -16px; height: 88px; width: auto; opacity: 0.12; pointer-events: none; }
.hero-page-logo { height: 44px; width: auto; margin-bottom: 20px; }
@media (min-width: 768px) { .hero-impact-grid { grid-template-columns: 1.05fr 0.95fr; } }

/* Partner strip */
.partner-strip { background: var(--brand); color: white; font-size: 0.8125rem; }
.partner-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; padding: 10px 24px; text-align: center; }
.partner-strip a { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.partner-strip a:hover { opacity: 0.9; }

/* Hero carousel — estilo beNuvem */
.hero-carousel { position: relative; min-height: 85vh; background: var(--ink); color: white; overflow: hidden; }
.hero-carousel-track { position: relative; height: 100%; min-height: 85vh; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.6s ease, visibility 0.6s;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,0.92) 0%, rgba(30,80,200,0.55) 100%);
}
.hero-slide-inner { position: relative; z-index: 2; padding: 100px 0 80px; max-width: 640px; }
.hero-slide .hero-logo { height: 52px; width: auto; margin-bottom: 24px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); }
.hero-slide h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-slide h1 .accent { background: linear-gradient(135deg, #6b9fff, #a5c4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-slide .lead { font-size: 1.0625rem; color: rgba(255,255,255,0.78); max-width: 52ch; margin-bottom: 28px; line-height: 1.65; }
.hero-slide .hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.hero-dual-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; align-items: center; }
.hero-dual-cta .btn-primary,
.hero-dual-cta .btn-outline { min-height: 48px; padding-inline: 24px; }
.hero-slide-link { color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 600; }
.hero-slide-link:hover { color: white; }
.hero-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35); color: white; font-size: 1.75rem; line-height: 1; cursor: pointer;
  backdrop-filter: blur(8px); transition: background 0.2s;
}
.hero-carousel-btn:hover { background: rgba(30,80,200,0.6); }
.hero-carousel-prev { left: 16px; }
.hero-carousel-next { right: 16px; }
.hero-carousel-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.hero-dot.active { background: white; transform: scale(1.2); }

/* Intro beNuvem-style */
.intro-block { display: grid; gap: 24px; align-items: center; margin-bottom: 40px; text-align: center; }
.intro-logo { height: 96px; width: auto; margin: 0 auto; }
.intro-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.intro-text p { color: var(--muted); max-width: 64ch; margin: 0 auto; }
.intro-products { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.intro-product-card {
  padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: white;
  transition: transform 0.2s, box-shadow 0.2s; display: block;
}
.intro-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.intro-product-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.intro-product-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.intro-product-card p { font-size: 0.8125rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
@media (min-width: 768px) { .intro-block { grid-template-columns: auto 1fr; text-align: left; } .intro-logo { margin: 0; height: 120px; } .intro-text p { margin: 0; } }

/* ConfVision na prática */
.practice-stack { display: flex; flex-direction: column; gap: 48px; }
.practice-block { display: grid; gap: 32px; align-items: center; }
.practice-block.reverse .practice-content { order: 2; }
.practice-block.reverse .practice-visual { order: 1; }
.practice-content h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 800; margin: 8px 0 16px; line-height: 1.25; }
.practice-content p { color: var(--muted); line-height: 1.65; max-width: 52ch; }
.practice-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.practice-visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
@media (min-width: 768px) { .practice-block { grid-template-columns: 1fr 1fr; } .practice-block.reverse .practice-content { order: 1; } .practice-block.reverse .practice-visual { order: 2; } }

/* Exclusivos */
.exclusive-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.exclusive-card { padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: white; }
.exclusive-icon { font-size: 1.75rem; display: block; margin-bottom: 12px; }
.exclusive-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 8px; }
.exclusive-card p { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }

/* Partner promo */
.partner-promo { background: linear-gradient(135deg, rgba(30,80,200,0.08), rgba(30,80,200,0.02)); }
.partner-promo-inner { display: grid; gap: 32px; align-items: center; }
.partner-promo h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin: 8px 0 16px; line-height: 1.2; max-width: 28ch; }
.partner-promo p { color: var(--muted); max-width: 52ch; line-height: 1.65; }
.partner-promo-logo { height: 100px; width: auto; margin: 0 auto; opacity: 0.9; }
@media (min-width: 768px) { .partner-promo-inner { grid-template-columns: 1fr auto; } .partner-promo-logo { margin: 0; height: 120px; } }

/* Brand showcase */
.brand-showcase { padding: 64px 0; background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%); border-bottom: 1px solid var(--border); }
.brand-showcase-inner { display: grid; gap: 32px; align-items: center; }
.brand-showcase-logo { height: 96px; width: auto; margin: 0 auto; }
.brand-showcase-text { text-align: center; }
.brand-showcase-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.brand-showcase-text p { color: var(--muted); max-width: 56ch; margin: 0 auto; }
.brand-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.brand-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); transition: transform 0.3s; }
.brand-gallery img:hover { transform: scale(1.03); }
@media (min-width: 768px) {
  .brand-showcase-inner { grid-template-columns: auto 1fr; }
  .brand-showcase-logo { margin: 0; height: 120px; }
  .brand-showcase-text { text-align: left; }
  .brand-showcase-text p { margin: 0; }
}
.brand-showcase-simple { grid-template-columns: 1fr !important; }
@media (min-width: 768px) {
  .brand-showcase-simple { grid-template-columns: auto 1fr !important; align-items: center; }
}

.visual-stats-bar { position: relative; margin-top: -32px; z-index: 2; background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 24px 32px; }

.alert-marquee { overflow: hidden; background: var(--ink-soft); padding: 14px 0; border-block: 1px solid rgba(255,255,255,0.06); }
.alert-marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; white-space: nowrap; }
.alert-marquee span { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; }
.alert-marquee span::before { content: '@ '; color: var(--brand-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 80px 0; }
.section.dark { background: var(--ink); color: white; }
.section.alt { background: var(--surface); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section.dark .section-label { color: var(--brand-light); }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: 1.0625rem; }
.section.dark .section-header p { color: rgba(255,255,255,0.65); }

.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.product-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.product-card-body { padding: 28px; }
.product-card-badge { display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); background: rgba(30,80,200,0.08); padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.product-card h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 16px; }
.product-card-link { font-size: 0.875rem; font-weight: 600; color: var(--brand); }

.feature-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature-item { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--border); }
.section.dark .feature-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(30,80,200,0.1); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 16px; }
.feature-item h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; }
.feature-item p { font-size: 0.9375rem; color: var(--muted); }
.section.dark .feature-item p { color: rgba(255,255,255,0.6); }

.compare-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.compare-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-card.before { border-color: #fecaca; }
.compare-card.after { border-color: #bbf7d0; }
.compare-label { padding: 12px 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-card.before .compare-label { background: #fef2f2; color: #dc2626; }
.compare-card.after .compare-label { background: #f0fdf4; color: #16a34a; }
.compare-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.compare-body { padding: 24px; }
.compare-body h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.compare-body p { font-size: 0.9375rem; color: var(--muted); }

.module-list { display: flex; flex-direction: column; gap: 32px; }
.module-item { display: grid; gap: 32px; align-items: center; padding: 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.module-num { font-size: 0.75rem; font-weight: 700; color: var(--brand); letter-spacing: 0.08em; }
.module-item h3 { font-size: 1.5rem; font-weight: 700; margin: 8px 0 12px; }
.module-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.module-tags span { font-size: 0.8125rem; padding: 6px 12px; border-radius: 8px; background: white; border: 1px solid var(--border); color: var(--muted); }
@media (min-width: 768px) { .module-item { grid-template-columns: 1fr 1fr; } }

.stats-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 800; color: var(--brand); line-height: 1; }
.stat-item p { font-size: 0.875rem; color: var(--muted); margin-top: 8px; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); border: 2px solid white; box-shadow: 0 0 0 2px var(--brand); }
.timeline-year { font-size: 0.8125rem; font-weight: 700; color: var(--brand); }
.timeline-item h3 { font-size: 1.0625rem; font-weight: 700; margin: 4px 0 8px; }
.timeline-item p { font-size: 0.9375rem; color: var(--muted); }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--brand); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 8px 16px; border-radius: 999px; font-size: 0.8125rem; font-weight: 500; border: 1px solid var(--border); background: white; cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--brand); color: white; border-color: var(--brand); }

.content-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: white; transition: transform 0.2s, box-shadow 0.2s; }
.content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.content-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.content-card-body { padding: 24px; }
.content-card-tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; color: var(--brand); letter-spacing: 0.06em; margin-bottom: 8px; }
.content-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.content-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 12px; }

.contact-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border); font-family: inherit; font-size: 0.9375rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-item { margin-bottom: 24px; }
.contact-info-item h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { color: var(--muted); font-size: 0.9375rem; }

.cta-section { padding: 80px 0; text-align: center; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: white; }
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 16px; }
.cta-section p { opacity: 0.85; margin-bottom: 32px; max-width: 480px; margin-inline: auto; }
.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: white; color: var(--brand); font-weight: 700;
  padding: 14px 32px; border-radius: 999px;
  line-height: 1.25; min-height: 48px; text-align: center;
}

.steps-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.step-item { text-align: center; padding: 24px 16px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.125rem; margin: 0 auto 16px; }
.step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 0.875rem; color: var(--muted); }

.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 48px; }
.footer-brand img, .footer-logo { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; padding: 4px 0; }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 0.8125rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 32px 0; }
.pill-list span { padding: 10px 18px; border-radius: 999px; background: rgba(30,80,200,0.08); border: 1px solid rgba(30,80,200,0.15); font-size: 0.875rem; font-weight: 500; color: var(--brand); }

.guarita-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.guarita-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: white; }
.guarita-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.guarita-card-body { padding: 20px; }
.guarita-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.guarita-card-body p { font-size: 0.875rem; color: var(--muted); }
.guarita-meta { display: flex; gap: 8px; margin-top: 12px; font-size: 0.75rem; font-weight: 600; color: var(--brand); }

.breadcrumb { font-size: 0.8125rem; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--brand); }

.article-content { max-width: 720px; margin: 0 auto; }
.article-content h2 { font-size: 1.375rem; font-weight: 700; margin: 32px 0 12px; color: var(--ink); }
.article-content p { margin-bottom: 16px; color: var(--muted); line-height: 1.75; font-size: 1rem; }
.article-content a { color: var(--brand); text-decoration: underline; }
.article-meta { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }

.case-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow); }
.case-hero-img img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.case-metrics { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); margin: 32px 0 40px; }
.case-metric { text-align: center; padding: 24px 16px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.case-metric strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--brand); line-height: 1; }
.case-metric span { font-size: 0.8125rem; color: var(--muted); margin-top: 8px; display: block; }
.case-client { font-size: 0.875rem; color: var(--brand); font-weight: 600; margin-bottom: 8px; }

.content-card a.card-link { display: block; color: inherit; }
.content-card a.card-link:hover h3 { color: var(--brand); }
.read-more { font-size: 0.875rem; font-weight: 600; color: var(--brand); margin-top: 8px; display: inline-block; }

.home-stats { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); text-align: center; padding: 48px 0; border-block: 1px solid var(--border); }
.home-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--brand); }
.home-stat span { font-size: 0.875rem; color: var(--muted); }

.arch-flow { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; margin-top: 32px; }
.arch-step { padding: 16px 24px; border-radius: 12px; background: rgba(30,80,200,0.08); border: 1px solid rgba(30,80,200,0.15); text-align: center; min-width: 120px; }
.arch-step strong { display: block; font-size: 0.75rem; color: var(--brand); margin-bottom: 4px; }
.arch-arrow { color: var(--muted); font-size: 1.25rem; }

.sector-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: white; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.sector-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sector-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.sector-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.cta-brand-logo { height: 100px; width: auto; margin: 0 auto 28px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }
.cta-brand { background: linear-gradient(180deg, var(--ink) 0%, #0f172a 100%); }
.sector-card-body { padding: 24px; }
.sector-card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.sector-card-body p { font-size: 0.9375rem; color: var(--muted); }

.values-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.value-item { padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: white; }
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--brand); }
.value-item p { font-size: 0.875rem; color: var(--muted); }

.advantage-box {
  padding: 32px; border-radius: var(--radius); margin-top: 48px;
  background: linear-gradient(135deg, rgba(30,80,200,0.08), rgba(30,80,200,0.02));
  border: 1px solid rgba(30,80,200,0.15); text-align: center;
}
.advantage-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--brand); }
.advantage-box p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.advantage-box-logo { height: 40px; width: auto; margin: 0 auto 16px; display: block; }
.value-item-logo { height: 24px; width: auto; margin-bottom: 12px; display: block; opacity: 0.85; }
.timeline-logo { height: 28px; width: auto; margin: 8px 0 10px; display: block; }
.compare-brand-logo { height: 32px; width: auto; margin-bottom: 16px; display: block; }

/* Landing empresário */
.landing-hero { padding: 100px 0 80px; background: var(--ink); color: white; text-align: center; }
.landing-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto 20px; }
.landing-hero .sub { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.75); max-width: 42ch; margin: 0 auto 36px; line-height: 1.4; }
.landing-hero .sub strong { color: #fca5a5; font-weight: 700; }
.pain-ticker { overflow: hidden; background: #dc2626; padding: 12px 0; }
.pain-ticker-track { display: flex; gap: 48px; animation: marquee 22s linear infinite; white-space: nowrap; }
.pain-ticker span { font-size: 0.875rem; font-weight: 600; color: white; letter-spacing: 0.02em; }

.pain-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; }
.pain-list { list-style: none; }
.pain-list li { padding: 14px 0 14px 28px; border-bottom: 1px solid var(--border); position: relative; font-size: 1rem; color: var(--ink); }
.pain-list li::before { content: '✕'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.pain-highlight { padding: 32px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(30,80,200,0.12), rgba(30,80,200,0.04)); border: 1px solid rgba(30,80,200,0.2); }
.pain-highlight .advantage-box-logo { margin: 0 0 16px; }
.pain-highlight h3 { font-size: 1.375rem; font-weight: 800; margin-bottom: 16px; color: var(--brand); }

.scenario-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.scenario-card { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--border); border-left: 4px solid var(--brand); }
.scenario-card .scenario-tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); margin-bottom: 10px; }
.scenario-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.scenario-card p { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }
.scenario-card strong { color: var(--ink); font-weight: 700; }

.leak-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.leak-item { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: center; }
.leak-item .leak-icon { font-size: 1.75rem; margin-bottom: 12px; }
.leak-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.leak-item p { font-size: 0.875rem; color: var(--muted); }

.landing-cta { padding: 100px 0; background: var(--ink); color: white; text-align: center; }
.landing-cta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; max-width: 20ch; margin-inline: auto; }
.landing-cta p { color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 42ch; margin-inline: auto; }

/* Casos de uso */
.use-case-block { display: grid; gap: 32px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--border); }
.use-case-block:last-child { border-bottom: none; }
.use-case-block img { border-radius: var(--radius); width: 100%; aspect-ratio: 16/10; object-fit: cover; box-shadow: var(--shadow); }
.use-case-emoji { font-size: 2rem; margin-bottom: 8px; }
.use-case-block h2 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 800; margin-bottom: 12px; }
.use-case-block > div > p { color: var(--muted); margin-bottom: 20px; font-size: 1rem; }
.use-case-bullets { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.use-case-bullets li { padding-left: 24px; position: relative; font-size: 0.9375rem; color: var(--ink); }
.use-case-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.use-case-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.use-case-product { font-size: 0.8125rem; font-weight: 600; color: var(--muted); }
.use-case-product a { color: var(--brand); }
@media (min-width: 768px) { .use-case-block { grid-template-columns: 1fr 1fr; } .use-case-block.reverse { direction: rtl; } .use-case-block.reverse > * { direction: ltr; } }

.integration-stack { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-top: 40px; }
.integration-step { text-align: center; padding: 24px 16px; border-radius: var(--radius); background: white; border: 1px solid var(--border); }
.integration-step .step-icon { font-size: 1.5rem; margin-bottom: 12px; }
.integration-step h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.integration-step p { font-size: 0.8125rem; color: var(--muted); }

.home-duo-cta { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.home-duo-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: white; transition: transform 0.2s, box-shadow 0.2s; }
.home-duo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.home-duo-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.home-duo-card p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 16px; }
.home-duo-card .link-arrow,
.sector-card-body .link-arrow { font-size: 0.875rem; font-weight: 600; color: var(--brand); }
.sector-card-body .link-arrow { display: inline-block; margin-top: 8px; }

.home-preview-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 40px; }
.home-preview-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; }
.home-preview-header a { font-size: 0.875rem; font-weight: 600; color: var(--brand); }
.content-card-meta { font-size: 0.8125rem; color: var(--muted); }

.pillar-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pillar-card { display: flex; flex-direction: column; gap: 0; padding: 0; border-radius: var(--radius); border: 1px solid var(--border); background: white; transition: transform 0.2s, box-shadow 0.2s; color: inherit; overflow: hidden; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-card-thumb { overflow: hidden; }
.pillar-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.4s; }
.pillar-card:hover .pillar-card-thumb img { transform: scale(1.05); }
.pillar-card-body { padding: 24px; }
.pillar-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.pillar-icon { font-size: 2rem; flex-shrink: 0; }
.pillar-card-body h3 { font-size: 1.125rem; font-weight: 700; margin: 8px 0; }
.pillar-card-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 12px; }

.ia-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ia-tags span { padding: 10px 18px; border-radius: 999px; background: white; border: 1px solid var(--border); font-size: 0.875rem; font-weight: 500; }

.help-category { margin-bottom: 40px; }
.help-category-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.help-category-logo { height: 24px; width: auto; flex-shrink: 0; opacity: 0.9; }
.help-category-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0; }
.help-link-list { list-style: none; }
.help-link-list li { border-bottom: 1px solid var(--border); }
.help-link-list a { display: block; padding: 14px 0; font-weight: 500; font-size: 0.9375rem; }
.help-link-list a:hover { color: var(--brand); }
.help-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.help-related h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }

.legal-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 12px; }
.legal-content p { color: var(--muted); margin-bottom: 12px; line-height: 1.75; }
.legal-content a { color: var(--brand); }

.capability-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.capability-card {
  display: block; padding: 0; border-radius: var(--radius); border: 1px solid var(--border);
  background: white; transition: transform 0.2s, box-shadow 0.2s; color: inherit; overflow: hidden;
}
.capability-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.capability-card-thumb { overflow: hidden; }
.capability-card-thumb .branded-img img:first-child { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.4s; }
.capability-card:hover .capability-card-thumb img:first-child { transform: scale(1.05); }
.capability-card-body { padding: 24px; }
.capability-icon { font-size: 1.75rem; display: block; margin-bottom: 12px; }
.capability-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.capability-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }

.why-choose { display: grid; gap: 40px; align-items: center; }
.why-choose-visual { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-choose-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.why-choose-logo { position: absolute; bottom: 20px; right: 20px; height: 64px; width: auto; background: white; padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow); }
.why-choose-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.why-choose-text p { color: var(--muted); margin-bottom: 20px; max-width: 56ch; }
.why-choose-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.why-choose-list li { padding-left: 24px; position: relative; font-size: 0.9375rem; font-weight: 500; }
.why-choose-list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.why-choose-stats { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.why-stat { padding: 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: center; }
.why-stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--brand); margin-bottom: 4px; }
.why-stat span { font-size: 0.8125rem; color: var(--muted); }
@media (min-width: 768px) { .why-choose { grid-template-columns: 1fr 1.2fr; } }

.service-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: white; }
.service-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.service-bullets { list-style: none; margin-bottom: 20px; }
.service-bullets li { padding: 6px 0 6px 20px; position: relative; font-size: 0.875rem; color: var(--muted); }
.service-bullets li::before { content: '•'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

.intel-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.intel-card { padding: 0; border-radius: var(--radius); border: 1px solid var(--border); background: white; overflow: hidden; }
.intel-card-thumb { overflow: hidden; }
.intel-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.4s; }
.intel-card:hover .intel-card-thumb img { transform: scale(1.04); }
.intel-card-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; padding: 0 28px; padding-top: 20px; }
.intel-desc, .intel-usecases, .intel-card .link-arrow { padding-left: 28px; padding-right: 28px; }
.intel-card .link-arrow { display: inline-block; padding-bottom: 28px; }
.intel-icon { font-size: 2rem; flex-shrink: 0; }
.intel-card h3 { font-size: 1.125rem; font-weight: 700; margin: 4px 0; }
.intel-subtitle { font-size: 0.8125rem; color: var(--brand); font-weight: 600; }
.intel-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.intel-usecases { list-style: none; margin-bottom: 16px; }
.intel-usecases li { padding: 4px 0 4px 16px; position: relative; font-size: 0.875rem; color: var(--muted); }
.intel-usecases li::before { content: '→'; position: absolute; left: 0; color: var(--brand); }

.challenge-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.challenge-item { padding: 24px; border-radius: var(--radius); background: white; border: 1px solid var(--border); }
.challenge-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.challenge-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.challenge-list { list-style: none; max-width: 720px; margin: 0 auto; }
.challenge-list li { padding: 16px 0 16px 28px; position: relative; font-size: 1rem; color: var(--ink-soft); border-bottom: 1px solid var(--border); line-height: 1.5; }
.challenge-list li:last-child { border-bottom: none; }
.challenge-list li::before { content: '✕'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.integration-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.integration-logos span { padding: 12px 20px; border-radius: 10px; background: white; border: 1px solid var(--border); font-size: 0.875rem; font-weight: 600; color: var(--ink-soft); }
.integration-logo-brand { height: 28px; width: auto; padding: 12px 20px; border-radius: 10px; background: white; border: 1px solid var(--border); }

.testimonial-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial-card { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--border); margin: 0; }
.testimonial-card p { font-size: 0.9375rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px; font-style: italic; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 4px; }
.testimonial-card footer strong { font-size: 0.875rem; }
.testimonial-card footer span { font-size: 0.8125rem; color: var(--muted); }

.compare-list { list-style: none; }
.compare-list li { padding: 8px 0 8px 24px; position: relative; font-size: 0.9375rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before { content: '•'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.compare-card.before .compare-list li::before { content: '✕'; color: #dc2626; }
.compare-card.after .compare-list li::before { content: '✓'; color: #16a34a; }
.article-content code { background: var(--surface); padding: 2px 6px; border-radius: 4px; font-size: 0.875rem; }
.article-content ul, .article-content ol { margin: 16px 0 16px 24px; color: var(--muted); }
.article-content li { margin-bottom: 8px; line-height: 1.6; }

/* Marca ConfVision sobre imagens */
.branded-img { position: relative; overflow: hidden; display: block; }
.branded-img > img:first-child { width: 100%; display: block; object-fit: cover; }
.branded-img-logo {
  position: absolute; bottom: 10px; right: 10px; height: 28px; width: auto;
  background: rgba(255,255,255,0.92); padding: 6px 10px; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); pointer-events: none;
}
.hero-image .branded-img > img:first-child { aspect-ratio: 16/10; }
.case-hero-img .branded-img > img:first-child { aspect-ratio: 21/9; }
.content-card .branded-img > img:first-child { aspect-ratio: 16/10; }
.pillar-card-thumb .branded-img > img:first-child,
.capability-card-thumb .branded-img > img:first-child,
.intel-card-thumb .branded-img > img:first-child,
.sector-card-thumb .branded-img > img:first-child,
.product-card-thumb .branded-img > img:first-child,
.intro-product-thumb .branded-img > img:first-child { aspect-ratio: 16/10; }
.practice-visual .branded-img > img:first-child { aspect-ratio: 16/10; border-radius: var(--radius); }
.guarita-card .branded-img > img:first-child { aspect-ratio: 16/10; }
.pillar-card-thumb .branded-img > img:first-child { aspect-ratio: 16/9; }
.intel-card-thumb .branded-img > img:first-child { aspect-ratio: 16/9; }
.pillar-card:hover .branded-img > img:first-child,
.intel-card:hover .branded-img > img:first-child { transform: scale(1.05); transition: transform 0.4s; }

/* Faixa animada de logotipo */
.logo-strip { overflow: hidden; padding: 20px 0; background: var(--surface); border-block: 1px solid var(--border); }
.logo-strip-track { display: flex; gap: 48px; align-items: center; width: max-content; animation: logo-scroll 40s linear infinite; opacity: 0.45; }
.logo-strip-track img { height: 28px; width: auto; flex-shrink: 0; filter: grayscale(20%); }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Galeria completa */
.brand-gallery-full { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important; max-height: 480px; overflow-y: auto; padding-right: 4px; }
.brand-gallery-full img { aspect-ratio: 4/3; }

.intro-product-thumb { margin: -24px -24px 16px; }
.intro-product-card { overflow: hidden; }
.product-card-thumb { overflow: hidden; }
.sector-card-thumb { overflow: hidden; }
.guarita-card { overflow: hidden; padding: 0; }
.guarita-card-body { padding: 20px; }

/* Cards com imagem (home) */
.image-feature-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.image-feature-grid-6 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.image-feature-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: white; transition: transform 0.2s, box-shadow 0.2s;
}
.image-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.image-feature-card > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.image-feature-body { padding: 20px 24px 24px; }
.image-feature-body h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; }
.image-feature-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.pillar-card-thumb > img,
.capability-card-thumb > img,
.sector-card-thumb > img,
.product-card-thumb > img,
.intro-product-thumb > img,
.content-card .card-link > img,
.practice-visual > img {
  width: 100%; object-fit: cover; display: block;
}
.pillar-card-thumb > img { aspect-ratio: 16/9; }
.capability-card-thumb > img,
.sector-card-thumb > img,
.product-card-thumb > img,
.content-card .card-link > img { aspect-ratio: 16/10; }
.intro-product-thumb > img { aspect-ratio: 16/9; }
.practice-visual > img { aspect-ratio: 16/10; border-radius: var(--radius); }

.cta-brand .hero-actions .btn-primary,
.cta-brand .hero-actions .btn-outline { min-height: 48px; }
