/* ==========================================================
   CONFIGURAÇÕES DA PÁGINA DE INFORMAÇÕES
========================================================== */

/* Fundo com tom escuro e avermelhado imitando a referência */
body.server-page {
    /* Pode usar o seu fundo normal escurecido com um tom vinho, ou uma cor sólida */
    background-color: #3b1c1c; 
    background-image: linear-gradient(to bottom, rgba(59, 28, 28, 0.9), rgba(20, 5, 5, 0.95)), url('../img/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow-y: auto; /* Permite rolar a página normalmente */
}

/* Container Principal */
.info-container {
    padding-top: 150px; /* Espaço para não ficar embaixo do header */
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
}

/* ==========================================================
   ESTILOS DO ACCORDION (ABAS)
========================================================== */
.accordion-wrapper {
    width: 100%;
    max-width: 800px; /* Largura igual à da foto */
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

/* Cria os pontinhos no final da linha igual na sua foto */
.accordion-item::before,
.accordion-item::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 3px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
}
.accordion-item::before { left: 0; }
.accordion-item::after { right: 0; }

.accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #fca311;
}

/* Seta (Chevron) animada */
.icon-arrow {
    position: relative;
    width: 12px;
    height: 12px;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accordion-item.active .icon-arrow {
    transform: rotate(225deg); /* Vira a seta para cima quando aberto */
    border-color: #fca311;
}

.accordion-item.active .accordion-header {
    color: #fca311;
}

/* Conteúdo escondido com animação */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 15px 25px 15px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}