:root {
  --bg: #fafbfc;         /* ultra light background */
  --bg-alt: #f3f6f9;     /* section alt - subtle */
  --text: #1a202c;       /* rich dark text */
  --muted: #64748b;      /* muted text */
  --primary: #2c3e50;    /* deep blue-grey tech */
  --primary-600: #34495e;/* medium */
  --primary-700: #1a252f;/* darker hover */
  --accent: #f39d22;     /* brand orange - energy */
  --accent-hover: #e08c15;
  --accent-2: #c7412d;   /* brand red/orange - urgency */
  --accent-3: #ac4444;   /* brand red - attention */
  --card: #ffffff;       /* cards on light */
  --card-glass: rgba(255,255,255,0.85); /* glassmorphism */
  --border: #e2e8f0;     /* light borders */
  --border-subtle: #f1f5f9;
  --shadow-sm: 0 2px 8px rgba(44,62,80,0.04);
  --shadow-md: 0 8px 24px rgba(44,62,80,0.08);
  --shadow-lg: 0 16px 48px rgba(44,62,80,0.12);
  --success: #10b981;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: 
    radial-gradient(1400px 700px at 85% -15%, rgba(44,62,80,.06) 0%, transparent 50%),
    radial-gradient(900px 450px at 5% 8%, rgba(243,157,34,.05) 0%, transparent 55%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: var(--text); text-decoration: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 900px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 3px rgba(44,62,80,0.03);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.3px; }
.brand span { font-size: 18px; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--primary); }
.nav a:hover { color: var(--primary-700); }
.nav .btn { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; }

.section { padding: 96px 0; }
.section h2 { 
  font-size: 36px; 
  font-weight: 700; 
  margin: 0 0 16px; 
  letter-spacing: -0.01em; 
  text-align: center;
}
.section-intro {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Carousel */
.carousel-container { 
  position: relative; 
  padding: 0 60px;
  margin-top: 40px;
}
.carousel { 
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel .card { 
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.section.alt { 
  background: var(--bg-alt); 
  border-top: 1px solid var(--border-subtle); 
  border-bottom: 1px solid var(--border-subtle); 
}

.hero { 
  padding: 140px 0 120px; 
  text-align: center;
}
.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 { 
  font-size: 56px; 
  line-height: 1.15; 
  margin: 0 0 24px; 
  font-weight: 700; 
  letter-spacing: -0.02em; 
}
.hero p { 
  color: var(--muted); 
  margin: 0 0 36px; 
  font-size: 20px; 
  line-height: 1.7; 
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
  justify-content: center;
  margin-bottom: 64px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px;
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.hero-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 12px;
}
.hero-metric img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.hero-metric strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hero-metric span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.btn { 
  display: inline-flex; align-items: center; justify-content: center; 
  height: 48px; padding: 0 24px; 
  border-radius: 12px; border: 1px solid var(--border); 
  background: #ffffff; color: var(--text); 
  font-weight: 500; font-size: 15px;
  box-shadow: var(--shadow-sm); 
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1); 
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); 
  border-color: transparent; color: #ffffff; 
  box-shadow: 0 8px 24px rgba(243,157,34,.25); 
}
.btn-primary:hover { 
  box-shadow: 0 12px 32px rgba(243,157,34,.35); 
  transform: translateY(-2px);
}
.btn-ghost { 
  background: transparent; 
  border-color: var(--primary); 
  color: var(--primary); 
}
.btn-ghost:hover { 
  background: var(--primary); 
  color: #ffffff; 
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.bullets h3 { margin: 0 0 6px; font-size: 18px; }
.bullets p { color: var(--muted); margin: 0; }

/* Sobre Section */
.sobre-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.sobre-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.sobre-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  margin: 16px 0 0;
}
.sobre-lead strong {
  color: var(--text);
  font-weight: 600;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 40px;
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sobre-pillars {
  gap: 28px;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.pillar-card:hover::before {
  opacity: 1;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.pillar-icon img {
  width: 100%;
  height: 100%;
}
.pillar-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.pillar-card > p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}
.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.pillar-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--muted);
}
.pillar-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cards .card { 
  border: 1px solid var(--border-subtle); 
  background: var(--card-glass); 
  backdrop-filter: blur(10px);
  padding: 24px; 
  border-radius: 16px; 
  box-shadow: var(--shadow-sm); 
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1); 
}
.cards .card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-lg); 
  border-color: var(--border);
}
.card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 600; color: var(--text); }
.card p { margin: 0 0 12px; color: var(--muted); line-height: 1.65; }
.badge { 
  display: inline-block; 
  padding: 6px 12px; 
  background: rgba(243,157,34,.10); 
  border: 1px solid rgba(243,157,34,.20); 
  color: var(--accent-hover); 
  border-radius: 999px; 
  font-size: 13px; 
  font-weight: 500;
}

.case-card { min-height: 280px; display: flex; flex-direction: column; }
.case-header { 
  display: flex; 
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.case-header h3 { margin: 0; }

.case-card p { margin: 0 0 12px 0; line-height: 1.6; }
.case-card p:last-of-type { margin-bottom: 0; }

.case-card a {
  display: inline-block;
  color: #ac4444;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  word-break: break-all;
}

.case-card a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.case-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: auto; 
  padding-top: 16px;
}
.case-tags span {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(44,62,80,.06);
  border: 1px solid rgba(44,62,80,.10);
  color: var(--primary);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.glass-card { 
  position: relative; 
  border: 1px solid rgba(226,232,240,.5); 
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.75) 100%); 
  backdrop-filter: blur(16px);
  border-radius: 20px; 
  padding: 28px; 
  min-height: 320px; 
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.orb { 
  position: absolute; 
  right: -40px; top: -40px; 
  width: 200px; height: 200px; 
  background: radial-gradient(circle at 40% 40%, rgba(243,157,34,.28), transparent 70%); 
  filter: blur(14px); 
  opacity: 1; 
}
.metrics { 
  position: absolute; 
  left: 28px; 
  right: 28px;
  bottom: 24px; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; 
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  display: block;
}
.metrics strong { 
  display: block; 
  font-size: 20px; 
  font-weight: 700; 
  color: var(--text);
  line-height: 1.2;
}
.metrics span { 
  color: var(--muted); 
  font-size: 13px; 
  line-height: 1.4;
}

/* Workflow - Fluxo Visual */
.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px auto;
  max-width: 1200px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  min-height: 200px;
}

.workflow-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  opacity: 0.4;
  z-index: 0;
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(48, 61, 83, 0.25);
  z-index: 2;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(48, 61, 83, 0.25); }
  50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(48, 61, 83, 0.35); }
}

.workflow-content {
  text-align: center;
  padding: 20px 16px;
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  width: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workflow-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.workflow-content h3 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.workflow-content p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.workflow-arrow {
  display: none;
}

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 26px; }
.checklist li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); }

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonials blockquote { margin: 0; padding: 18px; border-radius: 14px; border: 1px solid var(--border); background: #0f1829cc; }
.testimonials cite { display: block; margin-top: 8px; color: var(--muted); font-style: normal; }

/* Contact Section */
.contact-centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-direction: column; 
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-list li { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
  padding: 20px;
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-list strong { 
  font-size: 12px; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  color: var(--muted);
  font-weight: 600;
}

.contact-list a { 
  color: var(--primary); 
  text-decoration: none; 
  font-size: 16px;
  font-weight: 500;
}

.contact-list a:hover { 
  color: var(--accent);
}

.contact-form { 
  border: 1px solid var(--border-subtle); 
  border-radius: 16px; 
  padding: 32px; 
  background: var(--card-glass); 
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.form-row { 
  display: flex; 
  flex-direction: column;
  gap: 8px; 
  margin-bottom: 20px; 
}
.form-row label { 
  font-weight: 600; 
  font-size: 13px; 
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input, textarea { 
  width: 100%; 
  background: #ffffff; 
  border: 1px solid var(--border); 
  color: var(--text); 
  border-radius: 10px; 
  padding: 12px 14px; 
  font: inherit; 
  transition: all .2s ease;
}
input:focus, textarea:focus { 
  outline: none; 
  border-color: var(--accent); 
  box-shadow: 0 0 0 3px rgba(243,157,34,.12); 
}

.site-footer { border-top: 1px solid var(--border); background: #ffffff; }
.footer-inner { display: flex; gap: 18px; align-items: center; justify-content: space-between; padding: 18px 0; }
.footer-nav { display: flex; gap: 14px; }
.copy { color: var(--muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .container { max-width: 100%; padding: 0 24px; }
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 18px; }
  .section h2 { font-size: 32px; }
  .sobre-pillars { gap: 20px; }
  
  /* Workflow tablet */
  .workflow {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .workflow-step::after {
    display: none;
  }
  .workflow-content h3 {
    font-size: 14px;
  }
  .workflow-content p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 56px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-metrics { grid-template-columns: 1fr; }
  
  /* Carousel tablet */
  .carousel-container { padding: 0 48px; }
  .carousel .card { 
    min-width: calc(50vw - 60px); 
    max-width: calc(50vw - 60px); 
  }
  
  /* Workflow tablet small */
  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Estilos para dispositivos móveis detectados via JavaScript */
body.mobile-device {
  /* Garantir que elementos touch sejam adequados */
  -webkit-tap-highlight-color: rgba(243, 157, 34, 0.2);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.mobile-device .btn {
  min-height: 48px;
  padding: 0 24px;
  font-size: 16px;
  touch-action: manipulation;
}

body.mobile-device .nav-toggle {
  min-width: 48px;
  min-height: 48px;
  padding: 12px;
}

body.mobile-device .carousel-btn {
  min-width: 48px;
  min-height: 48px;
  touch-action: manipulation;
}

body.mobile-device .contact-list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* Forçar layout móvel para dispositivos detectados via JavaScript */
body.force-mobile-layout .nav {
  display: none !important;
}

body.force-mobile-layout .nav.open {
  display: flex !important;
  position: absolute !important;
  right: 12px !important;
  top: 68px !important;
  flex-direction: column !important;
  background: #ffffff !important;
  padding: 10px !important;
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-md) !important;
  z-index: 100 !important;
}

body.force-mobile-layout .nav-toggle {
  display: inline-block !important;
}

/* Footer mobile adjustments */
body.mobile-device .footer-inner {
  flex-direction: column !important;
  gap: 16px !important;
  text-align: center !important;
  padding: 24px 0 !important;
}

body.mobile-device .footer-inner .brand {
  margin-bottom: 8px !important;
}

body.force-mobile-layout .footer-inner {
  flex-direction: column !important;
  gap: 16px !important;
  text-align: center !important;
  padding: 24px 0 !important;
}

body.force-mobile-layout .footer-inner .brand {
  margin-bottom: 8px !important;
}

body.force-mobile-layout .grid-2,
body.force-mobile-layout .grid-3,
body.force-mobile-layout .grid-4 {
  grid-template-columns: 1fr !important;
}

body.force-mobile-layout .hero-metrics {
  grid-template-columns: 1fr !important;
}

body.force-mobile-layout .workflow {
  grid-template-columns: 1fr !important;
}

body.force-mobile-layout .cta {
  flex-direction: column !important;
}

body.force-mobile-layout .btn {
  width: 100% !important;
}

/* Melhorias de fonte para layout móvel forçado */
body.force-mobile-layout .hero h1 {
  font-size: 48px !important;
  line-height: 1.1 !important;
}

body.force-mobile-layout .hero p {
  font-size: 22px !important;
  line-height: 1.6 !important;
}

body.force-mobile-layout .section h2 {
  font-size: 40px !important;
  line-height: 1.2 !important;
}

body.force-mobile-layout .sobre-lead {
  font-size: 22px !important;
  line-height: 1.7 !important;
}

body.force-mobile-layout .pillar-card h3 {
  font-size: 24px !important;
  margin-bottom: 18px !important;
}

body.force-mobile-layout .pillar-card > p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  margin-bottom: 26px !important;
}

body.force-mobile-layout .pillar-features li {
  font-size: 17px !important;
  padding-left: 32px !important;
  margin-bottom: 8px !important;
}

body.force-mobile-layout .card h3 {
  font-size: 23px !important;
  margin-bottom: 14px !important;
}

body.force-mobile-layout .card p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  margin-bottom: 18px !important;
}

body.force-mobile-layout .workflow-content h3 {
  font-size: 19px !important;
  margin-bottom: 10px !important;
}

body.force-mobile-layout .workflow-content p {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

body.force-mobile-layout .contact-intro {
  font-size: 22px !important;
  line-height: 1.7 !important;
}

body.force-mobile-layout .contact-list a {
  font-size: 20px !important;
}

body.force-mobile-layout .hero-metric strong {
  font-size: 26px !important;
}

body.force-mobile-layout .hero-metric span {
  font-size: 16px !important;
}

/* Melhorias de tipografia para dispositivos de alta DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body.mobile-device {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  body.mobile-device .hero h1 {
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  
  body.mobile-device .section h2 {
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  
  body.mobile-device .card h3,
  body.mobile-device .pillar-card h3 {
    font-weight: 600;
  }
  
  body.mobile-device .btn {
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}

/* Detecção de dispositivos móveis de alta resolução - mais agressiva */
@media (max-width: 1400px) and (max-height: 900px) and (orientation: portrait),
       (max-width: 900px) and (max-height: 1400px) and (orientation: landscape),
       (max-width: 1200px) and (pointer: coarse) {
  /* Aplicar estilos móveis para dispositivos de alta resolução */
  .nav { display: none; position: absolute; right: 12px; top: 68px; flex-direction: column; background: #ffffff; padding: 10px; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-block; cursor: pointer; }
  
  /* Layout mobile para alta resolução */
  .container { padding: 0 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  
  /* Hero mobile para alta resolução */
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 44px; line-height: 1.2; }
  .hero p { font-size: 20px; margin-bottom: 32px; }
  .cta { flex-direction: column; width: 100%; margin-bottom: 56px; }
  .btn { width: 100%; height: 56px; font-size: 18px; }
  .hero-metrics { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .hero-metric { padding: 16px; }
  .hero-metric img { width: 40px; height: 40px; }
  .hero-metric strong { font-size: 24px; }
  .hero-metric span { font-size: 14px; }
  
  /* Sobre mobile para alta resolução */
  .sobre-header { margin-bottom: 48px; }
  .sobre-lead { font-size: 20px; }
  .pillar-card { padding: 32px; }
  .pillar-icon { width: 52px; height: 52px; margin-bottom: 24px; }
  .pillar-card h3 { font-size: 22px; margin-bottom: 16px; }
  .pillar-card > p { font-size: 16px; margin-bottom: 24px; }
  .pillar-features li { font-size: 15px; padding-left: 28px; }
  
  /* Workflow mobile para alta resolução */
  .workflow {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px auto;
  }
  .workflow-step {
    flex-direction: row;
    gap: 16px;
    text-align: left;
    min-height: auto;
    align-items: flex-start;
  }
  .workflow-step::after {
    display: none;
  }
  .workflow-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
  }
  .workflow-content {
    padding: 20px;
    text-align: left;
    min-height: auto;
    justify-content: flex-start;
  }
  .workflow-content h3 {
    font-size: 17px;
  }
  .workflow-content p {
    font-size: 14px;
  }
  
  /* Cards mobile para alta resolução */
  .cards { gap: 24px; }
  .card { padding: 28px; }
  .card h3 { font-size: 21px; margin-bottom: 12px; }
  .card p { font-size: 16px; margin-bottom: 16px; }
  
  /* Carousel mobile para alta resolução */
  .carousel-container { padding: 0 20px; }
  .carousel { gap: 20px; padding: 20px 0; }
  .carousel .card { 
    min-width: calc(100vw - 100px); 
    max-width: calc(100vw - 100px); 
  }
  .carousel-btn { 
    width: 44px; 
    height: 44px;
    opacity: 0.95;
  }
  .carousel-btn svg { width: 24px; height: 24px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  
  /* Contact mobile para alta resolução */
  .contact-centered { max-width: 100%; }
  .contact-intro { font-size: 20px; margin-bottom: 40px; }
  .contact-list { max-width: 100%; }
  .contact-list li { padding: 24px; }
  .contact-list strong { font-size: 13px; }
  .contact-list a { font-size: 18px; }
  
  /* Footer mobile para alta resolução */
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
  .footer-nav { flex-direction: column; gap: 16px; }
}

@media (max-width: 680px) {
  .nav { display: none; position: absolute; right: 12px; top: 68px; flex-direction: column; background: #ffffff; padding: 10px; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-block; cursor: pointer; }
  
  /* Layout mobile */
  .container { padding: 0 16px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  
  /* Hero mobile */
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 32px; line-height: 1.2; }
  .hero p { font-size: 16px; margin-bottom: 28px; }
  .cta { flex-direction: column; width: 100%; margin-bottom: 48px; }
  .btn { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .hero-metric { padding: 8px; }
  .hero-metric img { width: 28px; height: 28px; }
  .hero-metric strong { font-size: 18px; }
  .hero-metric span { font-size: 11px; }
  
  /* Sobre mobile */
  .sobre-header { margin-bottom: 40px; }
  .sobre-lead { font-size: 16px; }
  .pillar-card { padding: 24px; }
  .pillar-icon { width: 40px; height: 40px; margin-bottom: 16px; }
  
  /* Workflow mobile */
  .workflow {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px auto;
  }
  .workflow-step {
    flex-direction: row;
    gap: 12px;
    text-align: left;
    min-height: auto;
    align-items: flex-start;
  }
  .workflow-step::after {
    display: none;
  }
  .workflow-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
  }
  .workflow-content {
    padding: 16px;
    text-align: left;
    min-height: auto;
    justify-content: flex-start;
  }
  .workflow-content h3 {
    font-size: 15px;
  }
  .workflow-content p {
    font-size: 13px;
  }
  
  /* Cards mobile */
  .cards { gap: 16px; }
  .card { padding: 20px; }
  
  /* Carousel mobile */
  .carousel-container { padding: 0 16px; }
  .carousel { gap: 16px; padding: 16px 0; }
  .carousel .card { 
    min-width: calc(100vw - 80px); 
    max-width: calc(100vw - 80px); 
  }
  .carousel-btn { 
    width: 36px; 
    height: 36px;
    opacity: 0.95;
  }
  .carousel-btn svg { width: 20px; height: 20px; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  
  /* Contact mobile */
  .contact-centered { max-width: 100%; }
  .contact-intro { font-size: 16px; margin-bottom: 32px; }
  .contact-list { max-width: 100%; }
  .contact-list li { padding: 16px; }
  
  /* Footer mobile */
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-nav { flex-direction: column; gap: 12px; }
}
