/* ======================================================
   INSIGHT SECTION — DIAGNÓSTICO (TOTALMENTE ISOLADO)
====================================================== */

.insight-section{
    position:relative;
    padding:100px 20px;
    background:#0c0c12;
    font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Ubuntu,sans-serif;
    overflow:hidden;
}

/* FUNDO */

.insight-section .insight-bg{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(255,59,59,0.05),transparent 70%);
}

/* CONTAINER */

.insight-section .insight-container{
    position:relative;
    max-width:1100px;
    margin:auto;
}

/* HEADER */

.insight-section .insight-header{
    text-align:center;
    margin-bottom:70px;
}

.insight-section .insight-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#888;
    border:1px solid rgba(255,255,255,0.1);
    padding:6px 18px;
    border-radius:40px;
    margin-bottom:20px;
}

.insight-section .insight-title{
    font-size:42px;
    font-weight:400;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
}

.insight-section .title-accent{
    font-weight:600;
    border-bottom:2px solid #ff3b3b;
}

.insight-section .insight-subtitle{
    color:#999;
    max-width:650px;
    margin:auto;
    font-size:17px;
    line-height:1.6;
}

/* GRID */

.insight-section .challenges-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-bottom:60px;
}

.insight-section .challenge-card{
    background:#14141c;
    padding:30px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.04);
    transition:all .3s ease;
}

.insight-section .challenge-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,59,59,0.35);
}

.insight-section .card-number{
    color:#ff3b3b;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:12px;
}

.insight-section .card-title{
    font-size:20px;
    color:#fff;
    margin-bottom:12px;
}

.insight-section .card-text{
    color:#999;
    line-height:1.6;
    font-size:15px;
}

/* BLOCO CONSEQUÊNCIA */

.insight-section .analysis-block{
    display:flex;
    gap:20px;
    background:#111118;
    border-radius:18px;
    padding:30px;
    border:1px solid rgba(255,255,255,0.05);
}

.insight-section .analysis-icon{
    flex-shrink:0;
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,59,59,0.10);
    border-radius:50%;
}

.insight-section .analysis-title{
    color:#fff;
    font-size:20px;
    margin-bottom:8px;
}

.insight-section .analysis-text{
    color:#aaa;
    line-height:1.6;
}

/* SEPARADOR */

.insight-section .insight-separator{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:60px;
}

.insight-section .separator-line{
    flex:1;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
}

.insight-section .separator-symbol{
    color:#555;
}

/* =====================================
   RESPONSIVIDADE
===================================== */

@media (max-width:1024px){

.insight-section{
padding:90px 20px;
}

.insight-section .insight-title{
font-size:34px;
}

}

@media (max-width:768px){

.insight-section{
padding:70px 18px;
}

.insight-section .insight-title{
font-size:28px;
}

.insight-section .insight-subtitle{
font-size:15px;
}

.insight-section .challenges-grid{
grid-template-columns:1fr;
gap:20px;
}

.insight-section .analysis-block{
flex-direction:column;
padding:25px;
}

}

@media (max-width:480px){

.insight-section .challenge-card{
padding:22px;
}

.insight-section .card-title{
font-size:18px;
}

.insight-section .card-text{
font-size:14px;
}

}