/* Otimizações de desempenho */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset e estilos globais */
:root {
    --primary: #0a192f;      /* Azul escuro principal */
    --primary-light: #112240; /* Azul escuro mais claro */
    --secondary: #64ffda;    /* Azul esverdeado para destaques */
    --accent: #3a86ff;      /* Azul mais claro para botões */
    --dark: #020c1b;        /* Azul quase preto */
    --light: #ccd6f6;       /* Azul claro para texto */
    --text: #e6f1ff;        /* Branco azulado para texto */
    --text-light: #8892b0;   /* Cinza azulado para texto secundário */
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: transform 0.3s ease, opacity 0.3s ease; /* Apenas propriedades que realmente precisam de transição */
    --highlight: #feb183;    /* Tom pêssego para detalhes sutis */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Melhorias de desempenho para rolagem */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--primary);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Otimização de renderização */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: auto;
}

/* Otimização para renderização de fontes */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Garantir que o conteúdo principal ocupe o espaço disponível e possa rolar */
.main-content {
    flex: 1 0 auto;
    width: 100%;
    overflow: visible;
}

/* Garantir que as seções não tenham overflow restrito */
section {
    overflow: visible !important;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

/* Hover sutil em links (ignora botões/CTAs) */
a:not(.cta-button):hover {
    color: var(--highlight);
}

/* Estilos do rodapé */
.site-footer {
    background: var(--primary-light);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.9;
}

/* Forçar hover no rodapé (anchors têm estilos inline) */
.site-footer a:hover {
    color: var(--highlight) !important;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animações */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Desativando todas as animações e transições */
* {
    animation: none !important;
    transition: none !important;
}

/* Garantindo que todos os elementos estejam visíveis */
.zoom-in-card, 
.is-visible, 
.fade-in-section,
.hero-content,
.hero-title,
.hero-subtitle,
.hero-cta,
.hero-image {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Seção Soluções Inteligentes */
#solucoes {
    background: #0a1120;
    padding: 5rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solucoes-inteligentes {
    width: 100%;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.section-intro h2 {
    font-size: 2.2rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solucao-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    /* Otimização de animações */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform, box-shadow;
    /* Transição otimizada */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solucao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solucao-icon {
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.solucao-icon i {
    font-size: 1.5rem;
}

.solucao-card h3 {
    color: var(--light);
    margin: 0 0 1.25rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.solucao-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

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

.whatsapp-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

/* Animações otimizadas */
.zoom-in-card {
    opacity: 0;
    transform: scale(0.95) translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform, opacity;
    /* Usando transform e opacity que são propriedades otimizadas para animação */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-in-card.is-visible {
    opacity: 1;
    transform: scale(1) translateZ(0);
    /* Força aceleração por hardware */
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .solucoes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .section-intro p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .solucoes-grid {
        padding: 0 1rem;
    }
    
    .solucao-card {
        padding: 2rem 1.5rem;
    }
    
    .solucao-card h3 {
        font-size: 1.3rem;
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .section-intro h2 {
        font-size: 1.6rem;
    }
    
    .section-intro p {
        font-size: 1rem;
    }
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Transição suave para o ícone dos cards */
.solucao-icon {
    transition: all 0.3s ease;
}

.solucao-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solucao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Realce sutil com a cor highlight ao focar o card */
.solucao-card:hover .solucao-icon {
    background: rgba(254, 177, 131, 0.12);
    box-shadow: 0 0 0 2px var(--highlight);
}

/* Seção Metodologia */
#metodologia {
    padding: 5rem 0;
    background: var(--primary-light);
}

#metodologia .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#metodologia h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.metodologia-subtitulo {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.etapas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.etapa {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etapa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.etapa-cabecalho {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.etapa-numero {
    background: var(--secondary);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.etapa h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.3;
}

.etapa p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Seção Sobre Nós */
#sobre-nos {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    background: #0f1a3a !important;
    padding: 5rem 0 !important;
    width: 100% !important;
    z-index: 1 !important;
}

#sobre-nos .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#sobre-nos {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

#sobre-nos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#sobre-nos .sobre-conteudo {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 4rem !important;
    align-items: center;
}

#sobre-nos .sobre-texto {
    padding-right: 2rem;
}

#sobre-nos h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

#sobre-nos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #7C3AED);
    border-radius: 2px;
}

#sobre-nos p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sobre-imagem {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sobre-imagem:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.foto-perfil {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.sobre-imagem:hover .foto-perfil {
    transform: scale(1.02);
}

#sobre-nos .sobre-conteudo {
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sobre-nos .sobre-texto {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

#sobre-nos .sobre-texto h2 {
    font-size: 2.2rem !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

#sobre-nos .sobre-texto p {
    color: #e2e8f0 !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.05rem !important;
    margin-top: 0 !important;
}

#sobre-nos .sobre-imagem {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

#sobre-nos .sobre-imagem img {
    max-width: 100% !important;
    max-height: 400px !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    display: block !important;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    #sobre-nos .sobre-conteudo {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    #sobre-nos .sobre-texto {
        padding-right: 0;
        text-align: center;
    }
    
    #sobre-nos h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sobre-destaque {
        right: 50%;
        transform: translateX(50%);
        bottom: -1.5rem;
    }
    
    #sobre-nos .sobre-imagem {
        order: -1 !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    #sobre-nos {
        padding: 3rem 0 !important;
    }
    
    #sobre-nos .sobre-texto h2 {
        font-size: 1.8rem !important;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 5%;
    height: 55px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 55px;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    gap: 0.5rem;
    padding: 0.5rem 0;
    height: 100%;
}

.logo-img {
    height: 60px; /* Ajustando a altura para a nova imagem */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

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

.logo-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.agencia-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
}

.km-text {
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.8rem;
    margin-left: 0.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 20px 40px;
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 24px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        color: white;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-5px);
    }
    
    .nav-links .cta-button {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        background: var(--accent);
        color: white !important;
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 8px;
    }
    
    .nav-links .cta-button:hover {
        background: var(--accent-dark);
        transform: translateY(-2px) translateX(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 1rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.5), rgba(58, 134, 255, 0.5), rgba(64, 224, 208, 0.5));
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Botões */
.whatsapp-button, .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
    text-align: center;
    width: auto;
    max-width: 100%;
    margin: 0.5rem 0;
}

.whatsapp-button:hover, .cta-button:hover {
    background: transparent;
    color: #128C7E !important;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

/* Container para botões */
.button-container, .hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Apenas para a primeira seção (hero), alinhar à esquerda */
.hero .hero-buttons {
    justify-content: flex-start;
}

/* Centralizar botões nas seções específicas */
#desafios-abordagem .button-container,
#solucoes .button-container,
#metodologia .button-container {
    justify-content: center;
}

/* Estilos específicos para botões no formulário de contato */
.contato-form-wrapper .whatsapp-button {
    margin: 1rem auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-form-wrapper .whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.contato-form-wrapper .whatsapp-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
}

.contato-form-wrapper .whatsapp-button:hover::before {
    opacity: 0;
}

.contato-form-wrapper .whatsapp-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E, #25D366);
    z-index: -2;
}

/* Ícones nos botões */
.whatsapp-button i, .cta-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Manter estilos específicos para compatibilidade */
.cta-button.primary, .cta-button.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.cta-button.primary:hover, .cta-button.secondary:hover {
    background: transparent;
    color: #128C7E !important;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

/* Desafios e Abordagem */
.desafios-abordagem {
    padding: 1rem 0;
    background-color: var(--primary);
    color: var(--light);
}

.desafios-abordagem .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.desafios-abordagem h2 {
    font-size: 1.6rem;
    color: var(--light);
    margin: 0 0 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.desafios-abordagem {
    padding: 4rem 0;
    background: #0a1120;
}

.desafios-abordagem .section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.desafios-abordagem .section-intro h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.desafios-abordagem .section-intro p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.conteudo-simples {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lista-itens {
    margin-bottom: 3rem;
}

.item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    font-size: 1.2rem;
}

.item .texto h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.item .texto p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

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

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

.whatsapp-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.desafios-abordagem .coluna-unica {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.desafios-abordagem .coluna-unica h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.desafios-abordagem .coluna-unica h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.desafios-abordagem .lista-desafios,
.desafios-abordagem .lista-abordagem {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.desafios-abordagem .lista-desafios li,
.desafios-abordagem .lista-abordagem li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.desafios-abordagem .lista-desafios li:hover,
.desafios-abordagem .lista-abordagem li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.desafios-abordagem .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.desafios-abordagem .icon-container.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.desafios-abordagem .icon-container.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.desafios-abordagem .icon-container i {
    font-size: 1rem;
}

.desafios-abordagem li div:last-child {
    flex: 1;
}

.desafios-abordagem li strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.desafios-abordagem li p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.desafios-abordagem .whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
}

.desafios-abordagem .whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

.desafios-abordagem .whatsapp-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.desafios-abordagem .section-intro p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.colunas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 0.8rem 0 0;
}

.coluna {
    padding: 1rem;
    border-radius: 6px;
    margin: 0;
}

.coluna h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin: 0 0 0.8rem 0;
    padding: 0;
    display: block;
}

.lista-desafios,
.lista-abordagem {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Estilos para os ícones circulares */
.icon-container {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.icon-container.error {
    background-color: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.icon-container.success {
    background-color: rgba(46, 213, 115, 0.15);
    color: #2ed573;
}

.icon-container i {
    font-size: 0.9rem;
}

.lista-desafios li,
.lista-abordagem li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0;
    border-bottom: none;
    align-items: flex-start;
}

.lista-desafios li:last-child,
.lista-abordagem li:last-child {
    margin-bottom: 0;
}

.lista-desafils i,
.lista-abordagem i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.lista-desafios strong,
.lista-abordagem strong {
    display: block;
    color: var(--light);
    margin-bottom: 0.15rem;
    font-size: 1rem;
    line-height: 1.3;
}

.lista-desafios p,
.lista-abordagem p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Diferenciação visual entre as colunas */
.coluna.desafios {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.coluna.abordagem {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.coluna.abordagem i {
    color: #64ffda;
}

/* Responsividade */
@media (max-width: 768px) {
    .desafios-abordagem {
        padding: 1rem 0.5rem;
    }
    
    .desafios-abordagem h2 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .desafios-abordagem .section-intro p {
        font-size: 0.9rem;
    }
    
    .colunas-wrapper {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .coluna {
        padding: 0.8rem;
    }
    
    .coluna h3 {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
    }
}

/* Metodologia */
.metodologia {
    padding: 5rem 0;
    background-color: var(--primary-light);
}

.metodologia h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Barra decorativa sutil nos títulos de seção */
.metodologia h2::after,
.section-intro h2::after,
#sobre-nos .sobre-texto h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--highlight);
    border-radius: 2px;
    margin: 0.6rem auto 0; /* centralizado por padrão */
}

/* Alinhamento à esquerda quando o título não é centralizado */
#sobre-nos .sobre-texto h2::after {
    margin-left: 0;
}

.metodologia-subtitulo {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    padding: 0 1rem;
}

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

@media (max-width: 768px) {
    .metodologia-subtitulo {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}

.etapas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.etapa {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
}

.etapa:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.etapa-numero {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    background: rgba(100, 255, 218, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.etapa h3 {
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.etapa h3 i {
    color: var(--secondary);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.etapa:hover h3 i {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.etapa p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Hero Section */
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Reset de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Adicionando padding para compensar o header fixo */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    padding-top: 55px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero {
    min-height: calc(100vh - 55px);
    padding: 0.5rem 5% 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a192f;
    gap: 1rem;
    z-index: 1;
    color: var(--text);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    box-sizing: border-box;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 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='%233a86ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.8;
    background-size: 50px 50px;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    order: 2;
    text-align: left;
    padding: 0.5rem 5%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    color: var(--light);
    padding: 0;
    font-weight: 700;
    max-width: 100%;
    text-align: left;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0 0 1.8rem 0;
    line-height: 1.6;
    max-width: 600px;
    padding: 0;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0 1.5rem 0;
    width: 100%;
    max-width: 800px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0;
    order: 2;
    position: relative;
    z-index: 2;
    transform: scale(0.9);
    padding: 0;
}

/* Ajustes para telas maiores */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 5rem 5% 3rem;
        min-height: 100vh;
        gap: 2rem;
    }
    
    .hero-content {
        flex: 1;
        max-width: 50%;
        text-align: left;
        padding-right: 2rem;
        order: 1;
        margin: 0;
    }
    
    .hero-image {
        flex: 1;
        max-width: 45%;
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        padding: 0;
        text-align: left;
        margin-bottom: 1.8rem;
        margin-bottom: 1.2rem;
        margin: 0 0 1.5rem 0;
    }
}

@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.8);
    transform-origin: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 1px solid #e9ecef;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
}

.dashboard-header {
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.dashboard-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    grid-template-areas:
        "metric1 metric2"
        "graph graph"
        "ai-badge ai-badge";
}

.metric:first-child { grid-area: metric1; }
.metric:last-child { grid-area: metric2; }
.graph { grid-area: graph; }

.metric {
    text-align: center;
    padding: 0.25rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Estilo para o painel do dashboard com efeito de vidro fosco */
.dashboard-preview {
    background: rgba(16, 18, 27, 0.4) !important;
    backdrop-filter: blur(16px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.8) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
    padding: 1rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease !important;
    max-width: 100%;
    transform: scale(0.9);
}

/* Efeito de brilho sutil */
.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Estilo para o gráfico dentro do painel */
.dashboard-preview .dashboard-content .graph {
    height: 100px !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
    grid-column: 1 / -1 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.dashboard-preview:hover .graph {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.graph::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
    animation: shine 4s infinite linear;
}

.graph::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 60' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 Q12.5,25 25,35 T50,25 T75,35 T100,20' fill='none' stroke='%2364ffda' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: 100% 100%;
}

.ai-badge {
    background: #f0f7ff;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-weight: 500;
    grid-area: ai-badge;
    justify-self: center;
    width: auto;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(58, 134, 255, 0.1);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: scale(0.8);
    transform-origin: center;
}

.floating-element {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
    pointer-events: none;
}

.floating-element i {
    color: var(--primary);
}

.ad-preview {
    top: 20%;
    right: 5%;
    animation: float 7s ease-in-out infinite 0.5s;
}

.lp-preview {
    bottom: 20%;
    left: 5%;
    animation: float 6.5s ease-in-out infinite 1s;
}

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

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Menu Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Estilos para a seção de contato */
.contato-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    position: relative;
    overflow: hidden;
    color: #e6f1ff;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==') repeat;
    opacity: 0.1;
    z-index: 1;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contato-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(10, 25, 47, 0.7);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contato-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.contato-texto {
    color: #e6f1ff;
    padding-top: 0;
}

.contato-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    background: linear-gradient(90deg, #64ffda, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    font-weight: 700;
}

.contato-texto h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #64ffda, #00bfff);
    border-radius: 2px;
}

.contato-texto p {
    font-size: 1.15rem;
    color: #ccd6f6;
    line-height: 1.8;
    margin: 1.5rem 0 2.5rem;
    max-width: 90%;
}

.contato-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.contato-beneficios li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #ccd6f6;
    line-height: 1.6;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
}

.contato-beneficios li:hover {
    transform: translateX(5px);
}

.contato-beneficios li .check-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contato-beneficios li:hover .check-icon {
    transform: scale(1.2) rotate(5deg);
}

.contato-beneficios li .check-icon path {
    fill: #64ffda !important;
}

.contato-form-wrapper {
    position: relative;
    text-align: center;
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.contato-form-wrapper:hover {
    background: rgba(100, 255, 218, 0.08);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.contato-form {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 1;
}

.contato-form h3 {
    font-size: 1.75rem;
    color: #fff;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #64ffda, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Efeito de partículas flutuantes */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.particle {
    position: absolute;
    background: rgba(100, 255, 218, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 30px;
    height: 30px;
    top: 70%;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 15px;
    height: 15px;
    top: 80%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 30s;
}

/* Responsividade */
@media (max-width: 1024px) {
    .contato-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .contato-texto h2 {
        font-size: 2rem;
    }
    
    .contato-texto p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contato-beneficios li {
        justify-content: center;
    }
    
    .contato-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .contato-section {
        padding: 4rem 0;
    }
    
    .contato-content {
        padding: 1.5rem;
    }
    
    .contato-texto h2 {
        font-size: 1.75rem;
    }
    
    .contato-texto p {
        font-size: 1rem;
    }
    
    .contato-form-wrapper .whatsapp-button {
        width: 100%;
        padding: 1rem;
    }
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

/* Estilos para os placeholders */
input::placeholder {
    color: #9ca3af;
    opacity: 1; /* Firefox */
}

/* Estilos para o Internet Explorer 10-11 */
input:-ms-input-placeholder {
    color: #9ca3af;
}

/* Estilos para o Microsoft Edge */
input::-ms-input-placeholder {
    color: #9ca3af;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #111827;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    height: auto;
    margin-bottom: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Estilos para erros de validação */
.form-group input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Estilo para o botão de envio quando desabilitado */
.contato-form button[type="submit"]:disabled {
    background-color: #9ca3af !important;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Estilo para o ícone de check no botão de envio */
.contato-form button[type="submit"] i {
    margin-right: 8px;
}

.contato-form button[type="submit"] {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0.25rem 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(10, 25, 47, 0.35);
}

.contato-form button[type="submit"]:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 25, 47, 0.4);
}

.contato-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* Melhorias de acessibilidade para foco */
.contato-form input:focus,
.contato-form button:focus {
    outline: none;
}


/* Utilitário para texto apenas para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Efeito de transição suave para os inputs */
.contato-form input {
    transition: all 0.2s ease;
}

.contato-form input:hover {
    border-color: #a5b4fc;
}

/* Melhorias para dispositivos móveis */
@media (max-width: 640px) {
    .contato-form {
        padding: 1.5rem !important;
    }
    
    .contato-form h3 {
        font-size: 1.25rem !important;
    }
    
    .contato-texto h2 {
        font-size: 1.75rem !important;
    }
    
    .contato-texto p {
        font-size: 1rem !important;
    }
}

.form-disclaimer {
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
    margin: 1.75rem 0 0;
    line-height: 1.5;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

/* Responsividade */
@media (max-width: 1024px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
    }
    
    .contato-texto {
        text-align: center;
    }
    
    .contato-texto h2 {
        font-size: 2rem;
    }
    
    .contato-texto p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contato-form {
        max-width: 100%;
        margin: 0 auto;
        padding: 1.75rem;
    }
    
    .contato-beneficios {
        max-width: 500px;
        margin: 1.5rem auto 0;
    }
}

@media (max-width: 640px) {
    .contato-section {
        padding: 3.5rem 0;
    }
    
    .contato-container {
        padding: 0 1.25rem;
    }
    
    .contato-content {
        gap: 2rem;
    }
    
    .contato-texto h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .contato-texto p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contato-form {
        padding: 1.5rem 1.25rem;
        border-radius: 10px;
    }
    
    .contato-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .form-row {
        margin-bottom: 1rem;
    }
    
    .contato-beneficios li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
}

@media (min-width: 768px) {
    .dashboard-preview {
        transform: scale(0.8);
    }
    
    .floating-elements {
        transform: scale(0.8);
    }
}

@media (min-width: 1024px) {
    .dashboard-preview {
        transform: scale(0.9);
    }
    
    .floating-elements {
        transform: scale(0.9);
    }
}

@media (min-width: 1200px) {
    .dashboard-preview {
        transform: scale(1);
    }
    
    .floating-elements {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        padding: 5rem 5% 3rem;
        justify-content: center;
    }
    
    .hero-content {
        order: 1;
        padding: 0 1.5rem;
        text-align: center;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
        margin: 2rem auto 0;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        padding: 1rem 5%;
    }
    
    /* Menu Mobile */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        padding: 5px;
        background: transparent;
        border: none;
        outline: none;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
        pointer-events: none;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }
    }
    
    .metodologia {
        padding: 4rem 0;
    }

    .metodologia h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .etapas {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .etapa {
        padding: 2rem 1.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: left;
        padding: 2rem 5% 3rem;
        min-height: auto;
        display: flex;
        justify-content: flex-start;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        max-width: 100%;
        margin-bottom: 1.2rem;
        text-align: left;
        font-weight: 700;
    }
    
    .hero p {
        font-size: 1rem;
        text-align: left;
        max-width: 100%;
        margin: 0 0 1.8rem 0;
        color: #94a3b8;
        line-height: 1.7;
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .dashboard-preview {
        transform: scale(0.9);
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin: 1.2rem 0 0;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 140px;
        text-align: center;
        width: auto;
    }
}
