  /* =====================================================
   NeoPesquisa
   style.css
   Versão 0.3
===================================================== */

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

body{
    font-family:var(--font-text);
    background:var(--light);
    color:var(--text);
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* ================= HEADER ================= */

header{
    width:100%;
    background:var(--white);
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

header .container{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-family:var(--font-title);
    font-size:2.3rem;
    font-weight:700;
    color:var(--primary);
    letter-spacing:-0.5px;
}

.logo span{
    color:var(--secondary);
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:var(--primary);
    font-size:2rem;
    cursor:pointer;
    padding:5px;
}

/* ================= HERO ================= */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#F4F6F9 0%,#FFFFFF 100%);

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1.15fr;

    align-items:center;

    gap:10px;

    padding-top:40px;

}

.hero-tag{

    display:inline-block;

    padding:8px 18px;

    background:#EEF2FF;

    color:var(--secondary);

    border-radius:30px;

    font-size:.9rem;

    margin-bottom:20px;

    font-weight:600;

}

.hero h1{

    font-family:var(--font-title);

    font-size:3.8rem;

    color:var(--primary);

    line-height:1.1;

}

.hero h2{

    font-family:var(--font-title);

    font-size:2.4rem;

    color:var(--secondary);

    margin-top:15px;

}

.hero p{

    max-width:700px;

    margin-top:30px;

    font-size:1.18rem;

    line-height:1.95;

    color:var(--text);

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.btn-primary{

    background:var(--secondary);

    color:#fff;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid var(--secondary);

    color:var(--secondary);

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:var(--secondary);

    color:#fff;

}

nav ul{

    display:flex;

    align-items:center;

    list-style:none;

    gap:40px;

}

nav ul li{

    list-style:none;

}

nav ul li a{

    text-decoration:none;

    color:var(--primary);

    font-family:var(--font-text);

    font-size:1.05rem;

    font-weight:600;

    letter-spacing:.2px;

    transition:.3s;

    position:relative;

}

nav ul li a:hover{

    color:var(--secondary);

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--secondary);

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}
/* ================= HERO IMAGE ================= */

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:720px;

    display:block;

}

/* ================= ABOUT ================= */

.about{

    padding:120px 0;

    background:#FFFFFF;

}

.section-title{

    max-width:760px;

    margin:50px auto 70px;
    text-align:center;

}

.section-title span{

    display:inline-block;

    padding:8px 18px;

    background:#EEF2FF;

    color:var(--secondary);

    border-radius:30px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:20px;

}

.section-title h2{

    font-family:var(--font-title);

    font-size:3.2rem;

    line-height:1.2;

    color:var(--primary);

    margin-bottom:35px;

}
.section-title p{

    font-size:1.22rem;

    line-height:2;

    color:var(--text);

}

.about-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.about-card{

    background:#FFFFFF;

    padding:45px 35px;

    border-radius:22px;

    border:1px solid rgba(90,70,255,.08);

    box-shadow:0 12px 40px rgba(0,0,0,.06);

    transition:.35s;

    text-align:center;

}

.about-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 55px rgba(0,0,0,.12);

    border-color:rgba(90,70,255,.25);

}

.card-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(90,70,255,.06);

}

.card-icon svg{

    width:62px;

    height:62px;

    stroke:var(--secondary);

    stroke-width:2.2;

}

.about-card h3{

    font-family:var(--font-title);

    color:var(--primary);

    margin-bottom:18px;

    font-size:1.5rem;

}

.about-card p{

    line-height:1.9;

    color:#4F5D75;

}

/* ================= AREAS ================= */

.areas{

    padding:120px 0;

    background:#F8FAFD;

}

.areas-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.area-card{

    background:#FFFFFF;

    border-radius:22px;

    padding:35px;

    border:1px solid rgba(90,70,255,.08);

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

    cursor:pointer;
  
    text-decoration:none;
  
    color:inherit;
}
.area-card,
.area-card:link,
.area-card:visited,
.area-card:hover,
.area-card:active{

    text-decoration:none;

}

.area-card h3,
.area-card p{

    text-decoration:none;

}
.area-card:hover{

    transform:translateY(-8px);

    border-color:rgba(90,70,255,.25);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

.area-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:rgba(90,70,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.area-icon svg{

    width:36px;

    height:36px;

    stroke:var(--secondary);

    stroke-width:2;

}

.area-card h3{

    font-family:var(--font-title);

    color:var(--primary);

    font-size:1.4rem;

    margin-bottom:18px;

}

.area-card p{

    color:#4F5D75;

    font-size:1.05rem;
line-height:1.9;

    margin-bottom:30px;

}

.area-link{

    color:var(--secondary);

    font-weight:600;

    font-size:.95rem;

}

.area-card:hover .area-icon{

    background:rgba(90,70,255,.14);

}

.area-card:hover .area-icon svg{

    transform:scale(1.08);

    transition:.3s;

}

/* ================= DIFFERENTIALS ================= */

.differentials{

    padding:140px 0;

    background:#FFFFFF;

}

.differentials-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.differentials-image{

    display:flex;

    justify-content:center;

}

.differentials-image img{

    width:100%;

    max-width:650px;

    border-radius:28px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.section-badge{

    display:inline-block;

    padding:8px 18px;

    background:#EEF2FF;

    color:var(--secondary);

    border-radius:30px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:25px;

}

.differentials-content h2{

    font-family:var(--font-title);

    font-size:3rem;

    line-height:1.2;

    color:var(--primary);

    margin-bottom:25px;

}

.differentials-content > p{

    font-size:1.1rem;

    line-height:1.9;

    color:#4F5D75;

    margin-bottom:45px;

}

.feature{

    display:flex;

    gap:22px;

    margin-bottom:30px;

    align-items:flex-start;

}

.feature-icon{

    width:62px;

    height:62px;

    border-radius:16px;

    background:rgba(90,70,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.feature-icon svg{

    width:30px;

    height:30px;

    stroke:var(--secondary);

    stroke-width:2;

}

.feature h3{

    font-family:var(--font-title);

    color:var(--primary);

    font-size:1.3rem;

    margin-bottom:8px;

}

.feature p{

    color:#4F5D75;

    line-height:1.7;

}
/* ================= JOURNEY ================= */

.journey{

    padding:140px 0;

    background:#F8FAFD;

}

.journey-timeline{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

    margin-top:80px;

    position:relative;

}

.journey-timeline::before{

    content:"";

    position:absolute;

    top:42px;

    left:8%;

    right:8%;

    height:6px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        #8A7BFF
    );

    z-index:0;

}

.journey-step{

    position:relative;

    z-index:2;

    text-align:center;

}

.journey-icon{

    width:84px;

    height:84px;

    margin:0 auto 25px;

    background:#FFFFFF;

    border:4px solid rgba(90,70,255,.15);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.journey-icon svg{

    width:38px;

    height:38px;

    stroke:var(--secondary);

    stroke-width:2;

}

.journey-step:hover .journey-icon{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 18px 45px rgba(90,70,255,.22);

}

.journey-step h3{

    font-family:var(--font-title);

    color:var(--primary);

    margin-bottom:12px;

    font-size:1.25rem;

}

.journey-step p{

    color:#4F5D75;

    line-height:1.7;

    font-size:.96rem;

}

/* ================= RESOURCES ================= */

.resources{

    padding:140px 0;

    background:#FFFFFF;

}

.resources-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:80px;

}

.resource-card{

    background:#FFFFFF;

    border:1px solid #EEF2FF;

    border-radius:24px;

    padding:30px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;

    min-height:220px;

}

.resource-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        #7C6CFF
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.resource-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

.resource-card:hover::before{

    transform:scaleX(1);

}

.resource-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    background:#EEF2FF;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

    transition:.35s;

}

.resource-card:hover .resource-icon{

    transform:rotate(-6deg) scale(1.08);

    background:var(--secondary);

}

.resource-icon svg{

    width:40px;

    height:40px;

    stroke:var(--secondary);

    stroke-width:2;

    transition:.35s;

}

.resource-card:hover .resource-icon svg{

    stroke:#FFFFFF;

}

.resource-card h3{

    font-family:var(--font-title);

    font-size:1.5rem;

    color:var(--primary);

    margin-bottom:18px;

}

.resource-card p{

    font-size:1.05rem;
line-height:1.9;

    color:#4F5D75;

    margin-bottom:30px;

}

.resource-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:auto;

    text-decoration:none;

    color:var(--secondary);

    font-weight:700;

    transition:.3s;

}

.resource-card:hover a{

    transform:translateX(6px);

}

/* ================= TRUST ================= */

.trust{

    padding:140px 0;

    background:linear-gradient(180deg,#F8FAFD 0%,#FFFFFF 100%);

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:80px;

}

.trust-card{

    background:#FFFFFF;

    border:1px solid #E8ECF8;

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;

    min-height:340px;

}

.trust-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        #7C6CFF
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.trust-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.trust-card:hover::before{

    transform:scaleX(1);

}

.trust-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#EEF2FF;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.trust-card:hover .trust-icon{

    background:var(--secondary);

    transform:scale(1.08);

}

.trust-icon svg{

    width:42px;

    height:42px;

    stroke:var(--secondary);

    stroke-width:2;

    transition:.35s;

}

.trust-card:hover .trust-icon svg{

    stroke:#FFFFFF;

}

.trust-card h3{

    font-family:var(--font-title);

    font-size:1.45rem;

    color:var(--primary);

    margin-bottom:18px;

}

.trust-card p{

    font-size:1.05rem;
line-height:1.9;

    color:#4F5D75;

}
/*==================================================
CTA
==================================================*/

.cta{
    padding:100px 0;
    background:#ffffff;
}

.cta-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.cta-text{
    flex:1;
    max-width:560px;
}

.cta-text h2{
    margin:20px 0;
}

.cta-text p{
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.cta-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.cta-image img{
    width:100%;
    max-width:680px;
    height:auto;
    display:block;
}


/* =====================================================
   TABELAS METODOLÓGICAS
===================================================== */

.table-responsive{
    width:100%;
    overflow-x:auto;
    margin-top:45px;
    margin-bottom:45px;
}

.method-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.method-table th{
    background:#EEF2FF;
    color:#1f2937;
    font-weight:700;
    text-align:left;
    padding:20px 22px;
    line-height:1.4;
}

.method-table td{
    padding:20px 22px;
    line-height:1.6;
    vertical-align:top;
    border-bottom:1px solid #e5e7eb;
    color:#374151;
}

.method-table tbody tr:last-child td{
    border-bottom:none;
}

.method-table strong{
    color:#1f2937;
}
/* =====================================================
   ESTRUTURA DA PESQUISA CIENTÍFICA
===================================================== */

.research-structure{
    max-width:850px;
    margin:45px auto 0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.structure-main{
    background:var(--primary);
    color:#fff;
    padding:20px 25px;
    border-radius:14px;
    font-size:1.05rem;
}

.structure-item,
.structure-subitem{
    display:grid;
    grid-template-columns:75px 1fr auto;
    align-items:center;
    gap:15px;

    background:#fff;
    padding:16px 22px;
    border:1px solid #E8ECF3;
    border-radius:12px;

    color:inherit;
    text-decoration:none;
}

.structure-item span,
.structure-subitem span{
    color:var(--secondary);
    font-weight:700;
}

.structure-subitem{
    margin-left:45px;
}

.structure-link{
    transition:.25s;
}

.structure-link:hover{
    transform:translateX(5px);
    border-color:var(--secondary);
}

.structure-link small{
    color:var(--secondary);
    font-weight:600;
    white-space:nowrap;
}
/* =====================================================
   ESQUELETO EXPANSÍVEL
===================================================== */

.structure-section{
    width:100%;
}

.structure-summary{
    display:grid;
    grid-template-columns:70px 1fr 40px;
    align-items:center;
    gap:15px;

    padding:22px 25px;

    background:var(--primary);
    color:#FFFFFF;

    border-radius:14px;

    cursor:pointer;
    list-style:none;
}

.structure-summary::-webkit-details-marker{
    display:none;
}

.structure-summary::marker{
    display:none;
}

.structure-number{
    font-weight:700;
    opacity:.85;
}

.structure-summary strong{
    font-size:1.05rem;
    letter-spacing:.02em;
}

.structure-toggle{
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.6rem;
    font-weight:400;
}

.structure-section[open] .structure-toggle{
    font-size:0;
}

.structure-section[open] .structure-toggle::after{
    content:"−";
    font-size:1.6rem;
}

.structure-content{
    display:flex;
    flex-direction:column;
    gap:10px;

    padding-top:12px;
}
/*==================================================
CTA RESPONSIVO
==================================================*/

@media (max-width:768px){

    .cta{
        padding:60px 0;
    }

    .cta-content{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .cta-text{
        max-width:100%;
        width:100%;
    }

    .cta-buttons{
        justify-content:center;
    }

    .cta-image{
        width:100%;
    }

    .cta-image img{
        width:100%;
        max-width:520px;
        margin:0 auto;
    }

}
/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{

    padding:100px 0;

    background:#f8faff;

}

.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.testimonial-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    min-height:360px;

    display:flex;

    flex-direction:column;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(88,72,255,.12);

}

.testimonial-stars{

    color:#FFC107;

    font-size:20px;

    margin-bottom:28px;

    letter-spacing:3px;

}

.testimonial-text{

    color:#4b5563;

    font-size:1.05rem;
line-height:1.9;

    margin-bottom:42px;

    flex:1;

}

.testimonial-author{

    display:flex;

    align-items:center;

    gap:18px;

}

.testimonial-author img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    background:#eef2ff;

}

.testimonial-author h4{

    margin-bottom:5px;

    color:#163d6b;

    font-size:1.1rem;

    font-weight:700;

}

.testimonial-author span{

    color:#6b7280;

    font-size:15px;

}

/*==================================================
TESTIMONIALS RESPONSIVO
==================================================*/

@media(max-width:991px){

    .testimonials-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

}

/* ======================================================
   FAQ
====================================================== */

.faq{

    padding:100px 0;

    background:#f8fbff;

}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.3s;

}

.faq-item:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(88,72,255,.10);

}

.faq-question{

    width:100%;

    border:none;

    background:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    cursor:pointer;

    font-size:1.08rem;

    font-weight:600;

    color:#163d6b;

    text-align:left;

}

.faq-question span{

    font-size:1.5rem;

    color:#5848ff;

    font-weight:700;

}

.faq-answer{

    padding:0 30px 28px;

    color:#4f5d75;

    font-size:1.05rem;
line-height:1.9;

    font-size:1rem;

    display:none;

}

.faq-item.active .faq-answer{

    display:block;

}
/* ==========================================
RESPONSIVO
========================================== */

@media (max-width:992px){
.guide-grid-6 {

    grid-template-columns: repeat(2, 1fr);

}
}

@media (max-width:768px){

    .resources-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .guide-grid-6{
        grid-template-columns:1fr;
    }

    .differentials-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .differentials-content{
        text-align:center;
    }

    .feature{
        text-align:left;
    }

    .differentials-content h2{
        font-size:2.2rem !important;
        line-height:1.2;
    }

    .journey-timeline{
        grid-template-columns:1fr;
        gap:35px;
    }

    .journey-timeline::before{
        display:none;
    }

    .journey-step{
        text-align:center;
    }

    .trust-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .trust-card{
        min-height:auto;
        padding:35px 25px;
    }

    .section-title h2{
        font-size:2.2rem;
        line-height:1.2;
    }

    .about-cards{
        grid-template-columns:1fr;
        gap:24px;
    }

    .about-card{
        padding:35px 25px;
    }

    .areas-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .area-card{
        padding:30px 25px;
    }

    .resource-card{
        width:100%;
        max-width:100%;
    }

    .hero-content{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .hero p{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    header nav{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#FFFFFF;
        box-shadow:0 12px 25px rgba(0,0,0,.10);
    }

    header nav.active{
        display:block;
    }

    header nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:20px 4%;
    }

    header nav ul li{
        width:100%;
    }

    header nav ul li a{
        display:block;
        width:100%;
        padding:14px 0;
    }

}

@media (max-width:576px){

}

/*==================================================
PÁGINA PESQUISA CIENTÍFICA
==================================================*/

.hero-page{

    padding:140px 0 90px;

    background:linear-gradient(
        135deg,
        #f7f9ff 0%,
        #ffffff 100%
    );

}

.hero-page-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    background:rgba(89,70,255,.10);

    color:var(--primary);

    border-radius:50px;

    font-weight:700;

    margin-bottom:22px;

}

.hero-page-content h1{

    font-size:4rem;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:36px;

}

.hero-page-content p{

    font-size:1.22rem;

    line-height:2;

    color:#555;

    margin-bottom:45px;

}

.hero-page-image img{

    width:100%;
    max-width:560px;
    display:block;
    margin:25px auto;

}

/* ===================================================
PESQUISA CIENTÍFICA
=================================================== */

.research-concept{

    padding:100px 0;

    background:#ffffff;

}

.research-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;

}

.research-text .section-tag{

    display:inline-block;

    background:#eef4ff;

    color:var(--primary);

    padding:8px 18px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:18px;

}

.research-text h2{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:35px;

}

.research-text p{

    margin-bottom:26px;

    font-size:1.18rem;

    line-height:2;

    color:#555;

}

.research-image img{

    width:100%;

    display:block;

}

/* ===================================================
MÓDULO 06.3
OS TRÊS PILARES
=================================================== */

.pillars-section{

    padding:100px 0;

    background:#f8fbff;

}

.pillars-section .section-title{

    max-width:900px;

    margin:0 auto 60px;

    text-align:center;

}

.pillars-section h2{

    margin:18px 0;

}

.pillars-section p{

    font-size:1.1rem;

    font-size:1.05rem;
line-height:1.9;

    color:#555;

}

.pillars-section small{

    display:block;

    margin-top:20px;

    color:#777;

    font-style:italic;

}

.pillars-diagram{

    text-align:center;

}

.pillars-diagram img{

    max-width:850px;

    width:100%;

}

/* ==========================
MODELO NEOPESQUISA
========================== */

.neo-model{

    padding:90px 0;

    background:#fff;

}

.neo-model-image{

    margin-top:50px;

    text-align:center;

}

.neo-model-image img{

    width:100%;

    max-width:950px;

}

/* ==================================================
FUNDAMENTOS DA PESQUISA
================================================== */

.research-foundation{

    padding:100px 0;

    background:#ffffff;

}

.research-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.research-card{

    background:#fff;

    padding:35px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.3s;

}

.research-card:hover{

    transform:translateY(-8px);

}

.research-icon{

    font-size:52px;

    margin-bottom:20px;

}

.research-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.research-card p{

    font-size:1.05rem;
line-height:1.9;

    color:#555;

}

.section-reference{

    margin-top:60px;

    padding:25px;

    background:#f7f9fc;

    border-left:4px solid var(--primary);

    border-radius:10px;

    font-size:.95rem;

   font-size:1.05rem;
line-height:1.9;

    color:#555;

}

/* ==================================================
COMO NASCE UMA PESQUISA
================================================== */

.research-process{

    padding:100px 0;

    background:#f8fafc;

}

.process-line{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-top:70px;

}

.process-line::before{

    content:"";

    position:absolute;

    top:42px;

    left:8%;

    right:8%;

    height:4px;

    background:linear-gradient(90deg,#4f46e5,#7c3aed);

    z-index:1;

    border-radius:50px;

}

.process-item{

    position:relative;

    flex:1;

    text-align:center;

    z-index:2;

}

.process-circle{

    width:84px;

    height:84px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#ffffff;

    border:5px solid var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.process-item h3{

    margin-bottom:12px;

    color:var(--primary);

    font-size:1.1rem;

}

.process-item p{

    max-width:180px;

    margin:0 auto;

    line-height:1.7;

    color:#555;

    font-size:.95rem;

}

/* ===================================================
GUIA METODOLÓGICO
=================================================== */

.research-guide{

    padding:100px 0;

    background:#f8faff;

}

.guide-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:80px;

}
.problema-tema-grid .guide-card:nth-child(4){
    grid-column:2;
}
.guide-grid-6{

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;

}
.procedimentos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

@media (max-width:992px){
    .procedimentos-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .procedimentos-grid{
        grid-template-columns:1fr;
    }
}
/* Hero exclusivo - Procedimentos Metodológicos */

@media (max-width:768px){

    .hero-procedimentos h1{
        font-size:3rem;
        line-height:1.15;
    }

    .hero-procedimentos p{
        max-width:100%;
        font-size:1.1rem;
        line-height:1.8;
    }

}
.guide-card{

    background:#fff;

    border-radius:20px;

    padding:35px 30px;

    text-align:center;

    transition:.3s;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    min-height:260px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}
.guide-card{

    text-decoration:none;

    color:inherit;

}
.objetivos-qualidade .guide-card {
    min-height: 0;
}
/* ===== ETAPA 3 - OBJETIVOS ESPECÍFICOS ===== */

.objetivos-qualidade .guide-grid.guide-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.objetivos-qualidade .guide-grid-2 .guide-card {
    width: 100%;
    min-height: 220px;
    height: 100%;
    padding: 28px 24px;
}
.guide-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}
.guide-card:hover{

    text-decoration:none;

}
.guide-icon{

    margin-bottom:18px;

}

.guide-icon svg{

    width:42px;

    height:42px;

}

.guide-card h3{

    margin-bottom:12px;

    font-size:1.45rem;

}

.guide-card p{

    font-size:1rem;

    line-height:1.7;

    color:#475569;

    margin-top:8px;

}

.table-responsive{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.table-responsive .method-table{
    min-width:800px;
}

.comparison-table{

    width:100%;

    border-collapse:collapse;

    margin-top:2rem;

}

.comparison-table th,
.comparison-table td{

    padding:16px;

    border:1px solid #e5e7eb;

    text-align:left;

}

.comparison-table th{

    background:#f8fafc;

    font-weight:700;

}

.comparison-table tr:nth-child(even){

    background:#fafafa;

}
/* =====================================================
   CONTINUIDADE DA APRENDIZAGEM
===================================================== */

.learning-next{
    width:100%;
    padding:90px 0;
    background:#F8FAFC;
    text-align:center;

}

.learning-next-content{

    max-width:760px;
    margin:0 auto;

}

.learning-next-content span{

    display:inline-block;
    padding:8px 18px;
    background:#EEF2FF;
    color:var(--secondary);
    border-radius:30px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;

}

.learning-next-content h2{

    margin-bottom:25px;

}

.learning-next-content p{

    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:45px;

}

.learning-next-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}
.learning-references{

    margin-top:55px;
    margin-bottom:55px;

}

.learning-references h3{

    margin-bottom:25px;
    text-align:center;
    color:var(--primary);

}

.learning-references ul{

    margin:0;
    padding-left:25px;

}

.learning-references li{

    margin-bottom:18px;
    line-height:2;

}
/* =====================================================
   CORREÇÃO RESPONSIVA - HERO PÁGINAS INTERNAS
===================================================== */

@media (max-width:768px){

    .hero-page{
        padding:60px 0;
    }

    .hero-page-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .hero-page-content h1{
        font-size:1.8rem;
        line-height:1.2;
    }

    .hero-page-content p{
        font-size:1rem;
        line-height:1.7;
    }

    .hero-page-image{
        display:none;
    }

}
/* =====================================================
   OUTROS PROCEDIMENTOS METODOLÓGICOS
   (Exclusivo da página procedimentos-pesquisa.html)
===================================================== */

.outros-procedimentos-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(320px, 420px));
    justify-content:center;
    gap:2rem;
    margin-top:3rem;
}

@media (max-width:768px){

    .outros-procedimentos-grid{
        grid-template-columns:1fr;
    }

}
body{
    overflow-x:hidden;
}
/* =====================================================
   TABELA COMPARATIVA - PROCEDIMENTOS METODOLÓGICOS
===================================================== */

.table-responsive{
    width:100%;
    overflow-x:auto;
    margin-top:40px;
}

.comparison-table{
    width:100%;
    min-width:900px;
    border-collapse:separate;
    border-spacing:0;
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.comparison-table thead th{

    background:var(--primary);
    color:#fff;
    padding:18px 20px;
    text-align:left;
    font-size:1rem;
    font-weight:600;
}

.comparison-table tbody td{

    padding:18px 20px;
    border-bottom:1px solid #eceff3;
    vertical-align:top;
    line-height:1.7;
}

.comparison-table tbody tr:nth-child(even){

    background:#f8fafc;
}

.comparison-table tbody tr:hover{

    background:#eef5ff;
    transition:.25s;
}

.comparison-table tbody td:first-child{

    font-weight:600;
    color:var(--primary);
    width:22%;
}
.card-tag{
    display:inline-block;
    margin:0 0 18px 0;
    padding:6px 12px;
    background:#eef2ff;
    color:#4f46e5;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    border-radius:999px;
}
.guide-card-flow{
    justify-content:flex-start;
}
.guide-grid-flow{
    margin-top:35px;
    justify-items:center;
}

.guide-card-flow{
    max-width:320px;
    justify-content:flex-start;
}
/* ===== ETAPA 3 - ROTEIRO DE REFLEXÃO ===== */

.reflection-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
    justify-items:center;
}

.reflection-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:18px;
    padding:28px;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.reflection-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.reflection-card-center{
    grid-column:1 / -1;
    justify-self:center;
    max-width:520px;
}

.reflection-tag{
    display:inline-block;
    margin-bottom:15px;
    padding:6px 12px;
    background:#eef2ff;
    color:#4f46e5;
    border-radius:999px;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.reflection-card h3{
    margin-bottom:12px;
}

.reflection-card p{
    margin:0;
    font-size:1.05rem;
    font-weight:600;
    line-height:1.5;
    color:#1f2937;
}
/* ===== DESTAQUE NEOPESQUISA ===== */

.highlight-box{

    max-width:900px;

    margin:40px auto 0;

    padding:30px;

    background:#eef2ff;

    border-left:6px solid #4f46e5;

    border-radius:18px;

}

.highlight-box h3{

    margin-bottom:15px;

    color:#1e3a8a;

}

.highlight-box p{

    margin:0;

    line-height:1.7;

}
/* ===== ETAPA 4 - FLUXO DO PROBLEMA DE PESQUISA ===== */

.problem-flow{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    margin-top:40px;
}

.problem-card{
    width:100%;
    max-width:620px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.problem-card h3{
    margin:15px 0 0;
    font-size:1.15rem;
    line-height:1.55;
}

.problem-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(0,0,0,.08);

}

.problem-card h3{

    margin:12px 0 0;

    line-height:1.6;

}

.problem-arrow{

    display:flex;

    justify-content:center;

    align-items:center;

    color:#4f46e5;

}

.problem-arrow svg{

    width:34px;

    height:34px;

}
.problem-flow{
    margin-bottom:70px;
}
/* ===== ETAPA 4 - FLUXO PROBLEMA E OBJETIVO GERAL ===== */

.objetivos-fluxo .guide-card{
    width:100%;
    max-width:620px;
    min-height:0;
    padding:28px 30px;
}
.section-subtitle{

    max-width:900px;

    margin:60px auto 35px;

    text-align:center;

}
.comparison-table td:first-child{

    width:22%;

    font-size:1.05rem;

    font-weight:700;

    color:#1e3a8a;

}
.section-subtitle h3{

    margin-bottom:18px;

    font-size:2rem;

    color:#0f3d6e;

}

.section-subtitle p{

    max-width:850px;

    margin:0 auto;

    line-height:1.8;

    color:#4b5563;

}
.section-subtitle p{

    max-width:850px;

    margin:0 auto;

    line-height:1.8;

    color:#4b5563;

}

/* ===== INFORMAÇÕES DA PÁGINA ===== */

.page-info{

    margin-top:35px;

    padding-top:20px;

    border-top:1px solid #e5e7eb;

}

.page-info h3{

    margin-bottom:18px;

    font-size:1.35rem;

    color:#1f2937;

}

.page-info p{

    margin-bottom:12px;

    line-height:1.8;

    color:#6b7280;

}

.page-info p:last-child{

    margin-bottom:0;

}
.referencias-utilizadas p{
    margin-bottom:18px;
    line-height:1.7;
}

.referencias-utilizadas p:last-child{
    margin-bottom:0;
}
/* ===== RESPONSIVO - ETAPA 5 (Problema de Pesquisa) ===== */

@media (max-width:768px){

    .reflection-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .reflection-card{
        max-width:100%;
        padding:24px;
    }

    .reflection-card-center{
        grid-column:auto;
        justify-self:stretch;
        max-width:100%;
    }

}
/* ===========================
   CHECKLIST DE VALIDAÇÃO
=========================== */

.validation-checklist{

    max-width:700px;
    margin:50px auto 0;
    background:#fff;
    border-radius:20px;
    padding:35px 45px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.validation-checklist .card-tag{

    display:inline-block;
    margin-bottom:25px;

}

.validation-checklist ul{

    list-style:none;
    padding:0;
    margin:0;

}

.validation-checklist li{

    font-size:1.05rem;
    line-height:1.9;
    color:var(--text-color);

}
/*==================================================*
* ETAPA 3 - OBJETIVOS ESPECÍFICOS - RESPONSIVO *
*==================================================*/

@media (max-width:991px){

    .objetivos-qualidade .guide-grid.guide-grid-2{
        display:grid;
        grid-template-columns:1fr !important;
        gap:20px;
        margin-top:30px;
    }

    .objetivos-qualidade .guide-grid.guide-grid-2 .guide-card{
        width:100%;
        max-width:100%;
        min-height:0;
        height:auto;
        padding:28px 24px;
    }

}
/* ===== ETAPA 1 - FLUXO DOS OBJETIVOS ===== */

.problem-flow .problem-card{
    width:100%;
    max-width:620px !important;
    min-height:0 !important;
    padding:28px 30px !important;
    text-align:center;
}

.problem-flow .problem-card h3{
    margin:15px 0 0 !important;
    font-size:1.15rem;
    line-height:1.55;
}
/* ===== ETAPA 4 - CENTRALIZAÇÃO DO QUARTO OBJETIVO ===== */

.objetivos-exemplo-grid .guide-card:last-child{
    grid-column:2;
}
.sujeitos-exemplo-grid .guide-card:last-child{
    grid-column:auto;
}
@media (max-width:991px){

    .objetivos-exemplo-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .objetivos-exemplo-grid .guide-card:last-child{
        grid-column:auto;
    }

}
/* ===== REFERÊNCIAS UTILIZADAS ===== */

.referencias-section .section-title{
    margin:30px auto 35px;
}
.referencias-section p{
    margin:0 0 14px;
    line-height:1.6;
}

.referencias-section p:last-child{
    margin-bottom:0;
}
/* ==================================================
   PÁGINA CONTATO
================================================== */

.contact-container{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:50px;
    align-items:start;
    max-width:1000px;
    margin:50px auto 0;
}

.contact-info{
    background:#F8FAFC;
    border-radius:18px;
    padding:35px;
}

.contact-info h3{
    margin-bottom:15px;
}

.contact-info p{
    line-height:1.7;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-item i{
    width:24px;
    height:24px;
    color:var(--secondary);
}

.contact-item div{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.contact-item a{
    color:var(--secondary);
    text-decoration:none;
    font-weight:600;
}

.contact-item a:hover{
    text-decoration:underline;
}


/* FORMULÁRIO */

.contact-form{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:22px;
}

.form-group label{
    font-weight:600;
    color:var(--dark);
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #CBD5E1;
    border-radius:10px;
    font-family:inherit;
    font-size:1rem;
    color:var(--dark);
    background:#ffffff;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.form-group textarea{
    resize:vertical;
    min-height:150px;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:var(--secondary);
    box-shadow:0 0 0 3px rgba(79,70,229,.10);
}

.contact-form .btn{
    border:none;
    cursor:pointer;
}
