/* 
* Pulse Consultoria - Landing Page Otimizada
* Estilos essenciais para garantir funcionamento e visual adequado
*/

:root {
    /* Cores principais */
    --color-bg: #0B1E3F;
    --color-bg-dark: #071428;
    --color-primary: #007BFF;
    --color-secondary: #00E5FF;
    --color-accent: #6E1DC6;
    --color-text: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border: rgba(255, 255, 255, 0.1);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    --gradient-accent: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    
    /* Arredondamentos */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Tipografia */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
}

/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-primary);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: var(--color-bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--font-size-sm);
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
    background-color: rgba(7, 20, 40, 0.8);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--font-size-xl);
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--color-text);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--color-bg), var(--color-bg-dark));
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

/* Desafios Section */
.desafio-card {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--color-text-muted);
}

/* Metodologia Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 50px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.timeline-content h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

/* Plataforma Section */
.service-card {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    height: 100%;
}

.service-title {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
}

.service-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 1.5rem 0;
}

.dashboard-preview {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    height: 100%;
}

.dashboard-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

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

.stat-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.dashboard-mockup {
    background: rgba(7, 20, 40, 0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-mockup h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.dashboard-widget {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 100px;
}

/* Diferenciais Section */
.diferencial-card {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s;
}

.diferencial-card:hover {
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Contato Section */
.contact-form {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    padding: 0.75rem 1rem;
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    box-shadow: none;
    color: var(--color-text);
    outline: none;
}

.contact-info {
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-right: 1rem;
}

.info-content h3 {
    font-size: var(--font-size-md);
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--color-border);
}

.footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsividade */
@media (max-width: 991px) {
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-number {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .dashboard-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-dark);
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header.nav-open .nav-list {
        display: flex;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .dashboard-stats {
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: flex-start;
        margin-top: 2rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Ajustes específicos para corrigir bugs */
.dashboard-widget {
    position: relative;
    overflow: hidden;
}

.dashboard-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 20, 40, 0.7);
    z-index: 1;
}

.dashboard-widget::after {
    content: 'Visualização de dados';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-secondary);
    font-weight: 600;
    z-index: 2;
}

.dashboard-stats .stat-value {
    font-size: 2.5rem;
}

/* Sobre Mim Section - Layout Compacto com Foto */
.sobre-mim-section {
    background-color: var(--color-bg-dark);
}

.sobre-mim-foto {
    text-align: center; /* Centraliza a div */
}

.sobre-mim-foto img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    border-radius: 50%;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    margin: 0 auto; /* Centraliza a imagem dentro da div */
    display: block;
}

.pilares-list-compact li {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-md);
}

@media (max-width: 991px) {
    .sobre-mim-foto img {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }
}

/* Ajuste para destacar apenas LinkedIn */
.social-links {
    justify-content: center; /* Centraliza o ícone do LinkedIn */
}



/* Estilo para o botão do ebook */
.btn-ebook {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border: none;
    padding: 12px 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-ebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.ebook-button-container {
    margin-top: 2rem;
    text-align: center;
}

/* Ajuste para o ícone do LinkedIn */
.info-item .info-icon .fa-linkedin-in {
    color: var(--color-secondary);
}

@media (max-width: 767px) {
    .btn-ebook {
        padding: 10px 15px;
        font-size: 14px;
    }
}


/* Estilos para a logo no cabeçalho */
.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 24px; /* Ajuste o tamanho da fonte se necessário */
    color: var(--color-text);
    text-decoration: none;
}

.logo-img {
    max-height: 40px; /* Ajuste a altura máxima da logo */
    margin-right: 8px; /* Espaço entre a logo e o texto */
    vertical-align: middle; /* Alinha verticalmente com o texto */
}

/* Ajuste para o rodapé se necessário */
.footer-logo {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}



/* ===== SEÇÃO PLATAFORMA MELHORADA ===== */

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(0, 168, 255, 0.05);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-content h4 {
    color: #00a8ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #8892b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.platform-features {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.platform-features h4 {
    color: #00a8ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(0, 168, 255, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1rem;
}

.feature-content h5 {
    color: #00a8ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-content p {
    color: #8892b0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsividade para seção Plataforma */
@media (max-width: 768px) {
    .benefit-item,
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon,
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .benefit-content,
    .feature-content {
        text-align: center;
    }
}

/* ===== SEÇÃO SOBRE NÓS ===== */

.sobre-section {
    position: relative;
    overflow: hidden;
}

.sobre-content {
    padding: 2rem;
    background: rgba(7, 20, 40, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
}

.sobre-content h3 {
    color: var(--color-secondary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sobre-content h3:first-child {
    margin-top: 0;
}

.sobre-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sobre-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.sobre-main-image {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sobre-main-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.sobre-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sobre-stats .stat-item {
    display: flex;
    align-items: center;
    background: rgba(7, 20, 40, 0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    transition: transform 0.3s;
}

.sobre-stats .stat-item:hover {
    transform: translateX(5px);
}

.sobre-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.sobre-stats .stat-content {
    flex-grow: 1;
}

.sobre-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.sobre-stats .stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* ===== SEÇÃO INSIGHTS ===== */

.insights-section {
    position: relative;
    overflow: hidden;
}

.insights-carousel-container {
    position: relative;
    margin: 3rem 0;
}

.insights-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    gap: 1.5rem;
}

.insights-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
    background: rgba(7, 20, 40, 0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.insights-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.insights-content {
    flex-grow: 1;
}

.insights-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-style: italic;
}

.insights-source {
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.insights-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.insights-prev,
.insights-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    color: var(--color-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-prev:hover,
.insights-next:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
    transform: scale(1.1);
}

/* Responsividade para Sobre Nós e Insights */
@media (max-width: 768px) {
    .sobre-content {
        padding: 1.5rem;
    }
    
    .sobre-stats {
        margin-top: 2rem;
    }
    
    .insights-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }
    
    .insights-carousel {
        gap: 1rem;
    }
}

/* ===== SEÇÃO CASES ===== */

.cases-section {
    position: relative;
    overflow: hidden;
}

.cases-carousel {
    position: relative;
    padding: 2rem 0;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    gap: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.case-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 350px;
    background: rgba(7, 20, 40, 0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 500px;
    position: relative;
}

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

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 1.5rem;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}

.case-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.case-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.case-problem {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.case-solution,
.case-impact {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, max-height 0.5s;
}

.case-solution h4,
.case-impact h4 {
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.case-solution p,
.case-impact p {
    color: var(--color-text-muted);
    line-height: 1.4;
}

.case-card:hover .case-solution,
.case-card:hover .case-impact {
    opacity: 1;
    max-height: 150px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-button {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    color: var(--color-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
    transform: scale(1.1);
}

/* Responsividade para Cases */
@media (max-width: 992px) {
    .case-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .case-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
        height: 450px;
    }
    
    .case-image {
        height: 150px;
    }
    
    .carousel-container {
        gap: 1rem;
    }
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0f1419 100%);
    z-index: -2;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 229, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 229, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 229, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 229, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleFloat 20s linear infinite;
}

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

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-gradient {
    background: linear-gradient(135deg, #00e5ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #00e5ff 0%, #0099cc 100%);
    color: #0a1628;
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.hero-buttons .btn-outline:hover {
    background: var(--color-secondary);
    color: #0a1628;
    transform: translateY(-2px);
}

.hero-trust {
    margin-top: 2rem;
}

.trust-text {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.trust-item i {
    color: var(--color-secondary);
}

/* Dashboard Visual */
.hero-visual {
    position: relative;
    padding: 2rem;
}

.dashboard-container {
    background: rgba(7, 20, 40, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

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

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.dashboard-title {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard-card {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.card-header h4 {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.card-header i {
    color: var(--color-secondary);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.card-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.card-change.positive {
    color: #27ca3f;
}

.chart-container {
    height: 60px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 100%;
}

.bar {
    width: 8px;
    background: linear-gradient(to top, #00e5ff, #0099cc);
    border-radius: 2px;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--height); }
}

.kpi-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kpi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kpi-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.kpi-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
}

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

.floating-card {
    position: absolute;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-secondary);
    backdrop-filter: blur(10px);
}

.floating-card.card-1 {
    top: 20%;
    right: -10%;
    animation: float1 6s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 60%;
    right: 10%;
    animation: float2 8s ease-in-out infinite;
}

.floating-card.card-3 {
    bottom: 20%;
    right: -5%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-15px) translateX(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(10px) translateX(-15px); }
}

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

/* Responsividade do Hero */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== MODAIS DOS DASHBOARDS ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--color-bg);
    margin: 2% auto;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
    background: rgba(7, 20, 40, 0.5);
}

.modal-header h3 {
    margin: 0;
    color: var(--color-secondary);
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-secondary);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.dashboard-image {
    margin-bottom: 2rem;
    text-align: center;
    background: #fff;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.dashboard-description h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.dashboard-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-description li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    line-height: 1.5;
}

.dashboard-description li:last-child {
    border-bottom: none;
}

.dashboard-description strong {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Botão Ver Dashboard */
.case-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0099cc 100%);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.case-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    color: var(--color-bg);
    text-decoration: none;
}

/* Responsividade dos Modais */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .dashboard-image {
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .dashboard-description li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
}
