/* =========================================================
   SITE UNIFICADO – APBM
   Paleta: verde #2d6b58 · dourado #a8894a · cinza #3a3a3a
   ========================================================= */


/* =========================================================
   FONTES
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Droid+Sans|Oswald');


/* =========================================================
   VARIÁVEIS / PALETA
   ========================================================= */
:root {
    --verde: #2d6b58;
    --verde-escuro: #1e4a3d;
    --verde-claro: #4a9b82;

    --dourado: #a8894a;
    --dourado-escuro: #7a6234;
    --dourado-claro: #c4a96a;

    --preto: #1a1a1a;
    --cinza-escuro: #2d2d2d;
    --cinza-medio: #4a4a4a;
    --cinza-claro: #f2f2f2;
    --cinza-borda: #e0e0e0;

    --branco: #ffffff;
    --cinza-texto: #444444;
}


/* =========================================================
   RESET / BASE
   ========================================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Droid Sans', Arial, sans-serif;
    font-size: 16px;
    color: var(--cinza-texto);
    background: #f9f9f9;
}

.clear {
    clear: both;
}


/* =========================================================
   TIPOGRAFIA
   ========================================================= */
h1,
h2,
h3 {
    font-family: 'Oswald', Arial, sans-serif;
    color: var(--verde-escuro) !important;
    margin-top: 0;
}

.section h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.section h2 {
    font-size: 20px;
    margin-bottom: 15px;
}


/* =========================================================
   LINKS
   ========================================================= */
a {
    color: var(--verde);
    transition: color .3s;
}

a:hover {
    color: var(--verde-escuro);
    text-decoration: none;
}


/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
    border-radius: 4px;
    font-size: 15px;
    padding: 10px 18px;
}

.btn,
.btn-primary,
.btn-success,
.btn-info,
.btn-default {
    background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
    border-color: var(--verde-escuro);
    color: #fff;
    transition: all 0.3s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-success:hover,
.btn-info:hover,
.btn-default:hover {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    border-color: var(--dourado-escuro);
    color: #fff;
}

.btn-outline {
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid var(--verde);
    color: var(--verde);
    background: transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--verde);
    color: #ffffff;
}

.btn-outline-success {
    background: transparent;
    border: 1px solid var(--verde);
    color: var(--verde);
}

.btn-outline-success:hover {
    background: var(--verde);
    color: #fff;
}


/* =========================================================
   UTILITÁRIOS
   ========================================================= */
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.text-white {
    color: #ffffff;
}


/* =========================================================
   SEÇÕES GERAIS
   ========================================================= */
.section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
}

.texto-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}


/* =========================================================
   BACKGROUNDS
   ========================================================= */
.bg-light {
    background: #f5f5f5;
}

.bg-white {
    background: #ffffff;
}

.bg-dark {
    background: #ebebeb;
}

.bg-verde {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde));
}

.bg-preto {
    background: linear-gradient(135deg, var(--preto), var(--cinza-escuro));
}


/* =========================================================
   HEADER
   ========================================================= */
.header {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid var(--cinza-borda);
}

.header h1 {
    font-size: 28px;
}


/* =========================================================
   MENU PRINCIPAL
   ========================================================= */
.section-menu {
    background: linear-gradient(135deg, #1e4a3d 0%, #2d6b58 100%);
    padding: 0 !important;
    margin: 0;
    border-bottom: 3px solid var(--dourado);
}

#cssmenu::before,
#cssmenu::after {
    content: none !important;
}

#cssmenu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
}

#cssmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#cssmenu>ul {
    display: flex;
    align-items: center;
    gap: 22px;
    height: 56px;
}

#cssmenu>ul>li {
    position: relative;
}

#cssmenu>ul>li>a {
    color: #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    padding: 0 6px;
    line-height: 56px;
    display: inline-block;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

#cssmenu>ul>li>a:hover {
    color: #ffffff;
}

#cssmenu>ul>li>a i {
    margin-right: 6px;
    color: var(--verde-claro);
}

#cssmenu>ul>li>a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    transition: width 0.3s ease;
    margin-top: -8px;
}

#cssmenu>ul>li:hover>a::after {
    width: 100%;
}

/* Submenu */
#cssmenu ul ul {
    display: none;
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-top: 3px solid var(--dourado);
}

#cssmenu li:hover>ul {
    display: block;
}

#cssmenu ul ul li a {
    display: block;
    color: var(--preto);
    font-size: 13px;
    padding: 10px 18px;
    font-weight: normal;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

#cssmenu ul ul li a:hover {
    background: var(--cinza-claro);
    color: var(--verde);
    padding-left: 24px;
}

/* Menu mobile (hamburguer) */
.menu-toggle {
    display: none;
    width: 32px;
    height: 24px;
    cursor: pointer;
    position: relative;
    margin: 16px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    #cssmenu {
        display: none;
        width: 100%;
        background: linear-gradient(180deg, #1e4a3d, #2d6b58);
    }

    body.menu-open #cssmenu {
        display: block;
    }

    #cssmenu>ul {
        flex-direction: column;
        gap: 0;
    }

    #cssmenu>ul>li {
        width: 100%;
    }

    #cssmenu>ul>li>a {
        padding: 14px 20px;
        line-height: normal;
        border-top: 1px solid rgba(168, 137, 74, 0.25);
    }

    #cssmenu ul ul {
        display: none;
        position: static;
        transform: none;
        background: rgba(30, 74, 61, 0.15);
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border-top: none;
    }

    #cssmenu li.submenu-open>ul {
        display: block;
    }

    #cssmenu li.submenu-open>ul {
        display: block !important;
    }

    #cssmenu li:hover>ul {
        display: none;
    }

    #cssmenu ul ul li a {
        color: #ffffff;
        padding: 12px 35px;
    }

    #cssmenu ul ul li a:hover {
        background: rgba(30, 74, 61, 0.25);
        color: #ffffff;
        padding-left: 40px;
    }
}


/* =========================================================
   BANNER
   ========================================================= */
.section-banner {
    padding: 30px 0;
}

.section-banner .carousel-inner>.item>img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.carousel-control {
    background: none;
}

.carousel-control span {
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}


/* =========================================================
   TABELAS
   ========================================================= */
.table th {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde));
    color: #fff;
    text-align: center;
}

.table td {
    background: #fff;
    text-align: center;
}

.tabela-inscricoes th,
.tabela-certificados th,
.tabela-downloads th,
.tabela-anuidades th {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde));
    color: #fff;
    font-weight: 600;
}

.tabela-inscricoes td,
.tabela-certificados td,
.tabela-downloads td {
    vertical-align: middle;
}

.pagamentos {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pagamentos form {
    margin: 0;
}


/* =========================================================
   PAGINAÇÃO
   ========================================================= */
.pagination {
    display: inline-flex;
    gap: 6px;
    padding-left: 0;
    margin: 0;
}

.pagination li {
    list-style: none;
}

.pagination li a,
.pagination>li>a {
    display: block;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: var(--preto);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pagination li a:hover,
.pagination>li>a:hover {
    background: var(--cinza-claro);
    border-color: var(--verde);
    color: var(--verde);
}

.pagination li.active a,
.pagination>.active>a {
    background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
    color: #ffffff;
    border-color: var(--verde-escuro);
    font-weight: 600;
}

.pagination li a span {
    font-size: 16px;
}


/* =========================================================
   FORMULÁRIOS
   ========================================================= */
.is-invalid {
    border-color: #d9534f;
}

fieldset {
    background: #ffffff;
    border: 1px solid var(--cinza-borda) !important;
    border-radius: 10px !important;
    overflow: hidden;
    padding: 0 !important;
    margin-bottom: 20px;
}

legend {
    display: none !important;
}

.fieldset-header {
    background: var(--verde-escuro);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--dourado);
}

.fieldset-header span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.fieldset-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dourado);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fieldset-body {
    padding: 22px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--verde-escuro);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.form-control {
    height: 38px;
    border: 1px solid #d0d0d0;
    border-radius: 6px !important;
    font-size: 13px;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 3px rgba(45, 107, 88, 0.12);
    outline: none;
}

.form-control.is-invalid {
    border-color: #d9534f;
    box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}

input[type="file"] {
    border: 1.5px dashed #b0d4c8;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--verde);
    background: #f4faf7;
    width: 100%;
    cursor: pointer;
}

input[type="file"]:hover {
    background: #eaf5f0;
    border-color: var(--verde);
}

fieldset.fieldset-termos .fieldset-body {
    padding: 16px 22px;
    background: #f9f9f9;
}

fieldset.fieldset-termos label {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

fieldset.fieldset-termos input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--verde);
    flex-shrink: 0;
}

fieldset.fieldset-termos a {
    color: var(--dourado-escuro);
    font-weight: 500;
}

.form-alerta-info {
    background: #fef9ec;
    border: 1px solid #e8d5a0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--dourado-escuro);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alerta-info i {
    color: var(--dourado);
    font-size: 15px;
}

.card-form {
    background: #fff;
    border: 1px solid var(--cinza-borda);
    padding: 25px;
    border-radius: 4px;
}

#box-erros {
    border-radius: 8px;
    font-size: 14px;
}

/* Seção formulário */
.section-formulario {
    padding: 40px 0 60px;
    background: #f5f5f5;
}

.section-formulario h1 {
    font-size: 26px;
    color: var(--verde-escuro) !important;
    margin-bottom: 6px;
}

.section-formulario .form-subtitulo {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.btn-cadastro {
    background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-cadastro:hover {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: #ffffff;
}


/* =========================================================
   ANUIDADES
   ========================================================= */
.section-anuidade p {
    margin-bottom: 30px;
}

.well {
    background: #fff;
    border: 1px solid var(--cinza-borda);
    box-shadow: none;
    padding: 30px;
}

.anuidade-card {
    background: #ffffff;
    border: 1px solid var(--cinza-borda);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 25px;
}

.anuidade-card-header {
    background: var(--verde-escuro);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--dourado);
}

.anuidade-card-header h2 {
    font-size: 16px !important;
    font-weight: 500;
    color: #ffffff !important;
    margin: 0;
}

.anuidade-card-header i {
    color: var(--dourado-claro);
    font-size: 16px;
}

.anuidade-card-body {
    padding: 25px;
}

.pricing-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.price-item {
    flex: 1;
    min-width: 90px;
    background: #f4faf7;
    border: 1px solid #b0d4c8;
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.price-label {
    font-size: 12px;
    color: var(--verde-escuro);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-value {
    font-size: 22px;
    font-weight: 600;
    color: var(--verde-escuro);
}

.price-currency {
    font-size: 13px;
    font-weight: 400;
}

.btn-anuidade {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    border-color: var(--dourado-escuro);
    color: #fff;
    font-weight: 500;
    margin-top: 5px;
}

.btn-anuidade:hover {
    background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
    border-color: var(--verde-escuro);
    color: #fff;
}

.lista-vantagens {
    list-style: none;
    padding-left: 0;
}

.lista-vantagens li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.lista-vantagens li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--dourado);
}

.lista-vantagens-nova {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lista-vantagens-nova li {
    font-size: 14px;
    color: var(--cinza-texto);
    line-height: 1.6;
    padding-left: 0;
}

.vantagem-tag {
    display: inline-block;
    background: #f0ebe0;
    color: var(--dourado-escuro);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }

    .price-item {
        min-width: 100%;
    }
}


/* =========================================================
   NOTÍCIAS
   ========================================================= */
.card-noticia {
    background: #ffffff;
    border: 1px solid var(--cinza-borda);
    height: 100%;
}

.card-noticia img {
    width: 100%;
}

.card-body {
    padding: 20px;
}

.card-date {
    font-size: 13px;
    color: #777;
}

.card-noticia h2 {
    font-size: 18px;
    margin: 10px 0;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.noticia-card {
    display: block;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    overflow: hidden;
    transition: all .2s ease;
    color: inherit;
    text-decoration: none;
}

.noticia-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
    border-color: var(--verde);
}

.noticia-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.noticia-card .conteudo {
    padding: 15px;
}

.noticia-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    line-height: 1.3;
}

.noticia-card .data {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.noticia-card p {
    font-size: 14px;
    color: #555;
}

.noticia-leitura {
    max-width: 900px;
    margin: 0 auto;
}

.noticia-leitura h1 {
    margin-bottom: 10px;
}

.noticia-leitura .data {
    color: #777;
    margin-bottom: 25px;
}

.noticia-leitura img {
    margin-bottom: 30px;
    border-radius: 6px;
}

.voltar-noticias {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--verde);
    text-decoration: none;
}

.voltar-noticias:hover {
    text-decoration: underline;
}

.section-noticias .pagination {
    margin-top: 20px;
}


/* =========================================================
   EVENTOS
   ========================================================= */
.section-eventos .section-title {
    color: #ffffff !important;
}

.card-evento {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titulo-evento {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.data-evento {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.status-evento {
    margin-bottom: 15px;
}

.status-evento .label {
    font-size: 12px;
    padding: 6px 10px;
}

.eventos-grid {
    margin-bottom: 30px;
}

.evento-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    transition: .25s;
    margin-bottom: 30px;
    color: #333;
}

.evento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    text-decoration: none;
}

.evento-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.evento-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 190px;
}

.evento-body h3 {
    font-size: 17px;
    line-height: 1.3;
    height: 44px;
    overflow: hidden;
    margin-bottom: 4px;
}

.evento-data {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.status {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.status.aberto {
    background: #e8f5f1;
    color: var(--verde-escuro);
    border-left: 4px solid var(--verde);
    border-radius: 0;
}

.status.fechado {
    background: #f0f0f0;
    color: var(--cinza-medio);
    border-left: 4px solid var(--cinza-medio);
    border-radius: 0;
}

.link-saiba {
    margin-top: auto;
    font-weight: 600;
    color: var(--dourado);
}

.voltar {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--verde);
}

.box-evento {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.box-evento.destaque {
    background: #e8f5f1;
    border-left: 4px solid var(--verde);
    border-radius: 0;
}

.paginacao {
    margin-top: 20px;
    text-align: left;
}


/* =========================================================
   CERTIFICADOS
   ========================================================= */
.card-certificado {
    background: #ffffff;
    padding: 25px;
    border-radius: 4px;
}

.card-certificado h2 {
    font-size: 20px;
    margin-bottom: 10px;
}


/* =========================================================
   GALERIA
   ========================================================= */
.section-fotos .row {
    display: block;
}

.section-fotos .col-md-4 {
    margin-bottom: 30px;
}

.album-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--cinza-borda);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: all .25s ease;
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    border-color: var(--verde);
}

.album-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.album-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-body {
    padding: 20px;
}

.album-card h2 {
    font-size: 18px;
}

.album-title {
    height: 72px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--preto);
    text-align: center;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.foto-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.foto-card img:hover {
    transform: scale(1.03);
    opacity: 0.95;
}


/* =========================================================
   DIRETORIA
   ========================================================= */
.card-mandato {
    display: block;
    background: #ffffff;
    border: 1px solid var(--cinza-borda);
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.card-mandato:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--verde);
}

.card-mandato h2 {
    font-size: 24px;
    margin: 10px 0;
}

.mandato-label {
    font-size: 13px;
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ver-mais {
    font-size: 14px;
    color: var(--preto);
}

.section-diretoria .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-membro {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 20px 10px;
    text-align: center;
}

.section-diretoria .col-md-3,
.section-diretoria .col-sm-4,
.section-diretoria .col-xs-6 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.foto-membro {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dourado);
}

.foto-membro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-membro .cargo {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 6px;
}

.card-membro .nome {
    font-size: 16px;
    font-weight: 600;
    color: var(--preto);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .foto-membro {
        width: 130px;
        height: 130px;
    }

    .card-membro .nome {
        font-size: 15px;
    }
}


/* =========================================================
   INFO / INSTITUCIONAL
   ========================================================= */
.info-card {
    background: #ffffff;
    padding: 30px;
    border: 1px solid var(--cinza-borda);
    height: 100%;
}


/* =========================================================
   ÁREA DO ASSOCIADO – MENU LATERAL
   ========================================================= */
.menu-associado {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid var(--cinza-borda);
    overflow: hidden;
    margin-bottom: 30px;
}

.menu-perfil {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde));
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--dourado);
}

.menu-perfil .avatar {
    width: 50px;
    height: 50px;
    background: var(--dourado);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.menu-perfil .perfil-info strong {
    display: block;
    font-size: 15px;
}

.menu-perfil .perfil-info span {
    font-size: 13px;
    opacity: 0.9;
}

.menu-lista {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.menu-lista li {
    padding: 0;
}

.menu-titulo {
    padding: 10px 20px !important;
    font-size: 12px;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
}

.menu-lista a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

.menu-lista a i {
    width: 18px;
    text-align: center;
    color: var(--verde);
}

.menu-lista a:hover {
    background: var(--cinza-claro);
    color: var(--verde);
}

.menu-divisor {
    height: 1px;
    background: var(--cinza-borda);
    margin: 10px 0;
}

.menu-sair a {
    color: #b00020;
    font-weight: bold;
}

.menu-sair a i {
    color: #b00020;
}

.menu-sair a:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .menu-associado {
        margin-bottom: 20px;
    }
}


/* =========================================================
   ÁREA DO ASSOCIADO – DASHBOARD
   ========================================================= */
.section-areaassociado {
    padding-top: 30px;
}

.card-dashboard {
    display: block;
    background: #ffffff;
    border: 1px solid var(--cinza-borda);
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.card-dashboard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--verde);
}

.card-label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.card-number {
    font-size: 32px;
    color: var(--dourado);
    font-weight: 600;
}

@media (max-width: 768px) {
    .card-dashboard {
        padding: 20px;
    }

    .card-number {
        font-size: 26px;
    }
}


/* =========================================================
   INFORMATIVOS / DOWNLOADS / POSTS
   ========================================================= */
.informativo-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

.informativo-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.informativo-texto {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.informativo-bloqueado {
    padding: 30px;
    border-left: 5px solid #f0ad4e;
    border-radius: 0;
}

.informativo-bloqueado h3 {
    margin-top: 0;
}

.lista-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 15px 20px;
    transition: border-color 0.2s;
}

.download-item:hover {
    border-color: var(--verde);
}

.download-info {
    font-size: 14px;
    color: #333;
}

.download-acao {
    white-space: nowrap;
}

.downloads-bloqueado {
    padding: 30px;
    border-left: 5px solid #f0ad4e;
    border-radius: 0;
}

.lista-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 20px 25px;
    transition: border-color 0.2s;
}

.post-card:hover {
    border-color: var(--verde);
}

.post-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-texto {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.post-acoes {
    margin-top: 15px;
}

.post-declaracao h2 {
    font-size: 17px;
    margin-bottom: 5px;
}

.post-declaracao p {
    margin: 0;
}

.form-declaracao {
    display: inline-block;
}


/* =========================================================
   CONTATO
   ========================================================= */
.section-contato {
    padding: 40px 0 60px;
    background: #f5f5f5;
}

.contato-card {
    background: #ffffff;
    border: 1px solid var(--cinza-borda);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 25px;
}

.contato-card-header {
    background: var(--verde-escuro);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--dourado);
}

.contato-card-header h2 {
    font-size: 15px !important;
    font-weight: 500;
    color: #ffffff !important;
    margin: 0;
}

.contato-card-header i {
    color: var(--dourado-claro);
    font-size: 15px;
}

.contato-card-body {
    padding: 24px;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contato-info-item:last-of-type {
    border-bottom: none;
}

.contato-info-icon {
    width: 36px;
    height: 36px;
    background: #e8f5f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--verde);
    font-size: 15px;
}

.contato-info-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--verde-escuro);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contato-info-val {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.contato-mapa {
    margin-top: 18px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(168, 137, 74, 0.3);
}

.contato-mapa iframe {
    display: block;
}

.btn-contato {
    background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 24px;
    border-radius: 7px;
    margin-top: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-contato:hover {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: #ffffff;
}


/* =========================================================
   RODAPÉ
   ========================================================= */
.footer {
    background: linear-gradient(135deg, #1e4a3d 0%, #2d6b58 100%);
    border-top: 3px solid var(--dourado);
    padding: 50px 0 30px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.7;
}

.footer h4 {
    font-family: 'Oswald', Arial, sans-serif;
    color: #ffffff !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dourado);
    display: inline-block;
}

.footer p {
    color: #bbbbbb;
    margin-bottom: 12px;
}

.footer strong {
    color: #ffffff;
}

.footer a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--dourado-claro);
    text-decoration: none;
}

.footer-col {
    margin-bottom: 30px;
}

.footer .google-maps {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid rgba(168, 137, 74, 0.4);
}

.footer .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.footer iframe {
    border-radius: 6px;
    border: 2px solid rgba(168, 137, 74, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #888888;
}

.direitos {
    background: #163830;
    border-top: 1px solid rgba(168, 137, 74, 0.3);
    padding: 15px 0;
    text-align: center;
}

.direitos p {
    margin: 0;
    font-size: 13px;
    color: #888888;
}

.direitos a {
    color: #cccccc;
    text-decoration: none;
}

.direitos a:hover {
    color: var(--dourado-claro);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 35px 0 20px;
    }

    .footer-col {
        margin-bottom: 35px;
    }
}


/* =========================================================
   INSCRIÇÃO EM EVENTO
   ========================================================= */

/* Card de info do evento no topo */
.inscricao-evento-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f4faf7;
    border: 1px solid #b0d4c8;
    border-left: 5px solid var(--verde);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.inscricao-evento-icon {
    width: 42px;
    height: 42px;
    background: var(--verde-escuro);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dourado-claro);
    font-size: 18px;
}

.inscricao-evento-titulo {
    font-size: 17px;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 4px;
}

.inscricao-evento-data {
    font-size: 13px;
    color: #666;
}

.inscricao-evento-data i {
    margin-right: 5px;
    color: var(--dourado);
}

/* Opções de preço estilizadas */
.inscricao-precos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inscricao-preco-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f9f9f9;
    border: 1px solid var(--cinza-borda);
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: normal;
    margin: 0;
}

.inscricao-preco-item:hover {
    border-color: var(--verde);
    background: #f4faf7;
}

.inscricao-preco-item.selected {
    border-color: var(--verde);
    background: #f4faf7;
    border-left: 4px solid var(--verde);
    border-radius: 0 8px 8px 0;
}

.inscricao-preco-item input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--verde);
    flex-shrink: 0;
    border: none;
    background: transparent;
}

.inscricao-preco-desc {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.inscricao-preco-valor {
    font-size: 16px;
    font-weight: 600;
    color: var(--verde-escuro);
    white-space: nowrap;
}

.inscricao-preco-item.selected .inscricao-preco-valor {
    color: var(--verde);
}

@media (max-width: 768px) {
    .inscricao-evento-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .inscricao-preco-item {
        flex-wrap: wrap;
    }

    .inscricao-preco-valor {
        width: 100%;
        text-align: right;
    }
}


/* =========================================================
   MEUS DADOS
   ========================================================= */
.section-meusdados {
    padding: 40px 0 60px;
    background: #f5f5f5;
}

.meusdados-acoes {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-meusdados-voltar {
    background: transparent;
    border: 1px solid var(--cinza-borda);
    color: var(--cinza-medio);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-meusdados-voltar:hover {
    background: var(--cinza-claro);
    border-color: var(--cinza-medio);
    color: var(--preto);
}