:root {
  --jvm-primary: #303e62;
  --jvm-primary-soft: #3f4f80;
  --jvm-bg-dark: #050814;
  --jvm-bg-darker: #02040a;
  --jvm-text-muted: #9ba3c0;
  --jvm-description-color: #60a5fa;
}

body {
  background: #f5f3f2;
  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar {
  background: #333F69;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand span {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-pill {
  border-radius: 50rem;
}

.btn-primary {
  --bs-btn-bg: var(--jvm-primary);
  --bs-btn-border-color: var(--jvm-primary);
  --bs-btn-hover-bg: var(--jvm-primary-soft);
  --bs-btn-hover-border-color: var(--jvm-primary-soft);
  --bs-btn-focus-shadow-rgb: 48, 62, 98;
}

.btn-area-cliente {
  background: #06b6d4;
  border-color: #06b6d4;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
  transition: all 0.2s ease;
}

.btn-area-cliente:hover {
  background: #0891b2;
  border-color: #0891b2;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: #f8f9fa;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Botão outline para fundo claro */
.btn-outline-dark {
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
  color: #1a1a1a;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #11182b 0, var(--jvm-bg-dark) 40%, var(--jvm-bg-darker) 100%);
  color: #f8f9fa;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 10%, rgba(48, 62, 98, 0.45), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(52, 211, 153, 0.25), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(96, 165, 250, 0.2), transparent 55%);
  opacity: 0.9;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 60%);
  z-index: -1;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #f8f9fa;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--jvm-text-muted);
  max-width: 540px;
}

.hero-tag {
  background: rgba(5, 148, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.terminal-card {
  background: radial-gradient(circle at top, #171e34, #050814);
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  padding: 1.25rem 1.25rem 1rem;
  color: #e5e7eb;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 4px;
}

.terminal-dots span:nth-child(1) { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #f59e0b; }
.terminal-dots span:nth-child(3) { background: #22c55e; }

.terminal-body {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  white-space: pre;
  color: #e5e7eb;
}

.terminal-body .prompt {
  color: #a5b4fc;
}

.terminal-body .cmd {
  color: #e5e7eb;
}

.terminal-body .comment {
  color: #6b7280;
}

.terminal-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--jvm-text-muted);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #1a1a1a;
}

.section-muted {
  color: #4a5568;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem;
  border: none;
  height: 100%;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #38bdf8, var(--jvm-primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.feature-icon i {
  font-size: 1rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
}

.feature-text {
  color: #4a5568;
  font-size: 0.93rem;
}


.metric-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  color: #4a5568;
}

.metric-pill strong {
  color: #1a1a1a;
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.95);
}

.footer-main {
  background: #1a1f3a;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #9ba3c0;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-app-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer-app-link:hover {
  opacity: 0.8;
}

.footer-payment {
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-payment-icon {
  font-size: 2rem;
  color: #9ba3c0;
  opacity: 0.7;
}

.footer-payment-pix {
  color: #9ba3c0;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.7;
}

.footer-icon {
  color: #9ba3c0;
  width: 20px;
  text-align: center;
}

.footer-cert-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer-cert-link:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-size: 0.85rem;
}

.footer-company {
  font-size: 0.8rem;
}

/* Blog Cards */
.blog-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #e5e7eb;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.blog-card-text {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-link {
  color: var(--jvm-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.blog-card-link:hover {
  color: var(--jvm-primary-soft);
}

/* Contact Team Cards */
.contact-team-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-team-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

.contact-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-team-content {
  padding: 2rem;
}

.contact-team-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-team-text {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-team-actions {
  margin-bottom: 1rem;
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  color: #ffffff;
}

.contact-team-chat {
  color: #4a5568;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.contact-team-phones {
  color: #4a5568;
  font-size: 0.9rem;
}

.contact-team-phones div {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-team-phones i {
  color: var(--jvm-primary);
  width: 20px;
}

/* Video Cards */
.video-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #e5e7eb;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(239, 68, 68, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-card:hover .video-play-button {
  background: rgba(239, 68, 68, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
  margin-left: 3px;
}

.video-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Paginação */
.pagination {
  margin-top: 2rem;
}

.pagination .page-link {
  color: var(--jvm-primary);
  border-color: rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
}

.pagination .page-link:hover {
  background-color: rgba(48, 62, 98, 0.1);
  border-color: var(--jvm-primary);
  color: var(--jvm-primary);
}

.pagination .page-item.active .page-link {
  background-color: var(--jvm-primary);
  border-color: var(--jvm-primary);
  color: #ffffff;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.btn-outline-primary {
  border-color: var(--jvm-primary);
  color: var(--jvm-primary);
}

.btn-outline-primary:hover {
  background: var(--jvm-primary);
  border-color: var(--jvm-primary);
  color: #ffffff;
}

/* Mensagem de Destaque */
.destaque-mensagem {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.dropdown-menu-dark {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  padding: 0.5rem 1rem;
  transition: background-color 0.15s ease;
  display: flex;
  align-items: flex-start;
  color: #1a1a1a;
}

.dropdown-item:hover {
  background-color: rgba(51, 63, 105, 0.08);
}

.dropdown-item i {
  color: #333F69;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.dropdown-item .fw-semibold {
  color: #1a1a1a;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.dropdown-item .dropdown-description {
  display: block;
  line-height: 1.4;
  color: #4a5568 !important;
  font-size: 0.85rem;
}

.dropdown-divider {
  margin: 0.25rem 0;
  border-color: rgba(0, 0, 0, 0.1);
}

.page-hero {
  padding-top: 0;
  padding-bottom: 4rem;
  background: #f5f3f2;
  color: #1a1a1a;
}

.page-hero-header {
  background: 
    /* Partículas/estrelas brilhantes */
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    /* Grid de pontos de conexão */
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
    /* Gradiente principal */
    linear-gradient(135deg, #1a2442 0%, #252f52 20%, #333F69 40%, #4a5a7a 60%, #5a6a8a 80%, #1a2442 100%);
  background-size: 
    200px 200px,
    180px 180px,
    220px 220px,
    190px 190px,
    210px 210px,
    40px 40px,
    400% 400%;
  padding-top: 7rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  animation: gradientShift 25s ease infinite, particleFloat 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.page-hero-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    /* Formas hexagonais */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(51, 63, 105, 0.15) 30px,
      rgba(51, 63, 105, 0.15) 31px
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 30px,
      rgba(74, 90, 122, 0.12) 30px,
      rgba(74, 90, 122, 0.12) 31px
    ),
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 30px,
      rgba(90, 106, 138, 0.1) 30px,
      rgba(90, 106, 138, 0.1) 31px
    ),
    /* Linhas de circuito horizontais */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.06) 60px,
      rgba(255, 255, 255, 0.06) 61px
    ),
    /* Linhas de circuito verticais */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.06) 60px,
      rgba(255, 255, 255, 0.06) 61px
    );
  opacity: 0.7;
  z-index: 0;
  animation: hexRotate 40s linear infinite;
}

@keyframes hexRotate {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  100% {
    transform: rotate(360deg) translate(20px, 20px);
  }
}

.page-hero-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Ondas suaves com brilho */
    radial-gradient(ellipse at 20% 50%, rgba(51, 63, 105, 0.25) 0%, rgba(51, 63, 105, 0.1) 30%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(74, 90, 122, 0.22) 0%, rgba(74, 90, 122, 0.08) 30%, transparent 60%),
    radial-gradient(ellipse at 50% 20%, rgba(90, 106, 138, 0.2) 0%, rgba(90, 106, 138, 0.08) 30%, transparent 60%),
    radial-gradient(ellipse at 10% 70%, rgba(51, 63, 105, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 30%, rgba(74, 90, 122, 0.15) 0%, transparent 40%),
    /* Linhas de conexão mais visíveis */
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.06) 52%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.06) 52%, transparent 100%),
    /* Linhas diagonais de conexão */
    linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 51%, transparent 100%),
    linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 51%, transparent 100%);
  z-index: 0;
  opacity: 0.9;
  animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1) translate(10px, 10px);
    opacity: 1;
  }
}

@keyframes particleFloat {
  0%, 100% {
    background-position: 
      0% 0%,
      100% 100%,
      50% 50%,
      30% 80%,
      70% 20%,
      0% 0%,
      0% 50%;
  }
  50% {
    background-position: 
      20% 10%,
      80% 90%,
      60% 60%,
      40% 70%,
      80% 30%,
      10% 10%,
      100% 50%;
  }
}

.page-hero-header .container {
  position: relative;
  z-index: 1;
}

.page-hero .hero-title {
  color: #ffffff;
  text-transform: lowercase;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem !important;
}

.page-hero .hero-title::first-letter {
  text-transform: uppercase;
}

.page-hero .hero-subtitle {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
}

.page-content {
  padding: 3rem 0;
}

/* DIFERENCIAIS SECTION */
.diferenciais-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.diferenciais-highlight {
  color: #0891b2;
  font-weight: 700;
}

.diferencial-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.diferencial-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  color: #ffffff;
}

.diferencial-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.diferencial-text {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Solu??es Carousel */
.solucoes-carousel-wrapper {
  position: relative;
}

.solucoes-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 0;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox - esconde scrollbar */
  -ms-overflow-style: none; /* IE e Edge - esconde scrollbar */
}

/* Alinha o primeiro card com o container acima e o ?ltimo com o final do container */
@media (min-width: 576px) {
  .solucoes-carousel {
    padding-left: max(15px, calc((100vw - 540px) / 2));
    padding-right: max(15px, calc((100vw - 540px) / 2));
  }
}

@media (min-width: 768px) {
  .solucoes-carousel {
    padding-left: max(15px, calc((100vw - 720px) / 2));
    padding-right: max(15px, calc((100vw - 720px) / 2));
  }
}

@media (min-width: 992px) {
  .solucoes-carousel {
    padding-left: max(15px, calc((100vw - 960px) / 2));
    padding-right: max(15px, calc((100vw - 960px) / 2));
  }
}

@media (min-width: 1200px) {
  .solucoes-carousel {
    padding-left: max(15px, calc((100vw - 1140px) / 2));
    padding-right: max(15px, calc((100vw - 1140px) / 2));
  }
}

@media (min-width: 1400px) {
  .solucoes-carousel {
    padding-left: max(15px, calc((100vw - 1320px) / 2));
    padding-right: max(15px, calc((100vw - 1320px) / 2));
  }
}

.solucoes-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera - esconde scrollbar */
}

.solucoes-carousel a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.solucao-card {
  min-width: 320px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.solucao-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.solucao-illustration {
  width: 100%;
}

.solucao-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.solucao-text {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.solucoes-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.solucoes-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.solucoes-nav-btn:hover {
  background: #333F69;
  border-color: #333F69;
  color: #ffffff;
}

.solucoes-nav-btn:active {
  transform: scale(0.95);
}

/* MODERN FEATURE CARDS - P?ginas de Servi?os */
.modern-feature-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modern-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8 0%, #333F69 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(51, 63, 105, 0.2);
}

.modern-feature-card:hover::before {
  transform: scaleX(1);
}

.modern-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 0%, #333F69 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.modern-feature-card:hover .modern-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.4);
}

.modern-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.modern-feature-text {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* PROBLEM CARDS - Se??o de Problemas */
.problem-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.problem-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.problem-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.problem-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* TIMELINE CARDS - Design Alternativo */
.timeline-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
}

.timeline-card:hover {
  border-color: #333F69;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(51, 63, 105, 0.15);
}

.timeline-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8 0%, #333F69 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(51, 63, 105, 0.3);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(51, 63, 105, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.25rem;
  font-size: 1.75rem;
  color: #333F69;
  transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #333F69 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.timeline-text {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* PAIN POINT CARDS - Design Alternativo */
.pain-point-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border-left: 4px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pain-point-card:hover {
  border-left-color: #333F69;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.pain-point-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pain-point-header i {
  font-size: 1.75rem;
  color: #333F69;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(51, 63, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pain-point-card:hover .pain-point-header i {
  background: #333F69;
  color: #ffffff;
  transform: scale(1.1);
}

.pain-point-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.pain-point-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* SERVICE BADGES - Op??o 3 */
.badge-section {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #38bdf8 0%, #333F69 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(51, 63, 105, 0.2);
}

/* SECTION LABEL - Op??o 3 */
.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(51, 63, 105, 0.1);
  color: #333F69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SERVICE GRID CARDS - Op??o 3 */
.service-grid-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-grid-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--card-gradient);
  transition: width 0.3s ease;
}

.service-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.service-grid-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.service-grid-icon {
  width: 70px;
  height: 70px;
  border-radius: 1rem;
  background: var(--card-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-grid-card:hover .service-grid-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.service-grid-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-grid-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-grid-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* COMPARISON CARDS - Op??o 3 */
.comparison-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid;
}

.before-card {
  border-top-color: #ef4444;
}

.after-card {
  border-top-color: #22c55e;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.comparison-header i {
  font-size: 2rem;
  flex-shrink: 0;
}

.before-card .comparison-header i {
  color: #ef4444;
}

.after-card .comparison-header i {
  color: #22c55e;
}

.comparison-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.comparison-text {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* CTA BUTTON - Op??o 3 */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #38bdf8 0%, #22c55e 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.5);
  color: #ffffff;
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* ELEGANT FEATURE CARDS - Op??o 4 */
.elegant-feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.elegant-feature-card:hover {
  border-color: #333F69;
  box-shadow: 0 8px 24px rgba(51, 63, 105, 0.12);
  transform: translateY(-4px);
}

.elegant-feature-icon-wrapper {
  margin-bottom: 1.5rem;
}

.elegant-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(51, 63, 105, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333F69;
  transition: all 0.3s ease;
}

.elegant-feature-card:hover .elegant-feature-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #333F69 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.elegant-feature-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.elegant-feature-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ELEGANT PROBLEM CARDS - Op??o 4 */
.elegant-problem-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border-left: 3px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.elegant-problem-card:hover {
  border-left-color: #333F69;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.elegant-problem-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(51, 63, 105, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.elegant-problem-card:hover .elegant-problem-number {
  color: rgba(51, 63, 105, 0.2);
}

.elegant-problem-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.elegant-problem-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* SERVICE POINT ITEMS - Gest?o de M?dias Sociais */
.service-point-item {
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-point-item:hover {
  transform: translateY(-5px);
}

.service-point-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(51, 63, 105, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #333F69;
  transition: all 0.3s ease;
}

.service-point-item:hover .service-point-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #333F69 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.service-point-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-point-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* FAQ NEW STYLE - Cards estilo Stone */
.faq-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #333F69;
}

.faq-question i {
  color: #4a5568;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 0.875rem;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: #333F69;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
}

