﻿.conteudo-faqs h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 10px;
}

.faqs {
    margin-bottom: 10px;
    font-weight: 300;
    color: #333;
}

.faqs .accordion {
    background-color: white;
    cursor: pointer;
    padding: 18px 50px 18px 18px;
    width: 100%;
    border: 1px solid transparent;
    border-bottom-color: #333;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    transition: background-color 0.4s ease, border-color 0.4s ease;
    position: relative;
    margin: 0;
    line-height: 1.5;
}

.faqs .accordion:hover,
.faqs .active {
    background-color: #f7f8f9;
    border: 1px solid #333;
    
}

.faqs .accordion:hover::after {
    color: #333;
}

.faqs .panel {
    padding: 15px 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    font-size: 1rem;
    color: #333;
    border: 1px solid #333;
    border-top: none;
}

.faqs .panel ul {
    margin: 0;
}

.faqs .panel ul li {
    margin: 10px 0;
}

.faqs .accordion::after {
    content: "\f181";
    font-family: 'Material Icons Outlined';
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    color: #888;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

.faqs .accordion.active::after {
    content: "\f182";
    color: #333;
}

.faqs .accordion.no-content{
    cursor: default;
    border: none;
}

.faqs .accordion.no-content::after{
    content: "";
}
.faqs .accordion.no-content:hover{
    background-color: white;
}

















.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 1rem;
}



/* Ícone de Ficheiro */
.file-item > i {
    font-size: 1.7rem;
    min-width: 26px;
}

.file-item .file > p {
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* Link do Ficheiro */
.file-item a {
    text-decoration: none;
    transition: color 0.2s;
}

.file-item a:hover {
    text-decoration: underline;
}

/* Tamanho do Ficheiro */
.file-size {
    color: #666;
    flex-shrink: 0;
    font-size: 0.9rem;
}