:root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #10b981;
            --cta-orange: #f59e0b;
            --cta-orange-dark: #d97706;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* Navigation Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Hero Section Styles */
        .hero-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
            top: -300px;
            right: -200px;
            z-index: 0;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
            bottom: -200px;
            left: -100px;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-weight: 700;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .btn-primary-custom {
            background-color: var(--cta-orange);
            border-color: var(--cta-orange);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--cta-orange-dark);
            border-color: var(--cta-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
            color: white;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-image {
            position: relative;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .dashboard-mockup {
            background: white;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .dashboard-nav {
            display: flex;
            gap: 1.5rem;
        }
        
        .dashboard-nav-item {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        .dashboard-nav-item.active {
            color: var(--primary);
        }
        
        .dashboard-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
        }
        
        .chart-area {
            background: #f1f5f9;
            border-radius: 8px;
            height: 200px;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
            gap: 0.5rem;
        }
        
        .chart-bar {
            background: var(--primary);
            border-radius: 4px 4px 0 0;
            flex: 1;
            height: 0;
            animation: growChart 1.5s ease-out forwards;
        }
        
        @keyframes growChart {
            to {
                height: var(--target-height);
            }
        }
        
        .stats-card {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--gray);
        }
        
        .feature-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        
        .feature-badge i {
            margin-right: 0.5rem;
        }
        
        .trusted-by {
            margin-top: 3rem;
        }
        
        .trusted-text {
            font-size: 0.875rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }
        
        .company-logos {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .company-logo {
            height: 24px;
            opacity: 0.7;
            filter: grayscale(1);
            transition: all 0.3s ease;
        }
        
        .company-logo:hover {
            opacity: 1;
            filter: grayscale(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-image {
                margin-top: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .dashboard-content {
                grid-template-columns: 1fr;
            }
            
            .company-logos {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                margin-top: 1rem;
            }
        }










/* Remove o fundo cinza padrão do dropdown */
.navbar .dropdown-menu {
  border-radius: 12px;
}

.navbar .dropdown-item:hover {
  background: #f8f9fa;
  border-radius: 6px;
}

/* Sombras finas e premium */
.dropdown-menu {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Melhor espaçamento no mobile */
@media (max-width: 991px) {
  .dropdown-menu {
    padding: 1rem !important;
  }
}





/* Desktop cards do blog */
.posts .image-placeholder{
  position: relative;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2ff; /* só um placeholder claro */
}

/* Garante que a imagem cobre o box */
.posts .image-placeholder img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}

/* Só a imagem fica visível quando carregar */
.posts .image-placeholder.image-loaded img{
  opacity: 1;
}

/* Garante que título e data sempre apareçam */
.posts h5,
.posts small{
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
