/* ============================================ */
/* MODERN CSS - BASE TEAL (#14b8a6)
/* ============================================ */

/* ----- RESET & VARIÁVEIS ----- */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap");

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #012727;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --primary: var(--teal-500);
  --primary-dark: var(--teal-600);
  --primary-darker: var(--teal-700);
  --primary-darkest: var(--teal-800);
  --primary-light: var(--teal-400);
  --primary-lighter: var(--teal-300);
  --primary-soft: rgba(20, 184, 166, 0.12);
  --primary-glow: rgba(20, 184, 166, 0.35);

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-green: var(--teal-600);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --text-white-muted: #f0fdfa;

  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-white: rgba(255, 255, 255, 0.2);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
  --shadow-glow: 0 0 15px rgba(20, 184, 166, 0.2);
  --shadow-neon: 0 0 20px rgba(20, 184, 166, 0.35);
  --shadow-elevated: 0 20px 35px -12px rgba(0, 0, 0, 0.1);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.2, 0, 0, 1);
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container-max: 1280px;
  --container-padding: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================ */
/* ANIMAÇÕES MODERNAS */
/* ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.02);
    opacity: 1;
  }
}
@keyframes pulseNeon {
  0%,
  100% {
    box-shadow:
      0 0 5px var(--primary-glow),
      0 0 10px var(--primary-glow);
  }
  50% {
    box-shadow:
      0 0 20px var(--primary-glow),
      0 0 30px var(--primary-glow);
  }
}
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s var(--transition-smooth);
}
.loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(20, 184, 166, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================ */
/* BADGES & HEADERS */
/* ============================================ */
.badge-orange {
  display: inline-block;
  background: rgba(20, 184, 166, 0.1);
  color: #0c0b0b;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(20, 184, 166, 0.25);
  backdrop-filter: blur(2px);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary-dark) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-header .orange {
  color: var(--primary);
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
}
.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================ */
/* BOTÕES MODERNOS */
/* ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(
    105deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    var(--primary-dark) 0%,
    var(--primary-darker) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-glow {
  animation: pulseNeon 2s infinite;
}
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 1.5px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================ */
/* HEADER (FIXO COM GLASS) */
/* ============================================ */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}
.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.logo-text {
  color: var(--text-primary);
}
.logo-highlight {
  color: var(--primary);
  font-weight: 800;
}
.logo-icon i {
  font-size: 2rem;
  color: var(--primary);
  filter: drop-shadow(0 2px 5px rgba(20, 184, 166, 0.2));
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-cta,
.btn-demo {
  background: linear-gradient(105deg, var(--primary), var(--primary-dark));
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  color: white !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover,
.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}
@media (max-width: 968px) {
  .mobile-menu {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 4.5rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 4.5rem);
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s ease;
    padding: 2rem;
  }
  .nav-links.active {
    left: 0;
  }
}

/* ============================================ */
/* SEÇÕES INTERCALADAS */
/* ============================================ */
.hero {
  background: var(--bg-primary);
}
.sobre {
  background: var(--bg-secondary);
}

.sobre {
  padding: 5rem 0;
  scroll-margin-top: 10px; /* ← Ajuste conforme a altura do seu header fixo */
}

.como-funciona {
  padding: 5rem 0;
  scroll-margin-top: 10px; /* ← Ajuste conforme a altura do seu header fixo */
}

.solucoes {
  padding: 5rem 0;
  scroll-margin-top: 10px; /* ← Ajuste conforme a altura do seu header fixo */
}

.como-funciona {
  background: var(--bg-primary);
}
.contato {
  background: var(--bg-secondary);
}
footer {
  background: var(--bg-secondary);
}
.clientes,
.solucoes,
.beneficios,
.blog {
  background: var(--bg-green);
}
.cta-final {
  background: linear-gradient(
    135deg,
    var(--primary-darker) 0%,
    var(--primary-darkest) 100%
  );
}

.hero h1,
.sobre h2,
.como-funciona h2,
.contato h2,
footer h3,
footer p,
.hero p,
.sobre p,
.contato p {
  color: var(--text-primary);
}
.hero-description,
.feature-item p,
.funciona-card p,
.contato-info p {
  color: var(--bg-primary);
}

.clientes .clientes-header h2,
.solucoes .section-header h2,
.beneficios .section-header h2,
.blog .section-header h2,
.clientes .clientes-header p,
.solucoes .section-header p,
.beneficios .section-header p,
.blog .section-header p {
  color: var(--text-white);
}

.clientes .badge-orange,
.solucoes .badge-orange,
.beneficios .badge-orange,
.blog .badge-orange {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.clientes .logo-item,
.solucoes .solucao-card,
.beneficios .beneficio-card,
.blog .blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

/* ============================================ */
/* HERO - COM IMAGEM DE FUNDO (TEXTO TOTALMENTE BRANCO) */
/* ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;

  /* Imagem de fundo - ajuste o caminho conforme sua imagem */
  background-image: url(../assets/images/sua-imagem.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Overlay escuro para contraste do texto */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Todo conteúdo fica acima do overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* CONTEÚDO - TODOS OS TEXTOS EM BRANCO */
.hero-content {
  animation: fadeInUp 0.7s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  color: #ffffff !important;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff !important;
}

.highlight-teal {
  color: var(
    --primary
  ); /* mantém o teal para destaque - se quiser branco também, troque por #ffffff */
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: #ffffff !important;
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Botão primário - texto branco */
.btn-primary {
  background: linear-gradient(105deg, var(--primary), var(--primary-dark));
  color: #ffffff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Botão outline (caso exista) */
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* Tags das soluções - texto branco */
.hero-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solution-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.solution-tag i {
  color: #ffffff !important;
  font-size: 0.9rem;
}

.solution-tag:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.solution-tag:hover i {
  color: var(--primary) !important;
}

/* 🟢 NOVO: Estilo específico para celular */
@media (max-width: 768px) {
  .hero-solutions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .solution-tag {
    flex: 0 0 auto;
    width: auto;
  }
}
/* LADO DIREITO - IMAGEM ESTÁTICA (opcional) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  display: none;
}

.hero-imagem-estatica {
  width: 100%;
  max-width: 500px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.4);
  border: 10px solid rgba(255, 255, 255, 0.2);
}

.hero-imagem-estatica img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hero-imagem-estatica:hover img {
  transform: scale(1.02);
}

/* CARDS DE ESTATÍSTICAS - texto branco */
.stat-card {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card-2 {
  bottom: 10%;
  left: -5%;
}

.stat-card-3 {
  top: 15%;
  right: -8%;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.2rem;
  color: #ffffff !important;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.7rem;
  color: #ffffff !important;
}

/* RESPONSIVO */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-buttons,
  .hero-solutions {
    justify-content: center;
  }

  .stat-card {
    display: none;
  }

  .hero-imagem-estatica {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ============================================ */
/* CLIENTES - CARROSSEL INFINITO */
/* ============================================ */
.clientes {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.clientes-header {
  text-align: center;
  margin-bottom: 3rem;
}
.clientes-carrossel-infinito {
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
  padding: 1rem 0;
}
.carrossel-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollLeftToRight 30s linear infinite;
  width: fit-content;
  will-change: transform;
}
.clientes-carrossel-infinito:hover .carrossel-track {
  animation-play-state: paused;
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 150px;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border-radius: 1.5rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.logo-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
}
.logo-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.logo-item:hover img {
  transform: scale(1.05);
}
.logo-nome {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.logo-descricao {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}
.clientes-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.trust-badge i {
  color: var(--primary);
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .logo-item {
    min-width: 130px;
    padding: 1rem;
  }
  .logo-item img {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 768px) {
  .carrossel-track {
    gap: 1rem;
    animation-duration: 25s;
  }
  .logo-item {
    min-width: 110px;
  }
}

/* ============================================ */
/* SOBRE */
/* ============================================ */
.sobre {
  padding: 5rem 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: transform 0.2s;
}
.feature-item:hover .feature-icon {
  transform: scale(1.05);
}

/* Ajuste para mobile - espaços menores entre os itens */
@media (max-width: 768px) {
  .feature-item {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 1rem;
  }
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 10px solid rgba(20, 184, 166, 0.3);
}
.sobre-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-wrapper:hover .sobre-video {
  transform: scale(1.03);
}
@media (max-width: 968px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  .video-wrapper {
    height: 300px;
  }
}

/* ============================================ */
/* SOLUÇÕES - 5 CARDS POR LINHA COM ZOOM */
/* ============================================ */
.solucoes {
  padding: 5rem 0;
  background: var(--bg-green, #012727);
}

.solucoes .section-header h2,
.solucoes .section-header p {
  color: white;
}

.solucoes-grid {
  display: grid;
  gap: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1200px) {
  .solucoes-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .solucoes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .solucoes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
}

.solucao-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transform: scale(1);
}

.solucao-card:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.2);
  background: #eef2ff;
}

.solucao-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 0.7rem 0.8rem 0.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solucao-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
  color: #0f172a;
  text-align: center;
  line-height: 1.3;
}

.solucao-card p {
  font-size: 0.7rem;
  color: #475569;
  line-height: 1.4;
  margin: 0 0 0.6rem;
  text-align: center;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  margin: 0 0 0.8rem;
}

.card-features span {
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  padding: 0.15rem 0.6rem;
  border-radius: 40px;
  font-size: 0.6rem;
  font-weight: 700;
  transition: all 0.2s;
}

.solucao-card:hover .card-features span {
  background: #14b8a6;
  color: white;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: 600;
  color: #14b8a6;
  text-decoration: none;
  background: transparent;
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  transition:
    background 0.25s,
    color 0.25s,
    gap 0.2s;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid rgba(20, 184, 166, 0.3);
  font-size: 0.7rem;
}

.card-link i {
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.card-link:hover {
  background: #14b8a6;
  color: white;
  gap: 0.5rem;
  border-color: transparent;
  box-shadow: 0 2px 6px rgba(20, 184, 166, 0.3);
}

.card-link:hover i {
  transform: translateX(3px);
}

/* FORÇA O ZOOM NO CARD - ULTIMO RECURSO */
.solucao-card {
  transition: all 0.3s ease !important;
}

.solucao-card:hover {
  transform: scale(1.08) translateY(-8px) !important;
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.3) !important;
  z-index: 999 !important;
  position: relative !important;
  background: #eef2ff !important;
}

/* ============================================ */
/* COMO FUNCIONA - COM IMAGEM DE FUNDO VISÍVEL E RESPONSIVA */
/* ============================================ */
.como-funciona {
  padding: 5rem 0;
  position: relative;

  /* Imagem de fundo - ajuste o caminho para o seu arquivo */
  background-image: url(../assets/images/sua-imagem2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* remove parallax para garantir que cubra toda seção ao rolar */

  /* Caso a imagem seja escura, usa overlay claro; se for clara, usa overlay escuro */
  /* Overlay suave para garantir contraste do texto */
}

/* Overlay semi-transparente escuro (texto branco fica legível) */
.como-funciona::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* ajuste: 0.5 a 0.7 conforme necessidade */
  z-index: 1;
}

/* Todo conteúdo fica acima do overlay */
.como-funciona .container {
  position: relative;
  z-index: 2;
}

/* Títulos e texto dentro da seção - garante legibilidade */
.como-funciona .section-header h2,
.como-funciona .section-header p,
.como-funciona .section-header .badge-orange {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Badge específico para contraste */
.como-funciona .badge-orange {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Cards com fundo levemente transparente para ver o background, mas sem perder legibilidade */
.funciona-card {
  position: relative;
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.funciona-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

/* Mantém os estilos originais dos números, ícones etc */
.funciona-number {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.funciona-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.funciona-card h3 {
  color: var(--text-primary);
  font-weight: 700;
}

.funciona-card p {
  color: var(--text-secondary);
}

/* Grade responsiva - igual ao original */
.funciona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 968px) {
  .funciona-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .funciona-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================ */
/* BENEFÍCIOS - FUNDO VERDE, CARD BRANCO, TOTEM BREAKOUT */
/* ============================================ */
.beneficios {
  padding: 5rem 0;
  background: var(--bg-green, #012727);
  position: relative;
  overflow: hidden;
}

.beneficios-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* Card principal branco */
.beneficio-card-grande {
  background: var(--bg-card, #ffffff);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s;
}

/* Totem breakout - imagem estilizada */
.totem-outside {
  position: absolute;
  top: -35px;
  right: -25px;
  width: 170px;
  z-index: 10;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
  pointer-events: none;
}

.totem-outside img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  background: #f8fafc;
  padding: 0.5rem;
}

.beneficio-card-grande:hover .totem-outside {
  transform: rotate(2deg) translateY(-5px);
}

/* Cabeçalho dentro do card */
.beneficios-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-right: 80px; /* espaço para imagem não sobrepor */
}

.beneficios-header .badge-orange {
  background: rgba(20, 184, 166, 0.15);
  color: var(--primary-dark);
  display: inline-block;
  margin-bottom: 1rem;
}

.beneficios-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.beneficios-header h2 .orange {
  color: var(--primary);
  background: none;
}

.beneficios-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Grid interno 2 colunas */
.beneficios-grid-interno {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.beneficio-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 1rem;
  transition: all 0.2s;
}

.beneficio-item:hover {
  background: rgba(20, 184, 166, 0.03);
  transform: translateX(5px);
}

.beneficio-icon {
  width: 48px;
  height: 48px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.beneficio-item:hover .beneficio-icon {
  background: var(--primary);
}
.beneficio-item:hover .beneficio-icon i {
  color: white;
}

.beneficio-icon i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: color 0.2s;
}

.beneficio-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.beneficio-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Responsivo */
@media (max-width: 992px) {
  .totem-outside {
    width: 130px;
    top: -25px;
    right: -15px;
  }
  .beneficios-header {
    padding-right: 60px;
  }
  .beneficios-grid-interno {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .beneficio-card-grande {
    padding: 1.5rem;
  }
  .totem-outside {
    width: 100px;
    top: -15px;
    right: -5px;
  }
  .beneficios-header {
    padding-right: 40px;
  }
  .beneficios-header h2 {
    font-size: 1.6rem;
  }
  .beneficios-grid-interno {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .beneficio-item {
    padding: 0.5rem;
  }
  .beneficio-icon {
    width: 40px;
    height: 40px;
  }
  .beneficio-icon i {
    font-size: 1.2rem;
  }
  .beneficio-item h3 {
    font-size: 1rem;
  }
  .beneficio-item p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .totem-outside {
    display: none;
  }
  .beneficios-header {
    padding-right: 0;
  }
}

/* ============================================ */
/* CONTATO */
/* ============================================ */
.contato {
  padding: 6rem 0;
}
.contato-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-item i {
  width: 44px;
  height: 44px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-fast);
  text-decoration: none; /* Remove qualquer sublinhado residual */
}
.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  text-decoration: none; /* Garante que no hover também não tenha */
}

/* Ajuste para o container do formulário – desktop */
.contatoform {
  padding: 5rem 0;
}

/* (Opcional) Se quiser que no mobile o padding seja menor */
@media (max-width: 768px) {
  .contatoform {
    padding: 2rem 0;
  }
}

.contato-form {
  background: var(--bg-card);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}
.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--bg-primary);
  font-size: 0.95rem;
}
.form-group textarea {
  padding-top: 0.875rem;
  resize: vertical;
  min-height: 100px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
@media (max-width: 968px) {
  .contato-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* BLOG */
/* ============================================ */
.blog {
  padding: 5rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border-radius: 1.75rem;
  overflow: visible;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-image {
  height: 180px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    rgba(20, 184, 166, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.75rem 1.75rem 0 0;
}
.blog-image i {
  font-size: 3.5rem;
  color: var(--primary);
}
.blog-category {
  display: inline-block;
  margin: 1.25rem 1.25rem 0.5rem;
  background: rgba(20, 184, 166, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-dark);
  width: fit-content;
}
.blog-card h3 {
  margin: 0 1.25rem 0.75rem;
  font-size: 1.2rem;
  line-height: 1.4;
  min-height: 3.2rem;
}
.blog-card p {
  margin: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}
.blog-card .card-link {
  margin: 0 1.25rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  width: fit-content;
}
.blog-card .card-link:hover i {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-card h3 {
    font-size: 1.1rem;
    min-height: auto;
  }
}

/* ============================================ */
/* CTA FINAL */
/* ============================================ */
.cta-final {
  padding: 5rem 0;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
}
.cta-content .orange {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* ============================================
   LOGO + TÍTULO
============================================ */

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo > div:first-child img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.footer-logo span {
  color: var(--primary);
}

/* ============================================
   TEXOS
============================================ */

.footer-logo p {
  margin: 0;
  line-height: 1.7;
}

.footer-logo .tagline {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ============================================
   LINKS
============================================ */

.footer-links h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ============================================
   FOOTER BOTTOM
============================================ */

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.heart {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.heart i {
  color: var(--primary);
}
/* ============================================ */
/* UTILITÁRIOS & RESPONSIVO FINAL */
/* ============================================ */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
  .stat-card-3,
  .stat-card-2 {
    display: none;
  }
  .solucoes-grid,
  .blog-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
  }
  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .footer-content {
    text-align: center;
    gap: 1.5rem;
  }
}

/* ============================================ */
/* AJUSTES DO MENU */
/* ============================================ */
@media (min-width: 992px) {
  .nav-links {
    flex-wrap: nowrap !important;
    gap: 0.6rem;
  }
  .nav-links li a {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .nav-links .btn-demo,
  .nav-links .nav-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 991px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .nav-links li {
    margin-bottom: 0.75rem;
  }
  .nav-links .nav-cta,
  .nav-links .btn-demo {
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
}

/* ============================================ */
/* MODAL MÍDIA KIT */
/* ============================================ */
.midia-kit-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}
.midia-kit-menu {
  background: var(--bg-card, #ffffff);
  border-radius: 1.75rem;
  padding: 2rem 1.8rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
  animation: midiaKitFadeInUp 0.3s ease;
  border: 1px solid var(--border-light, #e5e7eb);
}
.midia-kit-menu h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary, #1f2937);
}
.midia-kit-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
  width: 100%;
}
.midia-kit-menu li {
  margin-bottom: 0.75rem;
  width: 100%;
  display: block;
}
.midia-kit-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #f9fafb;
  padding: 0.85rem 1.2rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}
.midia-kit-menu li a:hover {
  background: var(--primary, #14b8a6);
  color: white;
  border-color: var(--primary, #14b8a6);
  transform: scale(1.02);
}
.midia-kit-menu .fechar-btn {
  background: #e5e7eb;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  color: #374151;
}
.midia-kit-menu .fechar-btn:hover {
  background: #d1d5db;
  transform: scale(0.98);
}
@keyframes midiaKitFadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .midia-kit-menu {
    padding: 1.5rem;
  }
  .midia-kit-menu li a {
    display: flex;
    align-items: center;
    justify-content: center; /* centraliza horizontalmente */
    gap: 0.75rem;
    background: #f9fafb;
    padding: 0.85rem 1.2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    width: 100%; /* garante que ocupe toda a largura do item da lista */
    box-sizing: border-box;
    text-align: center; /* fallback */
  }
}

/* ============================================ */
/* WHATSAPP FLOATING BUTTON */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  animation: pulse-whatsapp 1.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  background-color: #128c7e;
}
.whatsapp-mascote {
  position: absolute;
  right: 75px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1f2a3a;
  padding: 8px 16px 8px 12px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  border: 1px solid #e5e7eb;
}
.whatsapp-float:hover .whatsapp-mascote {
  opacity: 1;
  visibility: visible;
  right: 85px;
}
.mascote-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.mascote-texto {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
}
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-mascote {
    display: none;
  }
}

/* ============================================ */
/* DROPDOWN DOS BOTÕES DE AÇÃO */
/* ============================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: linear-gradient(105deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-family: inherit;
}
.dropbtn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.dropbtn i:last-child {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.nav-dropdown.active .dropbtn i:last-child {
  transform: rotate(180deg);
}
.dropdown-content {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--bg-card);
  min-width: 200px;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  list-style: none;
}
.nav-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-content li {
  margin: 0;
  padding: 0;
}
.dropdown-content li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text-primary);
  background: transparent;
  border-radius: 0;
  text-align: left;
  white-space: nowrap;
}
.dropdown-content li a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.dropdown-content .btn-demo,
.dropdown-content .nav-cta {
  background: transparent;
  color: var(--text-primary) !important;
  box-shadow: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.dropdown-content .btn-demo:hover,
.dropdown-content .nav-cta:hover {
  background: var(--primary-soft);
  color: var(--primary) !important;
}
@media (max-width: 968px) {
  .nav-dropdown {
    width: 100%;
  }
  .dropbtn {
    justify-content: center;
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
    margin-top: 0.5rem;
    transform: none;
  }
  .dropdown-content li a {
    padding: 0.5rem 1rem;
    justify-content: center;
    text-align: center;
  }
  .nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.dashboard-video,
.sobre-video {
  transform: translateZ(0);
  will-change: transform; /* já existe no .carrossel-track, pode adicionar aqui */
}

.logo-text {
  font-size: 2rem; /* ajuste o valor conforme necessário */
}

.logo-highlight {
  font-size: inherit; /* mantém o mesmo tamanho do .logo-text */
}

.logo-icon img {
  max-height: 60px; /* mesma altura da imagem */
  width: auto;
  vertical-align: middle;
}
/* Footer logo imagem */
.footer-logo img {
  display: block;
  margin-bottom: 15px;
}

/* Garantir que as colunas fiquem alinhadas */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo p,
.footer-logo .tagline {
  margin-top: 10px;
}
/* ============================================ */
/* FOOTER RESPONSIVO - CENTRALIZAÇÃO MOBILE */
/* ============================================ */

/* Garantir que a div da logo fique centralizada no mobile */
@media (max-width: 768px) {
  .footer-logo div {
    justify-content: center !important;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-content {
    text-align: center;
  }

  .footer-links ul {
    padding-left: 0;
  }

  .footer-links li {
    list-style: none;
  }
}

/* Para telas muito pequenas (celular) */
@media (max-width: 480px) {
  .footer-content {
    gap: 1.5rem;
  }

  .footer-logo div {
    flex-direction: column;
    gap: 8px;
  }

  .footer-logo img {
    margin-bottom: 5px;
  }

  .footer-logo h3 {
    margin: 0;
  }
}

/* ============================================ */
/* COOKIE CONSENT BANNER - RESPONSIVO CORRIGIDO */
/* ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 10000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 2;
  min-width: 200px;
}

.cookie-text i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.cookie-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--primary);
  color: white;
}

.cookie-btn.accept:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.cookie-btn.reject {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-btn.customize {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.cookie-btn.customize:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== MODAL RESPONSIVO ========== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background: var(--bg-card);
  max-width: 500px;
  width: 90%;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  margin: 1rem;
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.4rem;
}

.cookie-option {
  margin-bottom: 1.2rem;
}

.cookie-option label {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.cookie-option p {
  margin: 0.25rem 0 0 1.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  justify-content: flex-end;
}

/* ========== RESPONSIVO MOBILE (CORREÇÃO TOTAL) ========== */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 0.8rem 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .cookie-text {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .cookie-text i {
    font-size: 1.3rem;
  }

  .cookie-text p {
    font-size: 0.8rem;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
    gap: 0.6rem;
  }

  .cookie-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* Modal responsivo */
  .cookie-modal-content {
    padding: 1.5rem;
    width: 95%;
    margin: 0.5rem;
  }

  .cookie-modal-content h3 {
    font-size: 1.2rem;
  }

  .cookie-option label {
    font-size: 0.9rem;
  }

  .cookie-option p {
    font-size: 0.7rem;
    margin-left: 1.4rem;
  }

  .cookie-modal-buttons {
    justify-content: center;
    gap: 0.8rem;
  }

  .cookie-btn {
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}
