body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    background-color: #f8f9fa;
}

/* Barra Lateral */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #d1e3f8; /* Tom de azul claro da imagem */
    position: fixed;
    padding-top: 20px;
}

.logo {
    text-align: center;
    font-size: 50px;
    color: #1a4a8e;
    margin-bottom: 30px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.sidebar ul li a:hover {
    background-color: #b8d4f4;
}

.sidebar i {
    margin-right: 15px;
    width: 20px;
}

/* Área de Conteúdo */
.content {
    margin-left: 250px;
    padding: 40px;
    width: 100%;
}

header h1 {
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 0.9;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

header h1 span {
    color: #000;
}

.info-section h2 {
    color: #007bff;
    font-size: 1.2rem;
    margin-top: 30px;
}

.link-card {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.blue-icon {
    color: #007bff;
    margin-right: 15px;
}

.link-card a {
    text-decoration: none;
    color: #333;
}

.link-card a:hover {
    text-decoration: underline;
}

.container-pdf {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%; /* Ajuste para a proporção */
}
.container-pdf iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
