/* MENU */

	
/* TÍTULO */

.titulo{

text-align:center;

color:white;

margin-top:80px;

font-size:28px;

font-weight:bold;

}

/* CARDS */

.container{

width:100%;
max-width:1100px;

margin:auto;
margin-top:40px;

display:flex;
flex-direction:column;

gap:15px;

}

.card{

background:#e8e8e8;

border-radius:50px;

padding:25px 40px;

font-size:22px;

font-weight:bold;

box-shadow:0 5px 15px rgba(0,0,0,0.1);

}

/* RESPONSIVO */

@media(max-width:768px){

.menu-center{

flex-wrap:wrap;
justify-content:center;

}

.card{

font-size:18px;
padding:20px;

}

}
	/* ===== REMOVER BARRA GOOGLE ===== */

.goog-te-banner-frame {
display:none !important;
}

.skiptranslate iframe {
display:none !important;
}

.goog-logo-link {
display:none !important;
}

.goog-te-gadget{
font-size:0px !important;
}

.modal-login {
    width: 100%;
    max-width: 420px;
    position: relative;
    margin: 8% auto;
    padding: 25px;
    border-radius: 14px;
    background: linear-gradient(#ffffff, #d7d7d7);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.modal-login h2 {
    margin-top: 0;
    text-align: center;
    font-size: 20px;
    color: #333;
}

.campo-login {
    margin-bottom: 15px;
}

.campo-login label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.campo-login input {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.recaptcha-area {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.botao-login {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background: #32a9d8;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.botao-login:hover {
    background: #238eb8;
}

.dados-fbac {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    color: #333;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 70px;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-topo-infoapac {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}


@media (max-width: 600px) {
    .modal-login {
        width: 92%;
        margin: 20% auto;
        padding: 20px;
    }

    .recaptcha-area {
        transform: scale(0.88);
        transform-origin: center;
    }
}

/* =====================================================
   AJUSTE FINAL DO MENU SUPERIOR
   Desktop: botões mais próximos
   Celular: mantém menu recolhido
===================================================== */

/* Remove margem geral dos links dentro do topo */
.topo a {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* DESKTOP */
@media (min-width: 901px) {

    .topo .menu-centro,
    .topo .menu-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        column-gap: 12px !important;
    }

    .topo .menu-centro a,
    .topo .menu-center a,
    .topo .menu-centro button,
    .topo .menu-center button,
    .topo .menu-btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .topo .menu-btn {
        padding: 8px 10px !important;
    }

    .header-logo {
        min-width: 120px !important;
    }
}

/* CELULAR / TABLET */
@media (max-width: 900px) {

    .topo .menu-centro,
    .topo .menu-center {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #e6e6e6;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 8px !important;
        display: none !important;
        box-sizing: border-box;
    }

    .topo .menu-centro.active,
    .topo .menu-center.active {
        display: flex !important;
    }

    .topo .menu-btn {
        width: 100%;
        text-align: left;
        padding: 10px 14px !important;
    }

    .menu-toggle {
        display: block !important;
    }
}