.breadcrumb {
    margin-top: 160px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: #888;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2c5e2c;
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-current {
    color: #2c5e2c;
    font-weight: 600;
}

.titulo-relatorio {
    margin-top: 20px;
    padding: 30px 20px 20px;
    text-align: center;
    color: #333;
}

.badge-conformidade {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eaf4ea;
    color: #2c5e2c;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.titulo-relatorio h1 {
    font-size: 2rem;
    margin: 0;
}

.titulo-relatorio h1 span {
    color: #2c5e2c;
}

.relatorio-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.relatorio-text {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    text-align: justify;
    line-height: 1.8;
    color: #444;
}

.relatorio-text p {
    margin-bottom: 20px;
}

.relatorio-text h2 {
    color: #2c5e2c;
    font-size: 1.15rem;
    margin: 28px 0 10px;
    text-align: left;
}

.relatorio-text h2:first-child {
    margin-top: 0;
}

.relatorio-text a {
    color: #2c5e2c;
    font-weight: 600;
    text-decoration: underline;
}

.aviso-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f7f7f5;
    border-left: 4px solid #c9a227;
    border-radius: 8px;
    padding: 18px 20px;
    margin-top: 24px;
    color: #5c5c5c;
}

.aviso-box svg {
    flex-shrink: 0;
    color: #c9a227;
    margin-top: 3px;
}

.aviso-box p {
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
}

.relatorio-images-title {
    text-align: center;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.relatorio-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.relatorio-image-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.relatorio-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.relatorio-tag {
    align-self: flex-start;
    background: #eaf4ea;
    color: #2c5e2c;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.relatorio-image-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #333;
    font-size: 1.2rem;
    align-self: flex-start;
}

.relatorio-image-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 18px;
}

.btn-ver-relatorio {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #2c5e2c;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-ver-relatorio:hover {
    background: #244d24;
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 130px;
        font-size: 0.8rem;
    }

    .titulo-relatorio h1 {
        font-size: 1.5rem;
    }

    .relatorio-text {
        padding: 20px;
    }

    .aviso-box {
        flex-direction: column;
    }
}