/* ========================================= */
/* --- AJUSTE GLOBAL DE LARGURA (NRs) --- */
/* ========================================= */
/* Deixa o conteúdo mais largo para acompanhar o menu em monitores grandes */
.container { max-width: 1600px !important; }
html, body { overflow-x: hidden; }

/* ========================================= */
/* --- BANNER NRs (HERO) --- */
/* ========================================= */
.nr-hero {
    position: relative;
    height: 45vh;
    min-height: 380px; 
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19480c5?q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.7) 100%);
    z-index: 1;
}

.hero-text-box {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    max-width: 800px;
}

.hero-tag {
    color: var(--paultrab-orange);
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    color: var(--white);
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title .highlight { color: var(--paultrab-orange); }

.hero-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ========================================= */
/* --- BARRA DE BUSCA --- */
/* ========================================= */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -35px; /* Sobe a barra de busca por cima da imagem */
    padding-bottom: 30px;
    /* Degradê para sumir com a linha branca abaixo da foto */
    background: linear-gradient(to bottom, transparent 35px, var(--bg-light) 35px);
}

.search-box {
    background: var(--white);
    border-radius: 8px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

.search-icon {
    color: var(--paultrab-orange);
    font-size: 1.5rem;
    margin-right: 15px;
}

.search-box input {
    width: 100%;
    border: none;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-dark);
    outline: none;
    background: transparent;
}
.search-box input::placeholder { color: var(--text-muted-blog); }

/* ========================================= */
/* --- GRID DE NRs (Estilo Unificado e Premium) --- */
/* ========================================= */
.nr-grid-section { 
    padding-bottom: 80px; 
    background-color: var(--bg-light); 
}

.nr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Voltamos para as 3 colunas elegantes */
    gap: 30px;
}

.nr-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); /* Sombra bem suave */
    border-bottom: 5px solid var(--paultrab-orange); /* A LINHA LARANJA EMBAIXO */
    transition: all 0.3s ease;
    min-height: 180px; 
}

.nr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
}

.nr-content h3 {
    color: var(--navy-dark);
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    transition: color 0.3s;
}

/* O título fica laranja quando passa o mouse */
.nr-card:hover .nr-content h3 { 
    color: var(--paultrab-orange); 
}

.nr-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 90%;
}

/* A SUA SETA (Círculo cinza visível) */
.nr-icon {
    width: 50px; height: 50px;
    background-color: rgba(10, 25, 47, 0.05); /* Cinza suave por padrão */
    color: var(--navy-dark);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

/* A flechinha fica laranja e desliza quando passa o mouse */
.nr-card:hover .nr-icon {
    background-color: var(--paultrab-orange);
    color: var(--navy-dark);
}

/* ========================================= */
/* --- ESTADO VAZIO (SEM RESULTADOS) --- */
/* ========================================= */
.no-results {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 60px 20px; background: var(--white);
    border-radius: 8px; border: 1px dashed var(--border-light); color: var(--text-muted-blog);
}
.no-results i { font-size: 3rem; color: var(--text-muted); margin-bottom: 20px; }
.no-results h3 { font-family: var(--font-title); font-size: 1.5rem; color: var(--navy-dark); margin-bottom: 10px; }

/* ========================================= */
/* --- CTA FINAL (Azul/Laranja) --- */
/* ========================================= */
.about-cta { padding: 80px 0; background: var(--paultrab-orange); color: var(--navy-dark); margin-top: 0 !important; }
.about-cta h2 { font-family: var(--font-title); font-size: 2.8rem; font-weight: 900; margin-bottom: 20px; }
.about-cta p { font-size: 1.2rem; margin-bottom: 35px; opacity: 0.8; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn-solid-large-navy { background: var(--navy-dark); color: #fff; padding: 18px 45px; text-decoration: none; border-radius: 4px; font-weight: 800; display: inline-block; text-transform: uppercase; transition: 0.3s; font-family: var(--font-title);}
.btn-solid-large-navy:hover { background: #112240; transform: translateY(-3px); color: #fff; box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2);}

/* ========================================= */
/* --- RESPONSIVIDADE (MOBILE E TABLET) --- */
/* ========================================= */
@media (max-width: 1024px) {
    .nr-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .nr-hero { padding: 100px 0 40px; height: auto; min-height: 280px; }
    .hero-title { font-size: 1.8rem; margin-bottom: 15px; } 
    .hero-description { font-size: 1rem; }
    
    .search-section { margin-top: -25px; background: linear-gradient(to bottom, transparent 25px, var(--bg-light) 25px); padding-bottom: 20px; }
    .search-box { padding: 5px 15px; }
    .search-box input { font-size: 1rem; }
    
    .nr-grid { grid-template-columns: 1fr; gap: 15px; }
    .nr-card { padding: 25px 20px; min-height: auto; flex-direction: row; }
    .nr-content h3 { font-size: 1.3rem; }
    .nr-content p { font-size: 0.9rem; }
    .nr-icon { width: 40px; height: 40px; font-size: 1rem; margin-left: 10px; } 
    
    .about-cta { padding: 60px 0; }
    .about-cta h2 { font-size: 1.6rem; }
    .about-cta p { font-size: 1rem; }
    .btn-solid-large-navy { padding: 15px 30px; font-size: 0.95rem; width: 100%; text-align: center; }
}