/* ====================
   SISTEMA DE DESIGN 
   ==================== */
:root {
    /* Cores Principais - Ajustados para maior harmonia */
    --color-primary: #2563EB;
    --color-primary-hover: #1E40AF;
    --color-primary-light: #DBEAFE;
    --color-primary-bg: #EFF6FF;
    --color-secondary: #7C3AED;  /* Roxo mais vibrante */
    --color-accent: #F43F5E;     /* Vermelho mais vibrante */
    --color-success: #10B981;    /* Verde mais vibrante */
    --color-warning: #F59E0B;    /* Âmbar */
    --color-error: #EF4444;      /* Vermelho */
    --color-info: #3B82F6;       /* Azul informação */
    
    /* Cores de Texto - Aprimoradas para acessibilidade */
    --color-text-dark: #111827;     /* Mais escuro para melhor contraste */
    --color-text-medium: #374151;   /* Ajustado para melhor contraste */
    --color-text-light: #6B7280;    /* Mantido */
    --color-text-white: #FFFFFF;    /* Mantido */
    
    /* Cores de Background - Mais coerentes */
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F9FAFB;
    --color-bg-gray-50: #F3F4F6;
    --color-bg-gray-100: #E5E7EB;
    --color-bg-gray-200: #D1D5DB;
    --color-bg-dark: #111827;

    --key-shadow-color: #555657;
    --key-top-color: #626364;
    --key-dark-shadow-color: #222222;
    --key-dark-top-color: #333333;
      
      /* Cores de hover sutis */
    --key-shadow-hover: #5d5e5f;
    --key-top-hover: #6a6b6c;
    --key-dark-shadow-hover: #2a2a2a;
    --key-dark-top-hover: #3b3b3b;
    
    /* Sombras - Refinadas para efeito 3D mais sutil */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Tipografia - Mais consistente */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-family-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Font Sizes - Escala mais harmônica */
    --fs-xs: 0.75rem;   /* 12px */
    --fs-sm: 0.875rem;  /* 14px */
    --fs-base: 1rem;    /* 16px */
    --fs-lg: 1.125rem;  /* 18px */
    --fs-xl: 1.25rem;   /* 20px */
    --fs-2xl: 1.5rem;   /* 24px */
    --fs-3xl: 1.875rem; /* 30px */
    --fs-4xl: 2.25rem;  /* 36px */
    --fs-5xl: 3rem;     /* 48px */
    
    /* Font Weights - Mais distintos */
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Line Heights - Mais legíveis */
    --lh-none: 1;
    --lh-tight: 1.25;
    --lh-snug: 1.375;
    --lh-normal: 1.5;
    --lh-relaxed: 1.625;
    --lh-loose: 2;
    
    /* Spacing - Sistema mais coerente */
    --space-1: 0.25rem;  /* 4px */
    --space-2: 0.5rem;   /* 8px */
    --space-3: 0.75rem;  /* 12px */
    --space-4: 1rem;     /* 16px */
    --space-5: 1.25rem;  /* 20px */
    --space-6: 1.5rem;   /* 24px */
    --space-8: 2rem;     /* 32px */
    --space-10: 2.5rem;  /* 40px */
    --space-12: 3rem;    /* 48px */
    --space-16: 4rem;    /* 64px */
    --space-20: 5rem;    /* 80px */
    --space-24: 6rem;    /* 96px */
    
    /* Border Radius - Mais consistente */
    --radius-sm: 0.25rem;    /* 4px */
    --radius-md: 0.375rem;   /* 6px */
    --radius-lg: 0.5rem;     /* 8px */
    --radius-xl: 0.75rem;    /* 12px */
    --radius-2xl: 1rem;      /* 16px */
    --radius-3xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* Transições - Mais naturais */
    --transition-fast: 150ms;
    --transition-normal: 300ms;
    --transition-slow: 500ms;
    --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index - Sistema organizado */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;
    
    /* Container - Melhor centralização */
    --container-max: 1280px;
    --container-padding: 1rem;
}

/* ====================
   RESET & BASE
   ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast) var(--transition-ease);
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-tight);
}

/* ====================
   UTILIDADES
   ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center {
    text-align: center;
}

.accent-text {
    color: var(--color-primary);
    font-weight: var(--fw-bold);
}

.text-link {
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: color var(--transition-fast) var(--transition-ease), transform var(--transition-fast) var(--transition-ease);
    display: inline-block;
    position: relative;
}

.text-link:hover {
    color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.text-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.3s var(--transition-ease);
}

.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.text-link-light {
    color: var(--color-text-white);
}

.text-link-light:hover {
    color: var(--color-primary-light);
}

/* ====================
   COMPONENTES
   ==================== */

/* Botões - Refinados para feedback tátil */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: var(--fw-medium);
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}
.btn:active::after {
    animation: ripple 0.6s ease-out;
}

.btn i, .btn svg {
    margin-left: var(--space-2);
    transition: transform 0.2s ease;
}

.btn:hover i, .btn:hover svg {
    transform: translateX(2px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: 1px solid var(--color-primary);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    color: var(--color-bg-white);
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    border: 1px solid var(--color-bg-gray-200);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--color-bg-gray-50);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.btn-light {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    border: 1px solid var(--color-bg-white);
    transition: all 0.2s ease;
}

.btn-light:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
}

.btn-keyboard {
    background-color: var(--color-bg-gray-50);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: var(--fs-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    transition: all 0.2s ease;
    border: 1px solid var(--color-bg-gray-100);
}

.btn-keyboard:hover {
    background-color: var(--color-bg-gray-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.key-combo {
    background-color: var(--color-bg-gray-200);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    font-weight: var(--fw-medium);
    transition: all 0.2s ease;
}

.btn-keyboard:hover .key-combo {
    background-color: var(--color-bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* ====================
   LAYOUT / HEADER
   ==================== */

   .header.vibrant-header {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: var(--z-50);
      background: var(--color-bg-white); /* Alterado para branco */
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .header.vibrant-header.scrolled {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem;
      box-shadow: 0 8px 30px rgba(65, 84, 224, 0.1);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem var(--container-padding);
      max-width: var(--container-max);
      margin: 0 auto;
      height: 76px;
    }

    /* Logo */
    .vibrant-header .logo {
      position: relative;
      z-index: 1;
    }

    .vibrant-header .logo a {
      display: flex;
      align-items: center;
    }

    .vibrant-header .logo-image {
      height: 40px;
      /* Removido o filtro de inversão para manter as cores originais do logo */
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .vibrant-header .logo:hover .logo-image {
      transform: scale(1.1);
    }

    .vibrant-header .logo::before {
      content: '';
      position: absolute;
      top: -12px;
      left: -12px;
      right: -12px;
      bottom: -12px;
      background: rgba(245, 246, 255, 0.9); /* Alterado para tom quase branco com leve toque de azul */
      border-radius: var(--radius-full);
      transform: scale(0);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: -1;
    }

    .vibrant-header .logo:hover::before {
      transform: scale(1);
    }

    /* Navegação Principal */
    .vibrant-header .main-nav {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }

    /* Links de Navegação */
    .vibrant-header .nav-links {
      display: flex;
      gap: 0.75rem;
      list-style: none;
    }

    .vibrant-header .nav-item {
      position: relative;
    }

    .vibrant-header .nav-link {
      position: relative;
      color: var(--color-text-medium); /* Alterado para cor de texto média */
      font-weight: var(--fw-medium);
      padding: 0.75rem 1.25rem;
      border-radius: var(--radius-full);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      text-decoration: none;
      z-index: 1;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-family-heading);
    }

    .vibrant-header .nav-link span {
      position: relative;
      z-index: 2;
    }

    .vibrant-header .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(245, 246, 255, 0.7); /* Alterado para tom quase branco com leve toque de azul */
      border-radius: var(--radius-full);
      transform: scale(0);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 1;
    }

    .vibrant-header .nav-link:hover {
      color: var(--color-primary); /* Alterado para cor primária */
      transform: translateY(-2px);
    }

    .vibrant-header .nav-link:hover::before {
      transform: scale(1);
    }

    .vibrant-header .nav-link.active {
      color: #4959cf; /* Alterado para cor primária */
      background-color: rgba(245, 246, 255, 0.7); /* Alterado para tom quase branco com leve toque de azul */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .vibrant-header .nav-link.active::before {
      transform: scale(1);
      background-color: rgba(245, 246, 255, 0.7); /* Alterado para tom quase branco com leve toque de azul */
    }

    /* Efeito ripple nos links */
    .vibrant-header .nav-link .ripple {
      position: absolute;
      border-radius: 50%;
      background-color: rgba(245, 246, 255, 0.9); /* Alterado para tom quase branco com leve toque de azul */
      transform: scale(0);
      animation: ripple-effect 0.6s linear;
      z-index: 0;
    }

    @keyframes ripple-effect {
      to {
        transform: scale(2.5);
        opacity: 0;
      }
    }

    /* Botões de Autenticação */
    .vibrant-header .auth-buttons {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .vibrant-header .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius-full);
      font-weight: var(--fw-semibold);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      text-decoration: none;
      font-size: 0.95rem;
      position: relative;
      overflow: hidden;
      font-family: var(--font-family-heading);
      z-index: 1;
    }

    .vibrant-header .btn-ghost {
      background-color: transparent;
      color: var(--color-text-medium); /* Alterado para cor de texto média */
      border: 1px solid var(--color-bg-gray-200); /* Alterado para cor de borda mais sutil */
    }

    .vibrant-header .btn-ghost:hover {
      border-color: var(--color-primary); /* Alterado para cor primária */
      background-color: rgba(245, 246, 255, 0.7); /* Alterado para tom quase branco com leve toque de azul */
      color: var(--color-primary); /* Alterado para cor primária */
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    }

    .vibrant-header .btn-primary {
      background-color: var(--color-primary); /* Alterado para cor primária */
      color: var(--color-text-white);
      border: none;
      box-shadow: 0 4px 10px rgba(65, 84, 224, 0.2);
    }

    .vibrant-header .btn-primary:hover {
      background-color: var(--color-primary-hover);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 25px rgba(65, 84, 224, 0.25);
    }

    .vibrant-header .btn i {
      transition: transform 0.3s ease;
    }

    .vibrant-header .btn:hover i {
      transform: translateX(3px);
    }

    .vibrant-header .btn-ghost:hover i {
      transform: translateY(-1px);
    }

    /* Efeito ripple nos botões */
    .vibrant-header .btn .ripple {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      animation: ripple-effect 0.6s linear;
      z-index: -1;
    }

    .vibrant-header .btn-ghost .ripple {
      background-color: rgba(245, 246, 255, 0.9); /* Alterado para tom quase branco com leve toque de azul */
    }

    .vibrant-header .btn-primary .ripple {
      background-color: rgba(65, 84, 224, 0.2); /* Alterado para tom azul com transparência */
    }

    /* Animações para os elementos */
    @keyframes float-in {
      0% {
        opacity: 0;
        transform: translateY(-10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .vibrant-header .logo {
      animation: float-in 0.5s ease-out 0.1s forwards;
      opacity: 0;
    }

    .vibrant-header .nav-item {
      animation: float-in 0.5s ease-out forwards;
      opacity: 0;
    }

    .vibrant-header .nav-item:nth-child(1) {
      animation-delay: 0.2s;
    }

    .vibrant-header .nav-item:nth-child(2) {
      animation-delay: 0.3s;
    }

    .vibrant-header .nav-item:nth-child(3) {
      animation-delay: 0.4s;
    }

    .vibrant-header .nav-item:nth-child(4) {
      animation-delay: 0.5s;
    }

    .vibrant-header .btn-ghost {
      animation: float-in 0.5s ease-out 0.6s forwards;
      opacity: 0;
    }

    .vibrant-header .btn-primary {
      animation: float-in 0.5s ease-out 0.7s forwards;
      opacity: 0;
    }

    /* Mobile menu */
    .vibrant-header .mobile-menu-container {
      display: none;
    }

    .vibrant-header .mobile-toggle {
      background: rgba(245, 246, 255, 0.7); /* Fundo sutil */
      border-radius: var(--radius-lg);
      width: 44px;
      height: 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.3s ease;
      border: none; /* Removido contorno/borda */
      box-shadow: none; /* Removida sombra */
    }

    /* Estilos para as três linhas */
    .vibrant-header .mobile-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--color-primary);
      transition: all 0.3s ease;
      transform-origin: center;
    }

    /* Estado ativo (X) */
    .vibrant-header .mobile-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .vibrant-header .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .vibrant-header .mobile-toggle.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .vibrant-header .mobile-toggle:hover {
      background-color: rgba(240, 242, 255, 0.9);
    }

    .vibrant-header .popup-menu {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 80%;
      height: 100%;
      background: var(--color-bg-white);
      z-index: 1000;
      padding: 30px;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
      border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .vibrant-header .popup-menu.active {
      display: block;
    }

    .vibrant-header .popup-menu-header {
      margin-bottom: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .vibrant-header .popup-logo {
      height: 40px;
      /* Removido o filtro de inversão para manter as cores originais do logo */
    }

    /* Botão de fechar (X) dentro do popup menu */
    .vibrant-header .popup-close {
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    
    .vibrant-header .popup-close span {
      position: absolute;
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--color-primary);
      border-radius: 1px;
    }
    
    .vibrant-header .popup-close span:first-child {
      transform: rotate(45deg);
    }
    
    .vibrant-header .popup-close span:last-child {
      transform: rotate(-45deg);
    }
    
    .vibrant-header .popup-close:hover span {
      background-color: var(--color-primary-hover);
    }

    .vibrant-header .popup-menu ul {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .vibrant-header .popup-menu ul li {
      margin-bottom: 15px;
    }

    .vibrant-header .popup-menu ul li a {
      color: var(--color-text-medium); /* Alterado para cor de texto média */
      font-weight: var(--fw-medium);
      font-size: 16px;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-lg);
      display: block;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .vibrant-header .popup-menu ul li a:hover {
      background-color: rgba(245, 246, 255, 0.9); /* Alterado para tom quase branco com leve toque de azul */
      color: var(--color-primary); /* Alterado para cor primária */
      transform: translateX(5px);
    }

    .vibrant-header .popup-menu-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .vibrant-header .popup-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: var(--radius-full);
      font-weight: var(--fw-medium);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .vibrant-header .popup-btn-login {
      background-color: var(--color-bg-gray-50);
      color: var(--color-text-medium); /* Alterado para cor de texto média */
      border: 1px solid var(--color-bg-gray-100);
    }

    .vibrant-header .popup-btn-login:hover {
      background-color: var(--color-bg-gray-100);
      color: var(--color-primary); /* Alterado para cor primária */
      border-color: var(--color-primary); /* Alterado para cor primária */
    }

    .vibrant-header .popup-btn-cta {
      background-color: var(--color-primary); /* Alterado para cor primária */
      color: var(--color-text-white);
    }

.vibrant-header .popup-btn-cta:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(65, 84, 224, 0.2);
}
.vibrant-header .mobile-menu-container {
  display: none !important;
}

.vibrant-header .popup-menu {
  display: none !important;
}

.vibrant-header .popup-menu.active {
  display: block !important;
}

/* Mostrar o menu mobile apenas quando ativado pelo botão */
@media (max-width: 768px) {
  .vibrant-header .mobile-menu-container {
    display: block !important;
  }
  
  .vibrant-header .main-nav {
    display: none !important;
  }
}

/* ====================
   HERO SECTION
   ==================== */

.hero {
    position: relative;
    padding: var(--space-16) 0 var(--space-8);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(219, 234, 254, 0.5) 0%, rgba(219, 234, 254, 0) 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-bg-dark);
}

.hero h1 {
    font-size: 60px;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-5);
    line-height: 1.3;
    background: linear-gradient(130deg, rgb(41, 52, 75), rgb(39, 49, 182));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: var(--fs-xl);
    color: var(--color-text-medium);
    max-width: 800px;
    margin: 0 auto var(--space-8);
    line-height: var(--lh-relaxed);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.self-host {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    transition: all 0.2s ease;
}

.self-host:hover {
    transform: translateY(-2px);
}


/* ====================
   DASHBOARD SECTION
   ==================== */
.dashboard {
    margin-bottom: var(--space-16);
    position: relative;
}

.dashboard::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(219, 234, 254, 0) 0%, rgba(219, 234, 254, 0.3) 100%);
    z-index: -1;
    transform: skewY(-3deg);
}

.dashboard-wrapper {
    position: relative;
    transition: transform 0.5s ease;
}

.dashboard-wrapper:hover {
    transform: translateY(-5px);
}

.dashboard img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateX(0) rotateY(0);
}

.dashboard-wrapper:hover img {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Estilo do componente de respostas prontas */
#canned-responses-demo {
  font-family: 'Poppins', Arial, sans-serif;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.cr-chat-messages {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex-grow: 0;
  padding-right: 10px;
  margin-bottom: 70px;
}
.cr-message {
  padding: 15px 20px;
  margin-bottom: 10px;
  max-width: 90%;
  color: #338;
  position: relative;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cr-user-message {
  align-self: flex-start;
  margin-left: 40px;
  border-radius: 20px 20px 20px 0;
}
.cr-bot-message {
  align-self: flex-end;
  border-radius: 20px 20px 0 20px;
}
.cr-avatar {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.cr-input-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
}
#cr-chat-input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333333;
  font-size: 14px;
  font-family: 'Poppins', Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#cr-chat-input::placeholder {
  color: rgba(51, 51, 51, 0.7);
}
#cr-canned-responses-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
}
.cr-canned-response {
  padding: 15px 20px;
  cursor: pointer;
  color: #333333;
}
.cr-canned-response:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.interface-details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* ====================
   CLIENTS SECTION
   ==================== */
.clients {
    text-align: center;
    padding: var(--space-8) 0 var(--space-16);
    overflow: hidden;
    position: relative;
}

.section-title {
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-10);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
}

.client-logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.client-logos-container:before, 
.client-logos-container:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: var(--z-10);
    pointer-events: none;
}

.client-logos-container:before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-white), transparent);
}

.client-logos-container:after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-white), transparent);
}

.client-logos {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scroll 25s linear infinite;
}

.client-logos-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logos-track img {
    height: 30px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-normal) var(--transition-ease);
    margin: 0 var(--space-8);
    flex-shrink: 0;
}

.client-logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ====================
   CUSTOMER ENGAGEMENT
   ==================== */
.customer-engagement {
    padding: var(--space-16) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-10);
}

.section-header h2 {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-4);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: var(--fs-lg);
    color: var(--color-text-medium);
    line-height: var(--lh-relaxed);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}
.grupo1, .grupo2, .grupo3 {
    display: contents; /* Isso faz com que os filhos diretos dos grupos sejam tratados como filhos diretos do grid */
}
.feature-card.feature-large {
    grid-column: span 5;
    grid-row: span 3;
}
.feature-card.feature-medium {
    grid-column: span 3;
    grid-row: span 3;
}




.feature-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-bg-gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-large {
    grid-column: span 2;
}

.feature-medium {
    grid-column: span 1;
}

.feature-full {
    grid-column: span 8;
}

.feature-content {
    padding: 2em;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature-content-dash {
    background-image:url('https://multichats.app/assets/img/painel-dados-multichats.png');
    background-size: 115%; /* Aumenta o tamanho da imagem para 150% */
    background-position: top; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    padding: 1em;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-2);
}

.feature-card p {
    color: var(--color-text-medium);
    margin-bottom: var(--space-4);
}

.gradient-card {
    background: linear-gradient(to bottom right, rgb(237, 68, 144), rgb(99, 81, 228));
    color: var(--color-text-white);
}

.gradient-card p {
    color: rgba(255, 255, 255, 0.9);
}

.accent-bg {
    background: linear-gradient(to bottom right, #ff5060, #9d47ff);
    color: var(--color-text-white);
}

.accent-bg p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
}

.dark-bg {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.8);
}

.primary-gradient {
    background: linear-gradient(90deg, #0a4ca8, #1e72e8);
    color: var(--color-text-white);
}

.primary-gradient p {
    color: rgba(255, 255, 255, 0.9);
}

.section-footer {
    text-align: center;
    margin-top: var(--space-10);
}

/* Chat Component */
.chat-demo {
    margin-top: 10em;
    background: transparent;
    padding: 0;
    width: 100%;
}

.chat-messages {
    overflow-y: auto;   
    height: 13rem;
    margin-top: auto;
    align-items: flex-end;
    height: 8rem;
    margin-bottom: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.message {
    margin-bottom: var(--space-3);
    border-radius: var(--radius-xl);
    padding: var(--space-3) var(--space-4);
    max-width: 80%;
    font-size: var(--fs-sm);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--color-text-white);
    margin-left: 40px;
    position: relative;
    align-self: flex-start;
    animation-delay: 0.2s;
}

.bot-message {
    background-color: rgba(255, 255, 255, 0.35);
    color: var(--color-text-white);
    align-self: flex-end;
    margin-left: auto;
}

.avatar {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.input-container {
    position: relative;
    margin-top: var(--space-4);
}

#chat-input {
    width: 100%;
    padding: var(--space-3) var(--space-5);
    border: none;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--color-text-white);
    font-size: var(--fs-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

#chat-input:focus {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    outline: none;
}

#chat-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#canned-responses {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    display: none;
    box-shadow: var(--shadow-lg);
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: var(--space-2);
    z-index: var(--z-10);
    border: 1px solid var(--color-bg-gray-100);
}

.canned-response {
    padding: var(--space-3);
    cursor: pointer;
    color: var(--color-text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast) var(--transition-ease);
}

.canned-response:hover {
    background-color: var(--color-bg-gray-50);
    transform: translateX(5px);
}

.canned-response .response-key {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

/* Keyboard Shortcuts */
.keyboard-shortcuts-grid {
    margin-bottom: var(--space-6);
}

.keyboard-grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    margin: 0;
    border-radius: var(--radius-lg);
    padding: 0.2em;
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Container do SVG */
.keyboard-container {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    max-width: 100%;
  }
  
  /* Estilos para grupos de teclas */
  .key-group {
    cursor: pointer;
    transition: transform 0.15s ease;
  }
  
  .key-group:hover {
    transform: translateY(-2px);
  }
  
  .key-group:active, .key-group.active {
    transform: translateY(1px);
  }
  
  /* Elementos de teclas */
  .key-shadow {
    fill: var(--key-shadow-color);
    transition: fill 0.2s ease;
  }
  
  .key-top {
    fill: var(--key-top-color);
    transition: fill 0.2s ease;
  }
  
  .key-dark-shadow {
    fill: var(--key-dark-shadow-color);
    transition: fill 0.2s ease;
  }
  
  .key-dark-top {
    fill: var(--key-dark-top-color);
    transition: fill 0.2s ease;
  }
  
  /* Efeitos de hover para teclas normais */
  .key-group:hover .key-shadow {
    fill: var(--key-shadow-hover);
  }
  
  .key-group:hover .key-top {
    fill: var(--key-top-hover);
  }
  
  /* Efeitos de hover para teclas escuras */
  .key-group:hover .key-dark-shadow {
    fill: var(--key-dark-shadow-hover);
  }
  
  .key-group:hover .key-dark-top {
    fill: var(--key-dark-top-hover);
  }
  
  /* Estilo para texto nas teclas */
  .key-text {
    pointer-events: none;
    font-family: 'Arial', sans-serif;
    fill: white;
  }
  
  /* Animação suave para o teclado */
  @keyframes gentle-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
  }

  .keyboard-container svg {
    animation: gentle-float 8s infinite ease-in-out;
    max-width: 100%;
    height: auto;
   }
  
  svg {
    animation: gentle-float 8s infinite ease-in-out;
    max-width: 100%;
    height: 0;
  }
  

/* Collaboration */
.collaboration-interface {
    margin-top: var(--space-6);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .collaboration-interface {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.collaboration-buttons {
    display: flex;
    margin-bottom: var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: var(--space-2);
}

.collab-btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    border: none;
    margin-right: var(--space-2);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all 0.2s ease;
}

.collab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.collab-btn-active {
    background: rgba(255, 255, 255, 0.25);
}

.collaboration-message {
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    font-size: var(--fs-sm);
}

.mention {
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    font-weight: var(--fw-medium);
}

.collaboration-actions {
    display: flex;
    gap: var(--space-2);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}


/* Animated Chat */
.chatbot-card {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-2xl);
    background: linear-gradient(to bottom right, rgb(99, 151, 255), rgb(45, 68, 211));
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 1px;
}

#animated-chat-component {
    font-family: var(--font-family-heading);
    width: 100%;
    height: 410px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    padding-top: var(--space-6);
}

.animated-chat-title {
    color: var(--color-text-white);
    font-size: var(--fs-3xl);
    margin: 0 0 var(--space-6) var(--space-8);
    font-weight: var(--fw-semibold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.animated-chat-messages {
    flex-grow: 1;
    padding: var(--space-5) var(--space-8);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.chat-message-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    animation: fadeIn 0.5s ease forwards;
    margin-right: auto;
}

.chat-message-row.user-row {
    margin-left: auto;
    margin-right: 0;
}

.bot-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message {
    padding: var(--space-3) var(--space-5);
    border-radius: 18px;
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--color-text-dark);
    max-width: 300px;
}

.bot-message {
    background-color: rgba(230, 240, 250, 0.9);
    margin-right: auto;
}

.user-message {
    background-color: white;
    margin-left: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.typing-row {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-2) var(--space-3);
    background-color: rgba(230, 240, 250, 0.9);
    border-radius: 12px;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #2978be;
    border-radius: 50%;
    display: inline-block;
    animation: typing-bounce 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated-play-button {
    position: absolute;
    top: var(--space-6);
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: var(--z-10);
    transition: all var(--transition-normal) var(--transition-ease);
}

.animated-play-button::before {
    content: '▶';
    color: var(--color-text-white);
    font-size: 16px;
}

.animated-play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.animated-play-button {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: var(--z-10);
    transition: all var(--transition-normal) var(--transition-ease);
}

.animated-play-button::before {
    content: '▶';
    color: var(--color-text-white);
    font-size: 20px;
}

.animated-play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}


/* ====================
   CHAT-AO-VIVO SECTION
   ==================== */
.live-chat-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
    margin-top: var(--space-8);
}

.config-panel {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-dark);
}

.input-text {
    display: block;
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-bg-gray-200);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    transition: border-color var(--transition-fast) var(--transition-ease), box-shadow var(--transition-fast) var(--transition-ease);
}

.input-text:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-text-field {
    height: 42px;
}

.textarea-field {
    min-height: 80px;
    resize: vertical;
}

.select {
    display: block;
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-bg-gray-200);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    height: 42px;
    appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23666%27 d=%27M6 8L1 3h10z%27/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.select:hover {
    border-color: var(--color-primary);
}

.color-picker {
    width: 100%;
    height: 42px;
    padding: 4px;
    cursor: pointer;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-bg-gray-200);
    transition: all 0.2s ease;
}

.color-picker:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.button-group {
    display: flex;
    border: 1px solid var(--color-bg-gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
}

.button-group-btn {
    flex: 1;
    padding: var(--space-2) var(--space-4);
    border: none;
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    cursor: pointer;
    font-size: var(--fs-sm);
    transition: all var(--transition-fast) var(--transition-ease);
}

.button-group-btn:hover {
    background-color: var(--color-bg-gray-50);
}

.button-group-btn.active {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.button-group-btn-left {
    border-right: 1px solid var(--color-bg-gray-200);
}

.preview-panel {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.preview-wrapper {
    position: relative;
    width: 380px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.preview-container {
    width: 100%;
    background: var(--color-bg-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    height: 474px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.preview-container:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.preview-header {
    background: var(--color-bg-white);
    padding: var(--space-6) var(--space-6) var(--space-4);
}

.preview-title {
    font-size: var(--fs-2xl);
    color: var(--color-text-dark);
    margin: 0 0 var(--space-2) 0;
    font-weight: var(--fw-semibold);
}

.preview-description {
    color: var(--color-text-medium);
    line-height: var(--lh-relaxed);
    font-size: var(--fs-base);
    margin: 0;
}

.preview-content {
    background: var(--color-bg-white);
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
}

.status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.status-text {
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    font-size: var(--fs-sm);
}

.status-time {
    color: var(--color-text-light);
    font-size: var(--fs-xs);
    margin-top: 2px;
    margin-left: 12px;
}

.preview-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg-gray-100);
    cursor: pointer;
    transition: transform var(--transition-fast) var(--transition-ease), box-shadow var(--transition-fast) var(--transition-ease);
}

.preview-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.start-button {
    width: 100%;
    padding: var(--space-3) 0;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all var(--transition-fast) var(--transition-ease);
    position: relative;
    overflow: hidden;
}

.start-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.start-button:active {
    transform: translateY(0);
}

.start-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: left top;
    opacity: 0;
}

.start-button:active::after {
    animation: ripple 0.6s ease-out;
}

.chat-bubble {
    position: absolute;
    bottom: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--color-primary);
    overflow: hidden;
    z-index: var(--z-30);
    box-shadow: 0 4px 16px rgba(43, 143, 249, 0.4);
    transition: all var(--transition-normal) var(--transition-ease);
}

.chat-bubble:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 6px 20px rgba(43, 143, 249, 0.5);
}

.chat-bubble.right {
    right: -10px;
}

.chat-bubble.left {
    left: -10px;
}

.chat-bubble.standard {
    border-radius: 50%;
    padding: 0;
    height: 60px;
    width: 60px;
}

.chat-bubble.expanded {
    border-radius: 100px;
    padding: 0 var(--space-6);
    height: 52px;
    width: auto;
}

.bubble-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.chat-bubble:hover .bubble-icon {
    transform: scale(1.1);
}

/* ====================
   API SECTION
   ==================== */
.open-source-section {
    padding: var(--space-16) 0;
    background-color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.section-content {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

.section-heading {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: var(--space-6);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
}

.section-description {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--color-text-medium);
    margin-bottom: var(--space-8);
}

.stats-section {
    margin-top: var(--space-16);
    position: relative;
    z-index: var(--z-20);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    width: 50%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
    margin-bottom: var(--space-2);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-label {
    font-size: var(--fs-lg);
    color: var(--color-text-dark);
}

.grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.graph-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    z-index: var(--z-10);
}

.border-line {
    position: absolute;
    left: 0;
    flex-grow: 1;
    height: 1px;
    width: 46%;
    border-top: 1px solid var(--color-bg-gray-200);
}

.graph {
    margin-left: auto;
    width: 60%;
    height: 320px;
    overflow: visible;
}

.graph svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
}
 /*=================
  KANBAN SECTION
  ==================== */
  /* Container */
  .mc-kanban-container {
    width: 100%;
    max-width: 1400px; /* Aumentado para dar mais espaço ao Kanban */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Botões */
.mc-kanban-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.mc-kanban-btn-primary {
    background-color: #FFFFFF;
    color: #1a18de;
    border: 1px solid #2563EB;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
}

.mc-kanban-btn-primary:hover {
    background-color: #1E40AF;
    border-color: #1E40AF;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.mc-kanban-btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Seção Kanban Intro */
.kanban-intro {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.kanban-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kanban-intro-content {
    position: relative;
    z-index: 2;
    max-width: 95%; /* Expandido para ocupar mais espaço */
    margin: 0 auto;
}

.kanban-intro-text {
    margin-bottom: 3rem;
}


.kanban-intro-text h2 {
    font-size: 2.5rem; /* Aumentado para destacar mais */
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px; /* Ajuste para melhorar legibilidade */
}

.kanban-intro-text p {
    font-size: 1.25rem; /* Aumentado para equilibrar com o título maior */
    color: #374151;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kanban-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #FFFFFF;
    border-radius: 9999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.kanban-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.kanban-badge i {
    color: #2563EB;
}

/* Kanban Board Styles */
.kanban-board-container {
    background-color: #FFFFFF;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    margin-top: 2rem;
    width: 100%; /* Ocupar toda a largura disponível */
}

.kanban-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.kanban-controls-left {
    display: flex;
    gap: 0.5rem;
}

.kanban-controls-right {
    display: flex;
    gap: 0.5rem;
}

.kanban-control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kanban-control-btn:hover {
    background-color: #E5E7EB;
    transform: translateY(-2px);
}

.kanban-control-btn.primary {
    background-color: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
}

.kanban-control-btn.primary:hover {
    background-color: #1E40AF;
}

.kanban-board-wrapper {
    position: relative;
    width: 100%; /* Ocupar toda a largura disponível */
}

.kanban-board-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8));
    pointer-events: none;
    z-index: 5;
}

.kanban-board {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    min-height: 400px;
    /* Estilos para scrollbar visível */
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 #F1F5F9;
    width: 100%; /* Ocupar toda a largura disponível */
}

/* Estilo da scrollbar para Chrome, Safari e Opera */
.kanban-board::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.kanban-board::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 4px;
}

.kanban-board::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 4px;
    border: 2px solid #F1F5F9;
}

.kanban-board::-webkit-scrollbar-thumb:hover {
    background-color: #94A3B8;
}

.kanban-column {
    min-width: 280px;
    background-color: #F3F4F6;
    border-radius: 0.5rem;
    padding: 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.kanban-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E5E7EB;
}

.kanban-column:nth-child(1) .kanban-column-header {
    border-color: #FF6B6B;
}

.kanban-column:nth-child(2) .kanban-column-header {
    border-color: #FFD166;
}

.kanban-column:nth-child(3) .kanban-column-header {
    border-color: #4ECDC4;
}

.kanban-column:nth-child(4) .kanban-column-header {
    border-color: #7C3AED;
}

.kanban-column-title {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827;
}

.column-task-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #D1D5DB;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.kanban-column:nth-child(1) .column-task-count {
    background-color: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.kanban-column:nth-child(2) .column-task-count {
    background-color: rgba(255, 209, 102, 0.2);
    color: #E09F3E;
}

.kanban-column:nth-child(3) .column-task-count {
    background-color: rgba(78, 205, 196, 0.2);
    color: #4ECDC4;
}

.kanban-column:nth-child(4) .column-task-count {
    background-color: rgba(124, 58, 237, 0.2);
    color: #7C3AED;
}

.kanban-column-options {
    color: #6B7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.kanban-column-options:hover {
    background-color: #E5E7EB;
    color: #111827;
}

.kanban-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.kanban-card {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    cursor: grab;
    transition: all 0.2s ease;
}

.kanban-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.kanban-card:active {
    cursor: grabbing;
}

.mc-kanban-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.mc-kanban-card-priority {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 500;
}

.priority-high {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.priority-medium {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.priority-low {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.mc-kanban-card-options {
    color: #6B7280;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.mc-kanban-card-options:hover {
    color: #111827;
}

.mc-kanban-card-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #111827;
    font-size: 1rem;
}

.mc-kanban-card-description {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
}

.mc-kanban-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #6B7280;
}

.mc-kanban-card-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mc-kanban-card-avatars {
    display: flex;
    align-items: center;
}

.mc-kanban-card-avatar {
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    border: 2px solid #FFFFFF;
    background-color: #D1D5DB;
    overflow: hidden;
    margin-left: -8px;
    transition: transform 0.2s ease;
}

.mc-kanban-card-avatar:first-child {
    margin-left: 0;
}

.mc-kanban-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-kanban-card-avatar:hover {
    transform: translateY(-3px);
    z-index: 1;
}

.kanban-add-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px dashed #D1D5DB;
    border-radius: 0.5rem;
    color: #6B7280;
    margin-top: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.kanban-add-card:hover {
    background-color: rgba(0, 0, 0, 0.04);
    color: #374151;
}

.drag-over {
    background-color: rgba(37, 99, 235, 0.05);
    border: 2px dashed #2563EB;
}

.dragging {
    opacity: 0.4;
}

/* Dica visual de scroll */
.scroll-hint {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.scroll-hint.fade-out {
    opacity: 0;
}

/* Seção Recursos do Kanban - NOVA VERSÃO */
.kanban-features {
    padding: 6rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.kanban-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Topo da seção com badge e título gradiente */
.kanban-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}


.kanban-features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.kanban-features-header p {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.625;
    margin-bottom: 2rem;
}

/* Navegação com tabs */
.features-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    background-color: #F3F4F6;
    border-radius: 9999px;
    padding: 0.5rem;
    position: relative;
    max-width: 600px;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: transparent;
    border: none;
    font-weight: 500;
    color: #4B5563;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.nav-button.active {
    color: #FFFFFF;
}

.nav-button i {
    font-size: 1rem;
}

.nav-indicator {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    height: calc(100% - 1rem);
    border-radius: 9999px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

/* Área de showcase */
.mc-kanban-features-showcase {
    position: relative;
    margin-top: 3rem;
}

.mc-kanban-feature-tab {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.mc-kanban-feature-tab.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mc-kanban-feature-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mc-kanban-feature-showcase-visual {
    position: relative;
}

/* Card 3D com efeito de profundidade */
.feature-3d-card {
    position: relative;
    perspective: 1500px;
    width: 100%;
    height: 400px;
}

.card-3d-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    border-radius: 1rem;
    overflow: hidden;
}

.feature-3d-card:hover .card-3d-wrapper {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Calendário mockup */
.calendar-mockup {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.month-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.month-selector i {
    color: #6B7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.month-selector i:hover {
    color: #2563EB;
}

.view-options {
    display: flex;
    gap: 0.75rem;
}

.view-options i {
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.view-options i:hover, .view-options i.active {
    color: #2563EB;
    background-color: #EFF6FF;
}

.calendar-body {
    position: relative;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.weekdays span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.day:hover {
    background-color: #F3F4F6;
}

.day.prev-month, .day.next-month {
    color: #D1D5DB;
}

.day.today {
    background-color: #EFF6FF;
    color: #2563EB;
    font-weight: 600;
}

.day.event {
    font-weight: 600;
    color: #111827;
}

.event-dot {
    position: absolute;
    bottom: 0.25rem;
    width: 0.35rem;
    height: 0.35rem;
    background-color: #2563EB;
    border-radius: 50%;
}

/* Eventos flutuantes */
.floating-events {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-event {
    position: absolute;
    animation: float 5s ease-in-out infinite;
}

.floating-event:nth-child(2) {
    animation-delay: 2.5s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.event-card {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    transform: rotate(-2deg);
    min-width: 150px;
}

.event-time {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.event-title {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Informações do recurso */
.mc-kanban-feature-showcase-info {
    padding: 2rem;
}

.mc-kanban-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DBEAFE, rgba(124, 58, 237, 0.1));
    color: #2563EB;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.mc-kanban-feature-showcase-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #111827;
    position: relative;
    padding-bottom: 1rem;
}

.mc-kanban-feature-showcase-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
}

.mc-kanban-feature-showcase-info p {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Lista de benefícios animada */
.mc-kanban-feature-benefits-animated {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.mc-kanban-feature-benefits-animated li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.mc-kanban-feature-benefits-animated li:nth-child(2) {
    animation-delay: 0.2s;
}

.mc-kanban-feature-benefits-animated li:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text span {
    color: #6B7280;
    font-size: 0.875rem;
}

.mc-kanban-feature-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.mc-kanban-feature-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.mc-kanban-feature-action-btn i {
    transition: transform 0.3s ease;
}

.mc-kanban-feature-action-btn:hover i {
    transform: translateX(5px);
}

/* Rotator de cards */
/* Estilos para a visualização dos cards */
.mc-kanban-feature-cards-display {
    margin-top: 3rem;
    margin-bottom: 3rem;
    background-color: #F9FAFB;
    border-radius: 1rem;
    padding: 2rem;
}

.mc-kanban-feature-cards-display .rotator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mc-kanban-feature-cards-display h4 {
    font-size: 1.25rem;
    color: #111827;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mc-kanban-feature-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mc-kanban-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mc-kanban-feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #DBEAFE, rgba(124, 58, 237, 0.1));
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mc-kanban-feature-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.mc-kanban-feature-card p {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsividade para dispositivos menores */
@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}

/* Estatísticas animadas */
.mc-kanban-feature-stats {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 1rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 1rem;
}

.circular-chart {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #E5E7EB;
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke-width: 3;
    stroke: url(#gradient);
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }
}

.percentage {
    fill: #111827;
    font-size: 0.5rem;
    text-anchor: middle;
    font-weight: 700;
    animation: fadeNumber 1.5s ease-out forwards;
}

.mc-kanban-stat-number  {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    position: relative;
    display: inline-block;
}

.stat-plus {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    top: 0;
    right: -1rem;
}

.stat-item h4 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6B7280;
    font-size: 0.875rem;
}

/* CTA Final */
.features-cta {
    text-align: center;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.features-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.features-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

.mc-kanban-btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.mc-kanban-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Estilos para a aba de Automação */
.automation-mockup {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.automation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.automation-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #111827;
}

.automation-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.automation-btn:hover {
    background-color: #1E40AF;
    transform: translateY(-2px);
}

.automation-workflow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.workflow-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #F9FAFB;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.workflow-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.workflow-node.trigger {
    border-left: 4px solid #2563EB;
}

.workflow-node.condition {
    border-left: 4px solid #F59E0B;
}

.workflow-node.action {
    border-left: 4px solid #10B981;
}

.workflow-node.end {
    border-left: 4px solid #7C3AED;
}

.node-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.workflow-node.trigger .node-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.workflow-node.condition .node-icon {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.workflow-node.action .node-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.workflow-node.end .node-icon {
    background-color: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
}

.node-content {
    flex: 1;
}

.node-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.node-desc {
    font-size: 0.75rem;
    color: #6B7280;
}

.connector-line {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: 2px;
    height: 1.5rem;
    background-color: #D1D5DB;
    z-index: 1;
}

.workflow-node:last-child .connector-line {
    display: none;
}

.connector-branch {
    position: absolute;
    width: 2px;
    background-color: #D1D5DB;
    z-index: 1;
}

.connector-branch.left {
    top: calc(100% + 1px);
    left: 25%;
    height: 1rem;
}

.connector-branch.right {
    top: calc(100% + 1px);
    left: 75%;
    height: 1rem;
}

.workflow-branches {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.workflow-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    position: relative;
}

.branch-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.automation-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-node:nth-child(2) {
    animation-delay: 2s;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.floating-node:nth-child(3) {
    animation-delay: 4s;
    background: linear-gradient(135deg, #10B981, #2563EB);
}

/* Estilos para a aba de API/Integração */
.api-mockup {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.api-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563EB;
    font-weight: 600;
}

.api-menu {
    display: flex;
    gap: 1rem;
}

.api-menu-item {
    font-size: 0.875rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.api-menu-item.active {
    color: #2563EB;
    background-color: #EFF6FF;
    font-weight: 500;
}

.api-content {
    display: flex;
    height: calc(100% - 45px);
    margin-top: 1rem;
}

.api-sidebar {
    width: 160px;
    border-right: 1px solid #E5E7EB;
    padding-right: 1rem;
}

.api-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.api-section:hover {
    background-color: #F9FAFB;
}

.api-section.active {
    color: #2563EB;
    background-color: #EFF6FF;
    font-weight: 500;
}

.api-main {
    flex: 1;
    padding-left: 1.5rem;
}

.api-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.api-description {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.api-code-sample {
    background-color: #1E293B;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #0F172A;
    color: #94A3B8;
    font-size: 0.75rem;
}

.code-actions button {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
}

.code-content {
    padding: 1rem;
    font-family: monospace;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
}

.code-content code {
    color: #E2E8F0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.api-endpoints {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.endpoint-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #F9FAFB;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.endpoint-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.http-method {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
}

.http-method.get {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.http-method.post {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.http-method.put {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.endpoint-path {
    font-family: monospace;
    font-size: 0.875rem;
    color: #111827;
}

.api-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-icon:nth-child(1) {
    color: #F7DF1E;
}

.floating-icon:nth-child(2) {
    color: #777BB4;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    color: #3776AB;
    animation-delay: 4s;
}

/* Animações adicionais para interatividade */
@keyframes fadeNumber {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .mc-kanban-feature-showcase-content {
        grid-template-columns: 1fr;
    }
    
    .mc-kanban-feature-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .features-navigation {
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

    .kanban-intro-text h2 {
        font-size: 2.5rem;
    }
    
    .kanban-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .kanban-intro-text h2 {
        font-size: 2rem;
    }
    
    .kanban-features-header h2 {
        font-size: 1.875rem;
    }
    
    .kanban-intro-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-button span {
        display: none;
    }
    
    .nav-button {
        padding: 0.75rem;
    }
    
    .rotator-cards {
        flex-direction: column;
    }
    
    .rotator-card {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .kanban-intro-text h2 {
        font-size: 1.75rem;
    }
    
    .kanban-features-header h2 {
        font-size: 1.75rem;
    }
    
    .kanban-intro-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .kanban-control-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .kanban-control-btn span {
        display: none;
    }

    .feature-3d-card {
        height: 350px;
    }
}

  /*================
   TESTIMONIALS SECTION - NOVA VERSÃO
   ==================== */
   .testimonials {
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.testimonial-name {
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
    margin: 0;
}

.testimonial-role {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin: 0;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 0;
}

.testimonial-container {
    position: relative;
    z-index: 1;
    margin-top: var(--space-8);
}

.testimonial-bg-effect {
    position: absolute;
    top: 10%;
    left: 30%;
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(219, 234, 254, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 100%;
    opacity: 0.6;
    z-index: -1;
    filter: blur(50px);
    pointer-events: none;
}

.testimonial-grid {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.testimonial-main-mobile {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6) var(--space-6);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-bg-gray-100);
    transition: all 0.3s ease;
}

.testimonial-main-desktop {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6) var(--space-6);
    grid-column: span 1;
    grid-row: span 2;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-bg-gray-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-main-mobile blockquote,
.testimonial-main-desktop blockquote {
    font-size: var(--fs-xl);
    color: var(--color-text-dark);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-6);
    position: relative;
    flex-grow: 1;
}

.testimonial-main-mobile blockquote::before,
.testimonial-main-desktop blockquote::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 150px;
    color: var(--color-bg-gray-100);
    font-family: serif;
    line-height: 1;
    z-index: var(--z-0);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-bg-gray-100);
    transition: all 0.3s ease;
}

.testimonial-card:hover,
.testimonial-main-mobile:hover,
.testimonial-main-desktop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background-color: var(--color-bg-white);
}
.testimonial-card blockquote {
    color: var(--color-text-medium);
    margin-bottom: var(--space-4);
    position: relative;
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
}

.case-study-link {
    display: inline-block;
    margin-bottom: var(--space-6);
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    transition: all 0.2s ease;
}

.case-study-link:hover {
    color: var(--color-primary-hover);
    transform: translateX(5px);
}

.case-study-link i {
    transition: transform 0.2s ease;
    margin-left: var(--space-1);
}

.case-study-link:hover i {
    transform: translateX(3px);
}

.testimonial-main-mobile footer,
.testimonial-main-desktop footer,
.testimonial-card footer {
    display: flex;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-bg-gray-100);
    margin-top: auto;
}

.testimonial-main-mobile:hover .testimonial-avatar,
.testimonial-main-desktop:hover .testimonial-avatar,
.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    border-color: var(--color-primary);
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card, .testimonial-main-desktop, .testimonial-main-mobile {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(219, 234, 254, 0.3);
    overflow: hidden;
}

.testimonial-card:hover, .testimonial-main-desktop:hover, .testimonial-main-mobile:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.testimonial-card blockquote, .testimonial-main-desktop blockquote, .testimonial-main-mobile blockquote {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--color-primary);
    font-style: italic;
}

.testimonial-company {
    margin-left: auto;
    height: 30px;
    transition: all 0.2s ease;
}

.testimonial-main-mobile:hover .testimonial-company,
.testimonial-main-desktop:hover .testimonial-company {
    transform: scale(1.05);
}

.testimonial-card blockquote {
    margin-bottom: var(--space-4);
    color: var(--color-text-dark);
    position: relative;
    padding-left: var(--space-6);
}
@media (min-width: 768px) {
    .testimonial-main-mobile {
        display: none;
    }
    
    .testimonial-grid {
        display: grid;
    }
}

@media (max-width: 767px) {
    .testimonial-main-desktop {
        display: none;
    }
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


.meeting-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* dados do formulario */
.sidebar {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text-white);
    padding: var(--space-8);
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-logo {
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sidebar-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.sidebar-logo img {
    width: 85.6%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sidebar-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--color-primary);
}

.sidebar h1 {
    font-family: var(--font-family-heading);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-4);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar p {
    text-align: center;
    margin-bottom: var(--space-8);
    font-size: var(--fs-sm);
    opacity: 0.9;
    line-height: var(--lh-relaxed);
}

.form-container {
    flex: 1;
    background-color: var(--color-bg-white);
    padding: var(--space-8);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--fw-medium);
    color: var(--color-text-medium);
}

.form-control {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--color-bg-gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    font-size: var(--fs-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-control:hover {
    border-color: var(--color-primary);
}

.form-control::placeholder {
    color: var(--color-text-light);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-2);
}

.channel-option {
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.channel-option:hover {
    transform: translateX(5px);
}

.channel-option input[type="checkbox"] {
    margin-right: var(--space-2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.channel-option label {
    cursor: pointer;
    font-weight: var(--fw-normal);
    margin-bottom: 0;
    transition: all 0.2s ease;
}

.channel-option:hover label {
    color: var(--color-primary);
}

.channel-option.checked label {
    color: var(--color-primary);
    font-weight: var(--fw-medium);
}

.optional-text {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    margin-left: var(--space-2);
    font-weight: var(--fw-normal);
}

.demo-benefits {
    margin-top: auto;
}

.demo-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-4);
    transition: all 0.2s ease;
}

.demo-benefit-item:hover {
    transform: translateX(5px);
}

.demo-benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: var(--space-3);
    flex-shrink: 0;
}

.demo-benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-text-white);
}

.demo-benefit-item span {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}

/* Erro e feedback */
.error {
    border-color: var(--color-error) !important;
}

.error-message {
    color: var(--color-error);
    font-size: var(--fs-xs);
    margin-top: var(--space-1);
}

.loading-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: var(--space-2);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modals */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal-content {
    background-color: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-icon {
    font-size: 48px;
    color: var(--color-success);
    margin-bottom: var(--space-4);
}

.modal-close-btn {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-6);
    font-weight: var(--fw-medium);
    margin-top: var(--space-4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.modal-close-btn:active {
    transform: translateY(0);
}

/* Chat Widget e Modal */


.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-right: var(--space-2);
}

.chat-message {
    display: flex;
    margin-bottom: var(--space-3);
    animation: fadeInChat 0.5s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes fadeInChat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user-message {
    justify-content: flex-end;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-bg-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-2);
    box-shadow: var(--shadow-sm);
}

.chat-bubble {
    max-width: 70%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-xl);
    background-color: var(--color-bg-gray-100);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    box-shadow: var(--shadow-sm);
}

.chat-message.user-message .chat-bubble {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border-bottom-right-radius: 4px;
}

.chat-message.bot-message .chat-bubble {
    background-color: var(--color-bg-gray-100);
    border-bottom-left-radius: 4px;
}

.chat-typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
}

.chat-typing span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-text-light);
    border-radius: 50%;
    animation: typing 1s infinite ease-in-out;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.chat-form {
    display: flex;
    gap: var(--space-2);
}

.chat-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-bg-gray-200);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    transition: all 0.2s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chat-submit {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-submit:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Notifications */
.notification {
    position: fixed;
    top: var(--space-5);
    right: var(--space-5);
    padding: var(--space-4) var(--space-6);
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: var(--z-50);
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid var(--color-success);
}

.notification.success i {
    color: var(--color-success);
    font-size: var(--fs-xl);
}

.notification.error {
    border-left: 4px solid var(--color-error);
}

.notification.error i {
    color: var(--color-error);
    font-size: var(--fs-xl);
}

/* Ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* === NOVO FOOTER APRIMORADO === */
.footer-enhanced {
    position: relative;
    background-color: #080f1f;
    padding: 0;
    color: #ffffff;
    margin-top: 6rem;
    overflow: hidden;
}

/* Divider com formato de onda */
.footer-wave-divider {
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.footer-wave-divider .shape-fill {
    fill: #080f1f;
}

/* Container principal com gradiente e partículas */
.footer-content-wrapper {
    position: relative;
    padding: 5rem 0 1.5rem;
    overflow: hidden;
}

/* Gradiente de fundo com cores da marca */
.footer-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 15, 31, 0.95) 0%, rgba(21, 36, 73, 0.95) 100%);
    z-index: 1;
}

/* Container de partículas */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* Partículas individuais */
.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    25% {
        transform: translateY(-30px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-15px) translateX(25px) rotate(180deg);
    }
    75% {
        transform: translateY(-40px) translateX(5px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Área principal do footer */
.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    z-index: 3;
}

/* Coluna da marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(0.85);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* CTA no footer */
.footer-cta {
    margin-bottom: 2rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1E40AF, #6D28D9);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.footer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.footer-cta-button:hover::before {
    opacity: 1;
}

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

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

/* Ícones de redes sociais */
.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    transform: translateY(-5px);
    color: white;
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

/* Seção de links do footer */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-links-column, .footer-contact-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 3px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link i {
    font-size: 0.75rem;
    color: #2563EB;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link:hover i {
    color: #7C3AED;
}

/* Área de contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    transform: translateY(-2px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-details a, .contact-details address {
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-style: normal;
}

.contact-details a:hover {
    color: #90CAF9;
}


/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}


/* Responsividade */
@media (max-width: 1200px) {
    .footer-main {
        gap: 3rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 4rem;
    }
    
   
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        order: -1;
    }
}

@media (max-width: 768px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
   
    
    .newsletter-heading {
        font-size: 1.125rem;
    }
    
    .newsletter-text {
        font-size: 0.85rem;
    }
    
}

/* Animações */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple effect para botões */
.ripple {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Utility classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ====================
   MEDIA QUERIES
   ==================== */

/* Tablets e maiores (768px +) */
@media (max-width: 992px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: var(--fs-4xl);
    }
    
    .hero p {
        font-size: var(--fs-lg);
    }
    
    .omnichannel h2 {
        font-size: var(--fs-3xl);
    }
    
    .section-header h2 {
        font-size: var(--fs-3xl);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large, .feature-medium, .feature-full {
        grid-column: span 1;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8) var(--space-4);
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        margin-bottom: var(--space-6);
    }
    
    .footer-secondary {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .security-badge {
        margin-top: var(--space-6);
    }
    
    .tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab {
        margin-bottom: var(--space-2);
    }
    
    .tab-content.active {
        flex-direction: column;
    }
    
    .image-content {
        order: -1;
        margin-bottom: var(--space-6);
    }
    
    .live-chat-flex-container {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .meeting-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        padding: var(--space-6);
    }
    
    .demo-benefits {
        display: none;
    }
}

/* Mobile (576px e menores) */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(37,99,235,0.97), rgba(124,58,237,0.97));
        padding: var(--space-4);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
        z-index: 999;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        color: var(--color-text-dark);
        padding: var(--space-3) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: var(--space-2);
        display: none;
        border-radius: var(--radius-lg);
    }
    
    .dropdown-item {
        color: var(--color-text-white);
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--color-text-white);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .auth-buttons {
        width: 100%;
        margin-top: var(--space-4);
        flex-direction: column;
    }
    
    .auth-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding-top: var(--space-10);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-3);
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .spiral-container {
        height: 250px;
    }
    
    .spiral-image {
        max-width: 90%;
    }
    
    .automation-flow {
        height: 400px;
    }
    
    .flow-item {
        transform: scale(0.8);
    }
    
    .when {
        top: 9px;
        left: -2.8px;
    }
    
    .if {
        top: 100px;
        left: 50%;
    }
    
    .then-1 {
        top: 20px;
        right: 10px;
    }
    
    .then-2 {
        bottom: 20px;
        right: 10px;
    }
    
    
    }
    
    .footer-nav-column {
        margin-bottom: var(--space-6);
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .social-links {
        justify-content: center;
        margin-top: var(--space-4);
    }


/* Small Mobile (375px e menores) */
@media (max-width: 375px) {
    :root {
        --container-padding: 0.75rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
        --fs-2xl: 1.25rem;
    }
    
    .hero h1 {
        font-size: var(--fs-3xl);
    }
    
    .hero p {
        font-size: var(--fs-base);
    }
    
    .section-title {
        font-size: var(--fs-base);
    }
    
    .client-logos img {
        height: 24px;
    }
}

/* Animações globais */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

@keyframes slideLeft {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Novo estilo do Chatbot */
#animated-chat-component {
    font-family: 'Poppins', Arial, sans-serif;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding-top: 50px;
    background: linear-gradient(to bottom right, rgb(99, 151, 255), rgb(45, 68, 211));
}

.animated-chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.animated-message-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.animated-message {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 300;
    max-width: 70%;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
}

.animated-bot-message {
    border-bottom-left-radius: 0;
    margin-left: 10px;
}

.animated-user-message {
    border-bottom-right-radius: 0;
    margin-left: auto;
}

.animated-bot-avatar {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    align-self: center;
}

.animated-user-messages-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.animated-typing-indicator {
    display: flex;
    padding: 12px 16px;
}

.animated-typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: animated-typing 1s infinite;
}

.animated-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
    margin-right: 0;
}

@keyframes animated-typing {
    0% { transform: translateY(0px); }
    28% { transform: translateY(-5px); }
    44% { transform: translateY(0px); }
}

.animated-play-button {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.animated-play-button::before {
    content: '▶';
    color: white;
    font-size: 20px;
}

@media (max-width: 480px) {
    #animated-chat-component {
        height: 100vh;
        border-radius: 0;
        padding-top: 60px;
    }
    .animated-chat-messages {
        padding: 15px;
    }
    .animated-message {
        font-size: 0.8125rem;
        max-width: 80%;
    }
    .animated-play-button {
        top: 15px;
    }
}

/* === EXTRA STYLES === */
/* Correção para botões de navegação em mobile - Abreviação Inteligente */

/* Mostrar span normal em desktop */
.nav-button span.text-long {
    display: inline-block !important;
}

.nav-button span.text-short {
    display: none !important; /* Esconder abreviação em desktop */
}

/* Solução para mobile - trocar texto longo por abreviado */
@media (max-width: 768px) {
    /* Layout da navegação */
    .features-navigation {
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        background-color: #F3F4F6 !important;
        border-radius: 9999px !important;
        padding: 0.5rem !important;
    }
    
    /* Inverter visibilidade - mostrar abreviado, esconder completo */
    .nav-button span.text-long {
        display: none !important;
    }
    
    /* Garantir que todas as versões curtas sejam visíveis */
    .nav-button span.text-short {
        display: inline-block !important;
        font-size: 14px !important;
        margin-left: 5px !important;
        color: inherit !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ajustar espaçamento e alinhamento */
    .nav-button {
        padding: 0.7rem 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        position: relative !important;
        z-index: 5 !important;
    }
    
    /* Destacar melhor o botão ativo */
    .nav-button.active {
        color: #FFFFFF !important;
        font-weight: 600 !important;
    }
    
    /* Garantir que TODOS os botões não-ativos tenham a mesma cor */
    .nav-button:not(.active) {
        color: #4B5563 !important;
    }
    
    /* Corrigir problema de cor no primeiro botão quando inativo */
    .nav-button[data-tab="productivity"]:not(.active) {
        color: #4B5563 !important; /* Mesmo cinza que os outros botões inativos */
    }
    
    /* Ajustar primeira aba quando ativa */
    .nav-button[data-tab="productivity"].active {
        color: #FFFFFF !important;
    }
    
    .nav-button[data-tab="productivity"] span.text-short {
        display: inline-block !important;
        opacity: 1 !important;
    }
    
    /* Ajustar ícones */
    .nav-button i {
        font-size: 16px !important;
        display: inline-block !important;
    }
    
    /* Indicador de aba ativa mais visível */
    .nav-indicator {
        background: linear-gradient(90deg, #2563EB, #7C3AED) !important;
        box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3) !important;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 375px) {
    .nav-button {
        padding: 0.65rem 0.7rem !important;
    }
    
    .nav-button span.text-short {
        font-size: 13px !important;
        margin-left: 4px !important;
    }
    
    .nav-button i {
        font-size: 15px !important;
    }
}

/* Correções de responsividade mobile */
@media (max-width: 768px) {
    /* Correção dos grupos e cards para responsividade mobile */
    .feature-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-6);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .grupo1, .grupo2, .grupo3 {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: var(--space-6);
        margin: 0 !important;
    }
    
    .feature-card.feature-large,
    .feature-card.feature-medium {
        width: 100% !important;
        max-width: 100% !important;
        grid-column: unset !important;
        grid-row: unset !important;
        margin: 0 0 var(--space-6) 0 !important;
    }
    
    .feature-content {
        padding: var(--space-5);
        width: 100% !important;
    }
    
    /* Correções específicas para os cards mostrados nas imagens */
    .feature-card.accent-bg {
        border-radius: var(--radius-xl) !important;
        width: 100% !important;
        margin: 0 auto var(--space-6) auto !important;
        box-sizing: border-box !important;
    }
    
    /* Correção para o card de respostas prontas */
    #cr-chat-input {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        padding: 10px !important;
    }
    
    /* Correções para texto truncado no input */
    #cr-chat-input::placeholder {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Corrigir paddings e larguras dos cards específicos */
    .feature-card.accent-bg,
    .feature-card.dark-bg,
    .feature-card.primary-gradient,
    .feature-card.chatbot-card,
    .feature-card.gradient-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Ajustar a exibição dos cards especiais */
    #canned-responses-demo,
    .keyboard-shortcuts-grid,
    .collaboration-interface,
    .automation-flow {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Corrigir o card de keyboard shortcuts */
    .feature-card .keyboard-shortcuts-grid {
        width: 100% !important;
    }
    
    /* Ajustar os botões do card de colaboração */
    .collab-btn {
        padding: var(--space-3) var(--space-4);
    }
    
    /* Melhorar espaçamento dos elementos internos */
    .feature-content h3 {
        margin-top: var(--space-3);
        margin-bottom: var(--space-3);
    }
    
    /* Garantir que a largura do contêiner seja respeitada */
    .customer-engagement .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
    
    /* Melhorar exibição dos botões e elementos interativos */
    .btn-keyboard {
        width: auto;
        margin-top: var(--space-4);
    }
    
    /* Ajustar a visualização dos cards de colaboração */
    .collaboration-message {
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    /* Corrigir a altura mínima dos cartões */
    .feature-card {
        min-height: 0 !important;
    }
}

/* Melhorar visualização em telas muito pequenas */
@media (max-width: 375px) {
    .feature-grid {
        padding: 0;
    }
    
    .feature-content {
        padding: var(--space-4);
    }
    
    .cr-chat-input,
    .cr-chat-messages {
        font-size: 14px;
    }
    
    /* Reduzir fonte do placeholder para evitar truncamento */
    #cr-chat-input::placeholder {
        font-size: 12px;
    }
    
    /* Ajustar botões para telas muito pequenas */
    .key-combo {
        padding: 4px 6px;
    }
}

/* Fix específico para garantir que o card de colaboração fique corretamente alinhado */
.feature-card.accent-bg .feature-content,
.collaboration-interface {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Garantir que o fluxo de automação seja visível corretamente */
.automation-flow {
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Garantir que o texto truncado no placeholder seja visível */
input[placeholder="Clique aqui, digite / e veja como as respostas predefinidas funcionam"] {
    width: 100% !important;
    max-width: 100% !important;
}

/* Melhorias específicas para o chatbot */
#animated-chat-component {
    height: 520px !important; /* Reduzir a altura do container do chatbot */
    border-radius: var(--radius-xl) !important; /* Arredondar os cantos do container */
    overflow: hidden;
}

.feature-card.chatbot-card {
    border-radius: var(--radius-xl) !important;
    overflow: hidden;
}

.animated-play-button {
    width: 40px !important; /* Reduzir o tamanho do botão play */
    height: 40px !important;
    right: 20px !important; /* Ajustar a posição */
    top: var(--space-5) !important; /* Ajustar a posição */
}

@media (max-width: 375px) {
    #animated-chat-component {
        height: 300px !important; /* Altura ainda menor para telas muito pequenas */
    }
    
    .animated-play-button {
        width: 36px !important;
        height: 36px !important;
    }
}


/* Correção para exibir todos os depoimentos em dispositivos móveis */

/* Exibir grade de depoimentos em dispositivos móveis */
@media (max-width: 767px) {
    .testimonial-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    /* Mostrar todos os cards de depoimentos */
    .testimonial-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* Ajustar estilo dos cards para mobile */
    .testimonial-card {
        display: block !important;
        background-color: #ffffff !important;
        border-radius: 1rem !important;
        padding: 1.5rem !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid #e5e7eb !important;
        margin-bottom: 0 !important;
    }
    
    .testimonial-card blockquote {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ajustar tamanho e estilo do avatar */
    .testimonial-avatar {
        width: 45px !important;
        height: 45px !important;
    }
    
    /* Melhorar legibilidade do nome e cargo */
    .testimonial-name {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    .testimonial-role {
        font-size: 0.85rem !important;
        color: #6B7280 !important;
    }
    
    /* Também exibir o depoimento principal desktop em mobile */
    .testimonial-main-desktop {
        display: block !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Ocultar o depoimento principal mobile para evitar duplicação */
    .testimonial-main-mobile {
        display: none !important;
    }
    
    /* Ajustar layout do footer do avatar */
    .footer_avatar {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
}


/* Correções para o chatbot com foco no título e botão play */

/* Manter a altura original e bordas arredondadas */
#animated-chat-component {
    height: 520px !important;
    border-radius: var(--radius-xl) !important;
    position: relative !important;
}

/* Ajuste de posicionamento e estilo do título */
.animated-chat-title {
    position: absolute !important;
    top: var(--space-6) !important; 
    left: var(--space-8) !important;
    margin: 0 !important;
    padding-right: 50px !important; /* Espaço para o botão play */
    font-size: var(--fs-2xl) !important; 
    color: white !important;
    z-index: 20 !important;
    font-weight: var(--fw-semibold) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Ajuste do botão play - posicionado à direita do título */
.animated-play-button {
    position: absolute !important;
    top: calc(var(--space-6) + 3px) !important; /* Alinhado verticalmente com o título */
    right: var(--space-8) !important;
    width: 30px !important; /* Tamanho ainda mais reduzido */
    height: 30px !important;
    z-index: 10 !important;
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Garantir que o card do chatbot tenha bordas arredondadas */
.feature-card.chatbot-card {
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
}

/* Ajuste da área de mensagens para começar logo após o título */
.animated-chat-messages {
    margin-top: calc(var(--space-6) + var(--fs-2xl) + 15px) !important; /* Reduzido para diminuir o espaço vazio */
    padding-top: 0 !important;
}

/* Ajustes para telas pequenas */
@media (max-width: 375px) {
    .animated-play-button {
        width: 24px !important;
        height: 24px !important;
        right: var(--space-4) !important;
    }
    
    .animated-chat-title {
        font-size: var(--fs-xl) !important;
        padding-right: 35px !important;
    }
}

/* Melhorias de responsividade para o componente Kanban em dispositivos móveis - Layout Horizontal */

/* Estilos gerais aplicados em todas as telas móveis */
@media (max-width: 768px) {
    /* Ajuste do container principal do Kanban */
    .kanban-container, .mc-kanban-container {
        width: 100% !important;
        padding: 0.5rem !important;
        overflow-x: auto !important; /* Permitir rolagem horizontal */
        -webkit-overflow-scrolling: touch !important; /* Para scroll suave em iOS */
    }
    
    /* Ajuste do layout do board - mantendo horizontal */
    .kanban-board, .mc-kanban-board {
        display: flex !important;
        flex-direction: row !important; /* Importante: mantém o layout horizontal */
        gap: 0.75rem !important;
        padding-bottom: 0.5rem !important;
        overflow-x: auto !important;
        width: auto !important; /* Deixa o width expandir com base no conteúdo */
        min-width: 100% !important; /* Garante que ocupe pelo menos toda a largura disponível */
        scroll-snap-type: x mandatory !important; /* Ajuda no scroll entre colunas */
    }
    
    /* Ajuste das colunas para serem mais compactas, mas não muito estreitas */
    .kanban-column, .mc-kanban-column {
        width: 290px !important; /* Aumentado de 260px para 290px */
        min-width: 290px !important; /* Impede que a coluna encolha */
        margin: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        border-radius: 12px !important;
        background-color: #f9fafb !important;
        scroll-snap-align: start !important; /* Ajuda no scroll entre colunas */
    }
    
    /* Melhoria visual dos cabeçalhos das colunas */
    .kanban-column-header, .mc-kanban-column-header {
        padding: 0.5rem 0.75rem !important;
        border-radius: 12px 12px 0 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: linear-gradient(90deg, rgba(249, 250, 251, 0.9), rgba(243, 244, 246, 0.9)) !important;
    }
    
    /* Ajuste do título das colunas - menor e mais compacto */
    .kanban-column-title, .mc-kanban-column-title {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        white-space: nowrap !important; /* Evita quebra de linha */
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Estilização do contador de tarefas na coluna */
    .column-task-count {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 20px !important;
        height: 20px !important;
        padding: 0 0.4rem !important;
        border-radius: 20px !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        margin-left: 0.3rem !important;
        flex-shrink: 0 !important; /* Evita que o contador encolha */
    }
    
    /* Ajuste do container de cartões */
    .kanban-cards, .mc-kanban-cards {
        padding: 0.5rem !important;
        max-height: 70vh !important; /* Altura máxima limitada para evitar scroll muito grande */
        overflow-y: auto !important;
    }
    
    /* Melhoria dos cartões individuais */
    .kanban-card, .mc-kanban-card {
        margin-bottom: 0.5rem !important;
        background-color: white !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
        border: 1px solid rgba(229, 231, 235, 0.8) !important;
        transition: transform 0.15s ease, box-shadow 0.15s ease !important;
    }
    
    /* Efeito hover para cartões */
    .kanban-card:hover, .mc-kanban-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Ajuste do cabeçalho dos cartões - mais espaço para conteúdo */
    .kanban-card-header, .mc-kanban-card-header {
        padding: 0.6rem 0.75rem 0.35rem 0.75rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }
    
    /* Estilização das etiquetas de prioridade */
    .kanban-card-priority, .mc-kanban-card-priority {
        font-size: 0.7rem !important;
        padding: 0.15rem 0.35rem !important;
        border-radius: 24px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.025em !important;
    }
    
    /* Cores específicas para etiquetas de prioridade */
    .kanban-card-priority.alta, .mc-kanban-card-priority.alta {
        background-color: #FEE2E2 !important;
        color: #EF4444 !important;
    }
    
    .kanban-card-priority.média, .mc-kanban-card-priority.média {
        background-color: #FEF3C7 !important;
        color: #F59E0B !important;
    }
    
    .kanban-card-priority.baixa, .mc-kanban-card-priority.baixa {
        background-color: #DBEAFE !important;
        color: #3B82F6 !important;
    }
    
    /* Ajuste do título do cartão - limitação de tamanho e tratamento de overflow */
    .kanban-card-title, .mc-kanban-card-title {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin: 0.4rem 0 !important;
        color: #1F2937 !important;
        line-height: 1.3 !important;
        padding: 0 0.25rem !important;
        text-align: center !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        max-width: 100% !important;
    }
    
    /* Ajuste da descrição do cartão - um pouco mais de espaço */
    .kanban-card-description, .mc-kanban-card-description {
        font-size: 0.825rem !important;
        color: #4B5563 !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.4 !important;
        padding: 0 0.75rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
    }
    
    /* Ajuste dos metadados do cartão - mais espaço e melhor visualização */
    .kanban-card-meta, .mc-kanban-card-meta {
        padding: 0.4rem 0.75rem 0.6rem 0.75rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-top: 1px solid rgba(229, 231, 235, 0.5) !important;
        margin-top: 0.5rem !important;
    }
    
    /* Estilização da data */
    .kanban-card-date, .mc-kanban-card-date {
        display: flex !important;
        align-items: center !important;
        gap: 0.2rem !important;
        font-size: 0.7rem !important;
        color: #6B7280 !important;
    }
    
    .kanban-card-date i, .mc-kanban-card-date i {
        font-size: 0.75rem !important;
    }
    
    /* Avatares um pouco maiores e melhor posicionados */
    .kanban-card-avatar, .mc-kanban-card-avatar {
        width: 24px !important;
        height: 24px !important;
        margin-left: -8px !important; /* Para sobrepor avatares */
        border: 1px solid #ffffff !important;
        border-radius: 50% !important;
    }
    
    .kanban-card-avatar:first-child, .mc-kanban-card-avatar:first-child {
        margin-left: 0 !important;
    }
    
    .kanban-card-avatar img, .mc-kanban-card-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    /* Ajuste do botão para adicionar novo cartão */
    .kanban-add-card, .mc-kanban-add-card {
        padding: 0.4rem !important;
        text-align: center !important;
        background-color: rgba(243, 244, 246, 0.6) !important;
        border-radius: 6px !important;
        font-size: 0.8rem !important;
        color: #6B7280 !important;
        cursor: pointer !important;
        transition: background-color 0.15s ease !important;
    }
    
    .kanban-add-card:hover, .mc-kanban-add-card:hover {
        background-color: rgba(243, 244, 246, 0.9) !important;
        color: #4B5563 !important;
    }
    
    /* Adicionar indicação de rolagem horizontal */
    .kanban-container::after, .mc-kanban-container::after {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        right: 0.5rem !important;
        width: 30px !important;
        height: 30px !important;
        background: rgba(255, 255, 255, 0.6) !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        z-index: 10 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        pointer-events: none !important;
        opacity: 0.8 !important;
        animation: fadeInOut 2s infinite !important;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.2; }
        50% { opacity: 0.8; }
    }
    
    /* Ajuste para botões de controle - forçando layout em linha única */
    .kanban-controls, .mc-kanban-controls {
        padding: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Botões de controle na mesma linha */
    .kanban-controls-left, .kanban-controls-right,
    .mc-kanban-controls-left, .mc-kanban-controls-right {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Garantir que não haja quebra de linha entre os grupos de botões */
    .kanban-controls > *, .mc-kanban-controls > * {
        flex-shrink: 0 !important;
    }
    
    /* Botões menores e mais compactos */
    .kanban-control-btn, .mc-kanban-control-btn {
        font-size: 0.8rem !important;
        padding: 0.35rem 0.5rem !important;
        min-width: unset !important;
        height: 36px !important;
        width: 36px !important;
        border-radius: 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ajustes para botões específicos dentro do controle do kanban */
    button.kanban-control-btn, button.mc-kanban-control-btn {
        margin: 0 !important;
        min-width: 36px !important;
        max-width: 36px !important;
        flex-shrink: 0 !important;
    }
}

/* Ajustes ainda mais específicos para telas muito pequenas */
@media (max-width: 375px) {
    /* Redução de colunas para telas muito pequenas - ainda mantendo boa largura */
    .kanban-column, .mc-kanban-column {
        width: 270px !important; /* Aumentado de 240px para 270px */
        min-width: 270px !important;
    }
    
    /* Redução de padding e fonte */
    .kanban-column-header, .mc-kanban-column-header {
        padding: 0.4rem 0.6rem !important;
    }
    
    .kanban-column-title, .mc-kanban-column-title {
        font-size: 0.85rem !important;
    }
    
    .column-task-count {
        min-width: 18px !important;
        height: 18px !important;
        font-size: 0.7rem !important;
    }
    
    .kanban-cards, .mc-kanban-cards {
        padding: 0.4rem !important;
    }
    
    .kanban-card, .mc-kanban-card {
        margin-bottom: 0.4rem !important;
    }
    
    .kanban-card-header, .mc-kanban-card-header {
        padding: 0.4rem 0.4rem 0.2rem 0.4rem !important;
    }
    
    .kanban-card-priority, .mc-kanban-card-priority {
        font-size: 0.65rem !important;
        padding: 0.1rem 0.3rem !important;
    }
    
    .kanban-card-title, .mc-kanban-card-title {
        font-size: 0.8rem !important;
    }
    
    .kanban-card-description, .mc-kanban-card-description {
        font-size: 0.75rem !important;
    }
    
    /* Ajustes ainda mais específicos para os botões de controle em telas muito pequenas */
    .kanban-controls, .mc-kanban-controls {
        padding: 0.3rem !important;
        gap: 4px !important;
    }
    
    .kanban-controls-left, .kanban-controls-right,
    .mc-kanban-controls-left, .mc-kanban-controls-right {
        gap: 4px !important;
    }
    
    .kanban-control-btn, .mc-kanban-control-btn {
        height: 32px !important;
        width: 32px !important;
        font-size: 0.75rem !important;
        padding: 0.3rem !important;
    }
    
    /* Otimizar o tamanho dos ícones */
    .kanban-control-btn i, .mc-kanban-control-btn i {
        font-size: 0.9rem !important;
    }
}

/* Melhorias de animação e feedback */
.kanban-column, .mc-kanban-column {
    transition: all 0.2s ease !important;
}

/* Garantindo que o scrolling seja suave */
.kanban-board, .mc-kanban-board,
.kanban-cards, .mc-kanban-cards {
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
}

/* Transição suave para cartões */
.kanban-card, .mc-kanban-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease !important;
}

/* Estado ativo para quando o usuário pressiona um cartão em telas touch */
.kanban-card:active, .mc-kanban-card:active {
    transform: scale(0.98) !important;
    opacity: 0.95 !important;
}

/* Estilo para a barra de rolagem horizontal */
.kanban-board::-webkit-scrollbar, .mc-kanban-board::-webkit-scrollbar {
    height: 6px !important;
}

.kanban-board::-webkit-scrollbar-track, .mc-kanban-board::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 6px !important;
}

.kanban-board::-webkit-scrollbar-thumb, .mc-kanban-board::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 6px !important;
}

.kanban-board::-webkit-scrollbar-thumb:hover, .mc-kanban-board::-webkit-scrollbar-thumb:hover {
    background: #94a3b8 !important;
}

/* Dica visual para rolagem horizontal */
.kanban-scroll-hint {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(0.95); }
    50% { transform: translateY(-50%) scale(1.05); }
    100% { transform: translateY(-50%) scale(0.95); }
}

/* Adicionar após scroll para ocultar a dica visual */
.kanban-board.scrolled .kanban-scroll-hint {
    display: none !important;
}

/* Adicionar espaço após a última coluna para melhor experiência de scroll */
.kanban-column:last-child, .mc-kanban-column:last-child {
    margin-right: 1rem !important;
}


/* === Responsividade Incorporada === */
/* Correções de responsividade para o widget de chat */
@media (max-width: 768px) {
  /* Garantir que o bubble de chat expandido seja responsivo */
  #chatBubble.expanded {
    max-width: calc(100% - 30px) !important;
    width: auto !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  /* Ajustar a posição do chat bubble para evitar cortes */
  #chatBubble.right {
    right: 5px !important;
  }

  #chatBubble.left {
    left: 5px !important;
  }

  /* Ajustar o texto dentro do botão expandido */
  #chatBubble .chat-text {
    display: inline-block !important;
    max-width: 120px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Botões de opção */
  .button-group {
    display: flex;
    width: 100%;
  }

  .button-group-btn {
    flex: 1;
    text-align: center;
  }

  /* Ajustes para o preview panel */
  .preview-panel {
    width: 100% !important;
    min-width: auto !important;
  }

  .preview-wrapper {
    width: 100% !important;
    max-width: 320px !important;
  }

  .preview-container {
    width: 100% !important;
  }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 480px) {
  #chatBubble.expanded {
    max-width: calc(100% - 20px) !important;
    padding: 0 15px !important;
  }

  #chatBubble .chat-text {
    max-width: 100px !important;
  }
}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
    word-break: break-word;
  }

  .hero p {
    font-size: 16px;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn.btn-lg {
    font-size: 16px;
    padding: 0.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    padding: 0 1rem;
  }
}
@media (max-width: 380px) {
    .btn.btn-lg {
    font-size: 15px;
    padding: 0.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ====================
   HERO VISUAL ENHANCEMENTS
   Gráficos vetoriais animados
   ==================== */

/* Background SVG decorativo */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-svg-bg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

/* Animações dos círculos */
.hero-circle {
    animation: pulse-circle 6s ease-in-out infinite;
}

.hero-circle-1 {
    animation-delay: 0s;
}

.hero-circle-2 {
    animation-delay: 2s;
}

.hero-circle-3 {
    animation-delay: 4s;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Animações das linhas */
.hero-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 4s ease-in-out infinite;
}

.hero-line-2 {
    animation-delay: 2s;
}

@keyframes draw-line {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -1000;
    }
}

/* Ícones flutuantes */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(106, 169, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.floating-icon i {
    font-size: 22px;
}

/* Posicionamento e cores dos ícones */
.floating-icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}
.floating-icon-1 i {
    color: #25D366;
}

.floating-icon-2 {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
}
.floating-icon-2 i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-icon-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}
.floating-icon-3 i {
    color: #0084FF;
}

.floating-icon-4 {
    top: 70%;
    right: 8%;
    animation-delay: 3s;
}
.floating-icon-4 i {
    color: #0088cc;
}

.floating-icon-5 {
    top: 40%;
    left: 3%;
    animation-delay: 4s;
    width: 40px;
    height: 40px;
}
.floating-icon-5 i {
    font-size: 18px;
    color: #EA4335;
}

.floating-icon-6 {
    top: 50%;
    right: 5%;
    animation-delay: 5s;
    width: 45px;
    height: 45px;
}
.floating-icon-6 i {
    font-size: 20px;
    color: #6aa9ff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-8px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Responsividade para os elementos gráficos */
@media (max-width: 992px) {
    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: 18px;
    }

    .floating-icon-5,
    .floating-icon-6 {
        width: 35px;
        height: 35px;
    }

    .floating-icon-5 i,
    .floating-icon-6 i {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .floating-icon-1 {
        top: 5%;
        left: 5%;
    }

    .floating-icon-2 {
        top: 8%;
        right: 5%;
    }

    .floating-icon-3,
    .floating-icon-5 {
        display: none;
    }

    .floating-icon-4 {
        top: 85%;
        right: 10%;
    }

    .floating-icon-6 {
        top: 80%;
        left: 10%;
        right: auto;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
    }

    .floating-icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        width: 30px;
        height: 30px;
        opacity: 0.7;
    }

    .floating-icon i {
        font-size: 14px;
    }

    .hero-bg-decoration {
        opacity: 0.5;
    }
}

/* Garantir que o conteúdo do Hero fique acima dos elementos decorativos */
.hero .container {
    position: relative;
    z-index: 2;
}