/* ========================================
   Landing Page Styles - JuristIA
   Estilos específicos da página landing_page.html
   ======================================== */


    /* Estilos gerais da página */
    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        overflow-x: hidden;
        background-color: #0A2240;
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
    }
    
    /* Container para as partículas em tela cheia */
    #particles-js {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #0A2240;
        z-index: 0;
    }
    
    /* Layout principal */
    .landing-container {
        position: relative;
        z-index: 1;
        width: 100%;
        overflow: hidden;
    }
    
    /* Seção hero */
    .hero-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;  /* Alterado de 'center' para 'flex-start' */
        align-items: center;
        padding-top: 1vh;  /* Ajusta para 15% da altura da viewport em vez de 6rem fixos */
        padding-bottom: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
        transform: translateY(-1vh);
    }
    
    .hero-logo h1 {
        font-size: 5rem;
        font-weight: 800;
        margin-bottom: 0;
        background: linear-gradient(135deg, #ffffff 0%, #0071CE 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        letter-spacing: 2px;
    }
    
    .hero-logo p {
        font-size: 1.5rem;
        color: #0071CE;
        margin-top: 0.5rem;
        font-weight: 500;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 2rem auto;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }
    
    .hero-content p {
        font-size: 1.25rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Botões de CTA */
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;

    }
    
    .btn-primary-glow {
        background: linear-gradient(135deg, #0071CE 0%, #00416B 100%);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(0, 113, 206, 0.4);
        transition: all 0.3s ease;
    }
    
    .btn-primary-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 113, 206, 0.6);
    }
    
    .btn-outline-light {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }
    
    /* Seções de conteúdo */
    .content-section {
        padding: 6rem 1rem;
        position: relative;
    }
    
    .dark-section {
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(10px);
    }
    
    .section-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #fff;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
    }
    
    /* Lista de itens com ícones */
    .feature-list {
        margin-top: 4rem;
    }
    
    .feature-item {
        height: 100%;
        display: flex;
        flex-direction: column;
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
        overflow: hidden;
        position: relative;
    }
    
    .feature-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #0071CE, rgba(0, 113, 206, 0.1));
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .feature-item:hover::after {
        opacity: 1;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    
    .feature-item .feature-icon {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, #0071CE 0%, #00416B 100%);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .feature-item:hover .feature-icon {
        transform: scale(1.05) rotate(5deg);
    }
    
    .feature-item .feature-icon i {
        font-size: 2.75rem;
        color: #fff;
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
        color: #fff;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .feature-item h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #0071CE, rgba(255, 255, 255, 0.1));
    }
    
    .feature-item p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.8;
        font-size: 1.05rem;
    }
    
    /* Efeito de destaque nos termos importantes */
    .feature-item p strong {
        color: #0071CE;
        font-weight: 600;
    }
    
    /* Ajustes responsivos */
    @media (max-width: 992px) {
        .feature-item {
            padding: 2rem;
        }
        
        .feature-item .feature-icon {
            width: 70px;
            height: 70px;
        }
        
        .feature-item .feature-icon i {
            font-size: 2.25rem;
        }
    }
    
    /* Cards para 'Para quem é indicado' */
    .persona-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        margin-top: 3rem;
    }
    
    .persona-card {
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2.5rem 2rem;
        flex: 1 1 250px;
        max-width: 350px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .persona-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: rgba(0, 113, 206, 0.3);
    }
    
    .persona-card .persona-icon {
        font-size: 3rem;
        color: #0071CE;
        margin-bottom: 1.5rem;
    }
    
    .persona-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .persona-card p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;  /* Adicione esta linha - reduz de ~1rem para 0.95rem */
        line-height: 1.6; 
    }
    
    /* Grid para benefícios */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(0, 65, 107, 0.4);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
        background: rgba(0, 65, 107, 0.4);
        transform: translateY(-3px);
    }
    
    .benefit-item i {
        font-size: 1.5rem;
        color: #0071CE;
        min-width: 30px;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #ffffff; 
    }
    
    .benefit-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }
    
    /* Ferramentas e recursos */
    .tools-card {
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
    }
    
    .tools-card:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: rgba(0, 113, 206, 0.3);
    }
    
    .tools-card h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tools-card h3 i {
        color: #0071CE;
    }
    
    .tools-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .tools-list li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tools-list li:last-child {
        border-bottom: none;
    }
    
    .tools-list li i {
        color: #0071CE;
    }
    
    /* Seção final de CTA */
    .cta-section {
        text-align: center;
        padding: 8rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #ffffff; 
    }
    
    .cta-section p {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto 3rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Balança da justiça como elemento visual */
    .justice-scale {
        position: absolute;
        width: 800px;
        height: 800px;
        opacity: 0.03;
        z-index: -1;
        pointer-events: none;
    }
    
    /* Classes para melhorar legibilidade */
    .text-white-90 {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .text-white-80 {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .text-primary {
        color: #0071CE !important;
    }
    
    .text-accent {
        color: #00416B !important;
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .hero-logo h1 {
            font-size: 3.5rem;
        }
        
        .hero-content h2 {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .cta-section h2 {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-logo h1 {
            font-size: 3rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
            
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .feature-item {
            padding: 1.5rem;
            margin-bottom: 0; /* evitar somar com margem da coluna */
        }
        
        .feature-list .row {
            row-gap: 0;            /* usar apenas margem dos cards */
            --bs-gutter-y: 0;      /* remover gutter vertical */
        }
        
        .feature-list .col-md-6 {
            margin-bottom: 1.5rem; /* espaçamento simples e consistente */
        }

        .feature-list > .row:last-child > .col-md-6:last-child {
            margin-bottom: 0;
        }

        /* Neutralizar utilitário mb-4 somente nesta seção no mobile */
        .feature-list .row.mb-4 {
            margin-bottom: 0 !important;
        }
    }

    .juristia-main-logo {
        max-height: 120px;
        width: auto;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 1rem;
    }

    @media (max-width: 768px) {
        .juristia-main-logo {
            max-height: 80px;
            width: 100%;
            object-fit: contain;
        }
    }

    /* Timeline de fluxo de trabalho */
    .workflow-timeline {
        position: relative;
        margin: 60px 0;
        padding: 0;
    }
    
    .workflow-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 30px;
        width: 4px;
        background: linear-gradient(180deg, #0071CE, rgba(0, 113, 206, 0.2));
        z-index: 0;
    }
    
    .workflow-step {
        position: relative;
        padding-left: 80px;
        margin-bottom: 60px;
        z-index: 1;
    }
    
    .workflow-step:last-child {
        margin-bottom: 0;
    }
    
    .workflow-icon {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #0071CE 0%, #00416B 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 2;
        position: relative;
    }
    
    .icon-circle i {
        color: #fff;
        font-size: 24px;
    }
    
    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #0078d4;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .workflow-content {
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        transition: all 0.3s ease;
    }
    
    .workflow-content:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: rgba(0, 113, 206, 0.3);
        transform: translateY(-5px);
    }
    
    .workflow-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
        display: flex;
        align-items: center;
    }
    
    .step-description {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .feature-checklist {
        list-style-type: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .feature-checklist li {
        position: relative;
        padding: 8px 0 8px 35px;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .feature-checklist li i {
        position: absolute;
        left: 0;
        top: 9px;
        width: 24px;
        height: 24px;
        background: rgba(0, 113, 206, 0.2);
        color: #0071CE;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }
    
    .feature-visual {
        position: relative;
        width: 180px;
        height: 180px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-big-icon {
        font-size: 5rem;
        color: #0071CE;
        opacity: 0.9;
        z-index: 2;
    }
    
    .pulse-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 140px;
        height: 140px;
        background: rgba(0, 113, 206, 0.1);
        border-radius: 50%;
        z-index: 1;
    }
    
    .pulse-circle::before,
    .pulse-circle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 113, 206, 0.1);
        border-radius: 50%;
        z-index: 0;
        animation: pulse 3s infinite;
    }
    
    .pulse-circle::after {
        animation-delay: 1.5s;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 0.8;
        }
        70% {
            transform: scale(1.3);
            opacity: 0;
        }
        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }
    
    /* CTA dentro da seção de workflow */
    .workflow-cta {
        margin-top: 50px;
        text-align: center;
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
    }
    
    .cta-text {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 25px;
        font-weight: 500;
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .workflow-timeline::before {
            left: 20px;
        }
        
        .workflow-step {
            padding-left: 60px;
        }
        
        .icon-circle {
            width: 40px;
            height: 40px;
        }
        
        .icon-circle i {
            font-size: 18px;
        }
        
        .step-number {
            width: 24px;
            height: 24px;
            font-size: 14px;
        }
        
        .feature-visual {
            width: 140px;
            height: 140px;
            margin-top: 20px;
        }
        
        .feature-big-icon {
            font-size: 4rem;
        }
        
        .pulse-circle {
            width: 100px;
            height: 100px;
        }
    }
    
    @media (max-width: 768px) {
        .workflow-content {
            padding: 20px;
        }
        
        .workflow-content h3 {
            font-size: 1.3rem;
        }
        
        .step-description {
            font-size: 1rem;
        }
        
        .feature-visual {
            margin: 20px auto;
        }
    }

    /* Estilos aprimorados para os cards de ferramentas */
    .tools-container {
        margin-top: 3rem;
    }
    
    .tools-card {
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
        height: 100%;
        overflow: hidden;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    
    .tools-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 113, 206, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .tools-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(0, 113, 206, 0.3);
    }
    
    .tools-card:hover::before {
        opacity: 1;
    }
    
    .tools-card-header {
        background: rgba(15, 26, 43, 0.8);
        padding: 2rem 2.5rem;
        border-bottom: 1px solid rgba(0, 113, 206, 0.2);
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }
    
    .tools-icon-wrapper {
        width: 64px;
        height: 64px;
        min-width: 64px;
        background: linear-gradient(135deg, #0071CE 0%, #00416B 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .tools-card:hover .tools-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }
    
    .tools-icon-wrapper i {
        font-size: 1.8rem;
        color: #fff;
    }
    
    .tools-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        color: #fff;
        flex-grow: 1;
        line-height: 1.3;
    }
    
    .tools-list {
        list-style: none;
        padding: 1.5rem 2.5rem 2.5rem;
        margin: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .tools-list li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .tools-list li:last-child {
        border-bottom: none;
    }
    
    .tools-list li i {
        color: #0071CE;
        margin-top: 0.25rem;
        font-size: 0.9rem;
        background: rgba(0, 113, 206, 0.15);
        width: 22px;
        height: 22px;
        min-width: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .tools-card-header {
            padding: 1.5rem;
        }
        
        .tools-icon-wrapper {
            width: 50px;
            height: 50px;
            min-width: 50px;
        }
        
        .tools-icon-wrapper i {
            font-size: 1.5rem;
        }
        
        .tools-card h3 {
            font-size: 1.2rem;
        }
        
        .tools-list {
            padding: 1rem 1.5rem 1.5rem;
        }
        
        .tools-list li {
            padding: 0.75rem 0;
        }
    }
    
    /* Animação sequencial para os cards */
    .tools-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out, 
                   box-shadow 0.4s ease, border-color 0.4s ease;
    }
    
    .tools-card.animated {
        opacity: 1;
        transform: translateY(0);
    }
    
    .row-cols-lg-2 .col:nth-child(1) .tools-card { transition-delay: 0.1s; }
    .row-cols-lg-2 .col:nth-child(2) .tools-card { transition-delay: 0.2s; }
    .row-cols-lg-2 .col:nth-child(3) .tools-card { transition-delay: 0.3s; }
    .row-cols-lg-2 .col:nth-child(4) .tools-card { transition-delay: 0.4s; }
    
    /* Subtítulo da seção */
    .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }


    /* Seção interativa - O Problema - Ajustada para seguir o padrão */
    .interactive-section {
        background: rgba(0, 65, 107, 0.4);  /* Mudança: mesmo fundo das outras seções */
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);  /* Mudança: bordas padrão */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);  /* Mudança: bordas padrão */
    }
    
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .problem-card {
        background: rgba(0, 65, 107, 0.4);
        backdrop-filter: blur(5px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        /* Adicionar animação de entrada */
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out, 
                   box-shadow 0.3s ease, border-color 0.3s ease;
    }
    
    .problem-card.animated {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Delays escalonados para cada card */
    .problem-grid .problem-card:nth-child(1) { transition-delay: 0.1s; }
    .problem-grid .problem-card:nth-child(2) { transition-delay: 0.2s; }
    .problem-grid .problem-card:nth-child(3) { transition-delay: 0.3s; }
    .problem-grid .problem-card:nth-child(4) { transition-delay: 0.4s; }
    .problem-grid .problem-card:nth-child(5) { transition-delay: 0.5s; }
    .problem-grid .problem-card:nth-child(6) { transition-delay: 0.6s; }
    
    .problem-icon {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        margin: 0 auto 2rem auto;
        background: linear-gradient(135deg, #0071CE 0%, #00416B 100%);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .problem-card:hover .problem-icon {
        transform: scale(1.05) rotate(5deg);
    }
    
    .problem-icon i {
        font-size: 2.75rem;
        color: #fff;
    }
    
    .problem-card h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .problem-card p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin: 0;
    }

    
    /* Responsividade para a seção de problemas */
    @media (max-width: 768px) {
        .problem-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .problem-card {
            padding: 1.5rem;
        }
        
        .problem-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
    }



    /* Animações para elementos */
    .feature-item, .persona-card, .tools-card, .benefit-item {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .feature-item.animated, .persona-card.animated, .tools-card.animated, .benefit-item.animated {
        opacity: 1;
        transform: translateY(0);
    }
    
        /* Delay para animações em sequência */
    .feature-item:nth-child(2), .persona-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .feature-item:nth-child(3), .persona-card:nth-child(3) {
        transition-delay: 0.4s;
    }

    .feature-item:nth-child(4), .persona-card:nth-child(4) {
        transition-delay: 0.6s;
    }

    /* Delays específicos para os itens de benefício */
    .benefits-grid .benefit-item:nth-of-type(1) { transition-delay: 0.0s; }
    .benefits-grid .benefit-item:nth-of-type(2) { transition-delay: 0.1s; }
    .benefits-grid .benefit-item:nth-of-type(3) { transition-delay: 0.2s; }
    .benefits-grid .benefit-item:nth-of-type(4) { transition-delay: 0.3s; }
    .benefits-grid .benefit-item:nth-of-type(5) { transition-delay: 0.4s; }
    .benefits-grid .benefit-item:nth-of-type(6) { transition-delay: 0.5s; }
    .benefits-grid .benefit-item:nth-of-type(7) { transition-delay: 0.6s; }
    .benefits-grid .benefit-item:nth-of-type(8) { transition-delay: 0.7s; }
    

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
        display: block;  /* Garantir que está visível */
        z-index: 10;     /* Garantir que está acima de outros elementos */
    }

    /* Adicione este CSS para esconder a seta em todas as seções exceto a hero */
    .content-section .scroll-indicator {
        display: none;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-15px);
        }
        60% {
            transform: translateY(-7px);
        }
    }
    
    /* Banner de Cookies Simplificado */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 26, 43, 0.95);
        backdrop-filter: blur(10px);
        border-top: 2px solid rgba(0, 113, 206, 0.3);
        padding: 1.5rem;
        z-index: 9999;
        display: none;
        animation: slideUp 0.5s ease-out;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .cookie-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .cookie-content {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        flex: 1;
    }
    
    .cookie-icon {
        font-size: 1.8rem;
        color: #0071CE;
        margin-top: 0.25rem;
        min-width: 2rem;
    }
    
    .cookie-text p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .cookie-link {
        color: #0071CE;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .cookie-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    
    .cookie-actions {
        flex-shrink: 0;
    }
    
    .btn-accept-cookies {
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        white-space: nowrap;
        background: linear-gradient(135deg, #0071CE 0%, #00416B 100%);
        color: #fff;
        box-shadow: 0 2px 8px rgba(0, 113, 206, 0.3);
    }
    
    .btn-accept-cookies:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 113, 206, 0.4);
    }
    
    /* Modal de Política de Privacidade */
    .privacy-modal {
        background: #0A2240;
        color: #fff;
        border: 1px solid rgba(0, 113, 206, 0.3);
    }
    
    .privacy-modal .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 65, 107, 0.4);
    }
    
    .privacy-modal .modal-title {
        color: #0071CE;
        font-weight: 600;
    }
    
    .privacy-modal .btn-close {
        filter: invert(1);
    }
    
    .privacy-modal .modal-body {
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .privacy-modal .modal-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 65, 107, 0.4);
    }
    
    .privacy-content h6 {
        color: #0071CE;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .privacy-content h6 i {
        margin-right: 0.5rem;
    }
    
    .privacy-content p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }
    
    .privacy-content ul {
        color: rgba(255, 255, 255, 0.8);
        padding-left: 1.5rem;
    }
    
    .privacy-content ul li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .privacy-content a {
        color: #0071CE;
        text-decoration: none;
    }
    
    .privacy-content a:hover {
        color: #fff;
        text-decoration: underline;
    }
    
    /* Responsividade do banner de cookies */
    @media (max-width: 992px) {
        .cookie-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .cookie-content {
            text-align: center;
        }
        
        .cookie-actions {
            width: 100%;
            display: flex;
            justify-content: center;
        }
    }
    
    @media (max-width: 576px) {
        .cookie-banner {
            padding: 1rem;
        }
        
        .cookie-text p {
            font-size: 0.9rem;
        }
        
        .btn-accept-cookies {
            width: 100%;
            justify-content: center;
            padding: 1rem 2rem;
        }
    }
