 :root {
      --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    }
    
    /* Garantir que as imagens sejam visíveis */
    img {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      max-width: 100%;
      height: auto;
    }
    
    /* Garantir que o breadcrumb seja visível em mobile */
    @media (max-width: 768px) {
      .hero-section {
        padding-top: 8rem !important;
      }
      
      .hero-section .relative.z-20 {
        z-index: 30 !important;
      }
      
      /* Otimizar meta informações para mobile */
      .hero-section .text-sm {
        font-size: 0.875rem !important;
        line-height: 1.25rem !important;
      }
      
      .hero-section .gap-2 {
        gap: 0.5rem !important;
      }
      
      .hero-section .mb-6 {
        margin-bottom: 1.5rem !important;
      }
    }
    
    /* Estilos críticos para o menu mobile */
    #mobile-menu {
      transition: opacity 0.3s ease-in-out !important;
    }
    
    #mobile-menu.opacity-100 {
      opacity: 1 !important;
    }
    
    #mobile-menu.opacity-0 {
      opacity: 0 !important;
    }
    
    #menu-items {
      transition: transform 0.5s ease-in-out !important;
    }
    
    #menu-items.-translate-y-full {
      transform: translateY(-100%) !important;
    }
    
    #menu-items.translate-y-0 {
      transform: translateY(0) !important;
    }
    
    body { 
      font-family: var(--font-poppins);
      font-display: swap;
    }
    
    .hero-section { 
      opacity: 1 !important;
      min-height: 600px;
    }

    @media (min-width: 768px) {
      .hero-section {
        min-height: 800px;
      }
    }
    
    .hero-title { 
      font-family: var(--font-poppins) !important;
      min-height: 3em;
    }

    .font-poppins { 
      font-family: var(--font-poppins);
    }

    .logo-container {
      width: 176px;
      height: 40px;
      display: flex;
      align-items: center;
    }

    .video-container {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: inherit;
    }

    .zap-btn a{
       text-decoration: none !important;
    }

    .zap-btn a:hover{
       text-decoration: none !important;
    }

    /* Estilos específicos para posts */
    .post-content {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .post-content a {
      text-decoration: underline;
    }
    
    .post-content a:hover {
      text-decoration: none;
      color: #c0c0c0;
    }
    /* Estilos para as imagens do blog */
    .post-content img {
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease-in-out;
    }
    
    .post-content img:hover {
      transform: scale(1.02);
    }

    .post-content h2 {
      color: white;
      font-size: 1.875rem;
      font-weight: 700;
      margin-top: 3rem;
      margin-bottom: 1.5rem;
    }

    .post-content h3 {
      color: white;
      font-size: 1.5rem;
      font-weight: 600;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }

    .post-content p {
      color: #d1d5db;
      margin-bottom: 1.5rem;
      font-size: 1.125rem;
    }

    .post-content ul, .post-content ol {
      list-style: disc;
      color: #d1d5db;
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
    }

    .post-content li {
      margin-bottom: 0.5rem;
    }

    .post-content blockquote {
      border-left: 4px solid #8b5cf6;
      padding-left: 1.5rem;
      margin: 2rem 0;
      font-style: italic;
      color: #a78bfa;
    }

    .post-content code {
      background-color: #374151;
      padding: 0.25rem 0.5rem;
      border-radius: 0.375rem;
      color: #fbbf24;
      font-family: 'Courier New', monospace;
    }

    .post-content pre {
      background-color: #1f2937;
      padding: 1.5rem;
      border-radius: 0.5rem;
      overflow-x: auto;
      margin: 1.5rem 0;
    }

    .post-content pre code {
      background: none;
      padding: 0;
      color: #e5e7eb;
    }

 