/* ============================================
   HAJA CORP - Estilos Customizados
   ============================================ */

/* Variáveis CSS - Cores Padronizadas */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary-color: #c4b5fd;
    --accent-color: #a855f7;
    --dark-bg: #1e1b4b;
    --dark-surface: #312e81;
    --dark-text: #e0e0e0;
    --light-bg: #ffffff;
    --light-surface: #f5f7fa;
    --light-text: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-color: var(--dark-bg);
    --surface-color: var(--dark-surface);
    --text-color: var(--dark-text);
    --border-color: #2d3748;
}

/* Light Mode (padrão) */
:root {
    --bg-color: var(--light-bg);
    --surface-color: var(--light-surface);
    --text-color: var(--light-text);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: var(--surface-color);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    background-color: transparent !important;
}

.navbar-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-grow: 1;
    justify-content: flex-end;
}

.navbar-menu .navbar-item {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 35px;
    width: auto;
}

.logo-text {
    color: var(--primary-color);
}

.logo-corp {
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-body {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .button {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.tech-illustration {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: var(--bg-color);
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Seções */
.section {
    padding: 5rem 1.5rem;
}

.apresentacao-section {
    background-color: var(--surface-color);
}

.apresentacao-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item .icon {
    color: var(--primary-color);
    font-size: 2rem;
    min-width: 50px;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

.ecosystem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ecosystem-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: white;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Soluções */
.solucoes-section {
    background-color: var(--bg-color);
}

.solucao-card {
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: var(--surface-color);
}

.solucao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.solucao-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.solucao-card .title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.chamada {
    font-style: italic;
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
}

.solucao-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.solucao-features .tag {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
}

.solucao-card .subtitle.has-text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Ecossistema */
.ecossistema-section {
    background: linear-gradient(135deg, var(--surface-color) 0%, var(--bg-color) 100%);
}

.ecossistema-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.ecossistema-item {
    text-align: center;
    flex: 0 0 auto;
}

.ecossistema-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.ecossistema-item:hover .ecossistema-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.ecossistema-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-box {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.benefit-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-box .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Depoimentos */
.depoimentos-section {
    background-color: var(--surface-color);
}

.depoimento-card {
    height: 100%;
    border-radius: 12px;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.depoimento-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.depoimento-author strong {
    color: var(--primary-color);
}

/* Sobre */
.sobre-section {
    background-color: var(--bg-color);
}

.sobre-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.sobre-item {
    margin-bottom: 2rem;
}

.sobre-item .title {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.sobre-item .icon {
    color: var(--secondary-color);
}

.sobre-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.value-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--dark-bg) 100%);
    color: white;
    text-align: center;
}

.cta-box {
    padding: 4rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-box .title {
    color: white;
    margin-bottom: 1rem;
}

.cta-box .subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .button {
    margin: 0 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-bg) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 1.5rem 1.5rem;
}

.footer hr {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    height: 1px;
    margin: 2rem 0 1rem;
}

.footer .is-size-7 {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand .logo-text {
    color: var(--primary-light);
}

.footer-brand .logo-corp {
    color: var(--secondary-color);
}

.footer-brand .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand .content {
    color: rgba(255, 255, 255, 0.7);
}

.footer .title {
    color: rgba(255, 255, 255, 0.95);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .icon {
    color: var(--secondary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-surface);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Modal */
.modal-card {
    max-width: 600px;
    width: 90%;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.modal-card-head {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-card-title {
    color: white;
}

.modal-card-body {
    background-color: var(--surface-color);
    color: var(--text-color);
}

.modal-card-foot {
    background-color: var(--surface-color);
    border-radius: 0 0 12px 12px;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons .button {
        width: 100%;
        margin-right: 0;
    }
    
    .tech-illustration {
        font-size: 8rem;
    }
    
    .ecossistema-flow {
        flex-direction: column;
    }
    
    .ecossistema-arrow {
        transform: rotate(90deg);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-circle {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title.is-2 {
        font-size: 1.75rem;
    }
    
    .solucao-card,
    .depoimento-card {
        margin-bottom: 1.5rem;
    }
}

/* Animações de Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Ajustar botões primary para roxo com gradiente */
.button.is-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: white;
}

.button.is-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Ajustar botões success para roxo com gradiente */
.button.is-success {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: white;
}

.button.is-success:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* ============================================
   Estilos para Páginas de Detalhes
   ============================================ */

/* Hero Detalhe */
.hero-detalhe {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-detalhe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-detalhe .hero-body {
    position: relative;
    z-index: 1;
}

.hero-detalhe .title {
    color: white;
}

.hero-detalhe .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.solucao-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.solucao-badge i {
    font-size: 1.2rem;
}

.solucao-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

.chamada-hero {
    color: var(--secondary-color) !important;
    margin-top: 1rem;
    text-shadow: 0 0 20px rgba(196, 181, 253, 0.5);
}

.solucao-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.solucao-hero-image i {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

/* Info Card */
.info-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    font-size: 1.2rem;
}

/* Funcionalidades */
.funcionalidades-section {
    background-color: var(--surface-color);
}

.funcionalidade-item {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.funcionalidade-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.funcionalidade-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.funcionalidade-item .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.funcionalidade-item ul {
    list-style: none;
    padding-left: 0;
}

.funcionalidade-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.funcionalidade-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Benefícios */
.beneficios-section {
    background-color: var(--bg-color);
}

.beneficio-box {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.beneficio-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.beneficio-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.beneficio-box .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beneficio-box p {
    color: var(--gray);
}

/* Menu de Navegação de Soluções */
.solucoes-nav-section {
    position: sticky;
    top: 60px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0 !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 50px;
}

.solucoes-nav-section .container {
    overflow: visible !important;
}

.solucoes-nav-menu {
    display: flex !important;
    visibility: visible !important;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    width: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    font-size: 0.9rem;
}

.nav-item i {
    font-size: 1.1rem;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-item-cta {
    background-color: rgba(255, 255, 255, 0.15) !important;
    font-weight: 600;
}

.nav-item-cta:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
}

.nav-item-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.nav-item-link .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    padding: 0.5rem 0;
    display: block !important;
    pointer-events: none;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

/* Garantir que o dropdown seja visível quando ativo */
.nav-item-dropdown.active .dropdown-menu,
.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: var(--secondary-color);
}

.dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    border-left-color: var(--secondary-color);
}

.dropdown-item i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .solucoes-nav-menu {
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .nav-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-item span {
        display: none;
    }
    
    .nav-item i {
        font-size: 1.3rem;
    }
    
    .dropdown-menu {
        left: auto;
        right: 0;
        min-width: 200px;
    }
    
    /* Nomes visíveis no dropdown no mobile */
    .dropdown-item {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .dropdown-item span {
        display: block !important;
        font-size: 0.9rem;
    }
    
    .dropdown-item i {
        font-size: 1.1rem;
        width: 24px;
    }
    
    .nav-item-cta span {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .solucoes-nav-section {
        padding: 0.3rem 0 !important;
    }
    
    .solucoes-nav-menu {
        gap: 0.15rem;
        padding: 0.2rem 0;
    }
    
    .nav-item {
        padding: 0.35rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-item i {
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        min-width: 180px;
        max-width: calc(100vw - 0.5rem);
    }
    
    .dropdown-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .dropdown-item span {
        font-size: 0.8rem;
    }
}


/* Responsividade para páginas de detalhes */
@media screen and (max-width: 768px) {
    .solucao-hero-image i {
        font-size: 8rem;
    }
    
    .funcionalidade-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .hero-detalhe .title.is-1 {
        font-size: 2rem;
    }
    
    .hero-detalhe .subtitle.is-4 {
        font-size: 1.2rem;
    }
}


