.secretariado-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Montserrat", sans-serif;
}

.page-title {
    text-align: center;
    font-size: 48px;
    color: #001325;
    margin-bottom: 50px;
    font-weight: 700;
}

.secao {
    margin-bottom: 60px;
}

.secao h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #01324a;
    font-weight: 700;
}

/* ===== CARDS ===== */

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

@media (max-width: 600px) {
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }
}

.card-membro {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-membro:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}

.card-membro .info {
    padding: 18px 20px;
}

/* ===== FORMULÁRIOS ===== */

.form-parcerias {
    display: grid;
    grid-template-columns: 1fr; /* AJUSTE CRÍTICO */
    gap: 24px;
    margin-top: 10px;
}

.campo-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.campo-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0b1c2d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.campo-form input,
.campo-form textarea {
    width: 100%;
    box-sizing: border-box; /* GARANTE MESMO TAMANHO */
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d4d9df;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.25s ease;
}

.campo-form textarea {
    resize: none;
}

.campo-form input:focus,
.campo-form textarea:focus {
    outline: none;
    border-color: #1f4fd8;
    box-shadow: 0 0 0 3px rgba(31, 79, 216, 0.15);
    background-color: #ffffff;
}

.form-parcerias button {
    margin-top: 10px;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #0b1c2d, #1f4fd8);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-parcerias button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(31, 79, 216, 0.3);
}

/* ===== BOTÃO CRIAR CONTA ===== */

.btn-cad {
    background: transparent;
    border: 2px solid #1f4fd8;
    color: #1f4fd8;
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-cad:hover {
    background: #1f4fd8;
    color: #ffffff;
}

/* ===== MODAL ===== */

.modal-custom {
    display: none; /* ESSENCIAL */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #001325;
    font-size: 22px;
    font-weight: 700;
}

.modal-content .close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    color: #001325;
}

/* ===== FAQ (mantido) ===== */

.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #032a42;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    font-size: 15px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .secao h2 {
        font-size: 26px;
    }
}