/* @import url("/css/fonts.css"); */

:root {
    --verde: #01a00f;
    --verde-ativo: #acfb02;
    --azul-claro: #36a4ff;
    --azul: #0c5ec2;
    --azul-escuro: #183673;
    --cinza: #9ca6ab;
}



body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff !important;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff !important;
    flex-grow: 1;
}

a{
    text-decoration: none;
    color: inherit;
}

.painel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 100px;
    width: 560px;
    height: 100%;
    background: rgb(242, 242, 242);
    background: radial-gradient(
        circle,
        rgba(242, 242, 242, 1) 0%,
        rgba(235, 234, 234, 1) 100%
    );
    border-radius: 40px 0px 40px 0px;
    border: 2px solid #fff;
    margin-bottom: 100px;
}

.painel img {
    width: 360px;
}

.painel p {
    margin-bottom: 0px;
}

.ct-principal {
    display: flex;
    margin-top: 30px;
    max-width: 700px !important;
    justify-content: center;
}

.ct-principal form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ct-menu {
    display: flex;
}

.container1 {
    display: flex;
    width: 90%;
    max-width: 1100px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ct-principal1 {
    margin-top: 30px;
}

.login-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding: 40px;
    width: 100%;
}

.login-form form {
    width: 100%;
}

.titulo {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 28px;
    text-align: center;
    color: #294380;
}

.login-form p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    margin-left: 10%;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #294380;
}

.input-container input {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border: 1px solid #294380;
    border-radius: 4px;
    font-size: 14px;
}

.login-form button {
    width: 80%;
    padding: 10px;
    background-color: #294380;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 15px auto;
}

.login-form button:hover {
    background-color: #1d325b;
}

.forgot-password {
    /* text-align: center; */
    margin-bottom: 10px;
    /* margin-left: 50%; */
}

.forgot-password a {
    color: #2a2a72;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.register {
    text-align: center;
    margin-top: 10px;
}

.register a {
    color: #294380;
    text-decoration: none;
    font-weight: bold;
}

.register a:hover {
    text-decoration: underline;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.image-container1 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.image-container1 img {
    width: 80%;
    height: 110%;
    object-fit: cover;
}

.image-container img {
    width: 120%;
    height: auto;
    object-fit: cover;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-left: 10%;
}

.checkbox-container input {
    width: 14px;
    height: 14px;
}

.aceito {
    display: block;
    font-weight: 600;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.checkbox-container span {
    font-weight: 400;
}

.back-link {
    text-align: center;
    margin-top: 10px;
}

.back-link a {
    color: #294380;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.back-link a:hover {
    text-decoration: underline;
}

.feedback,
.error {
    font-size: 14px;
    margin-left: 10%;
}

.error {
    color: red;
}

.feedback {
    color: green;
    display: none;
}

ul {
    padding-left: 20px;
}

.invalid {
    color: red;
}

.valid {
    color: green;
}

header {
    background-color: var(--azul);
    padding: 15px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1524px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0 !important;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .ct-menu {
        display: flex;
    }

    .image-container {
        display: none;
        /* Esconde a imagem em telas menores */
    }

    .login-form {
        width: 100%;
        padding: 30px;
    }

    .input-container,
    .login-form button {
        width: 100%;
    }

    .login-form label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        margin-left: 0%;
        margin-bottom: -50 !important;
    }

    header {
        display: flex;
        justify-content: space-between;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 30px;
    margin-right: 30px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

nav ul li a:hover {
    text-decoration: underline;
}

.btn {
    border-radius: 10px 0px 10px 0px !important;
}

.btn-verde {
    background-color: var(--verde-ativo) !important;
    color: #0065e1 !important;
    font-weight: bold !important;
}

.btn-azul {
    background-color: var(--azul) !important;
    color: #fff !important;
    font-weight: bold !important;
}

.btn-azul-escuro {
    background-color: var(--azul-claro) !important;
    color: #fff !important;
    font-weight: bold !important;
    border: 1px solid #fff !important;
}

.btn-verde-claro {
    background-color: #01cf11 !important;
    color: #fff !important;
    font-weight: bold !important;
    border: 1px solid #fff !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        margin-top: 0px;
    }
    .logo-somos {
        width: 100% !important;
    }
    .login-form {
        height: 150px;
    }

    .container {
        width: 100%;
        justify-content: space-between;
        box-shadow: none;
    }

    .logo {
        gap: 0px;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        /* Mantém o menu no lado direito */
        width: 50vw;
        height: 100vh;
        background: rgba(23, 60, 123, 0.95);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 20px;
        z-index: 1000;
        transform: translateX(100%);
        /* Esconde o menu fora da tela à direita */
        transition: transform 0.3s ease-in-out;
        /* Adiciona animação */
    }

    /* Quando o menu estiver ativo, ele se move para dentro da tela */
    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        padding-left: 20px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        color: white;
        text-decoration: none;
        font-size: 18px;
        /* Aumenta um pouco o tamanho da fonte */
    }

    .buttons {
        flex-direction: column;
        margin-top: 40px;
        align-items: flex-start;
        /* Alinha os botões à esquerda */
        padding-left: 20px;
    }

    .btn {
        width: auto;
        text-align: center;
    }
}

footer {
    background-color: #183673;
    color: white;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-top: 55px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 40px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.contact-info p {
    font-size: 14px;
    margin: 5px 0;
}

.contact-info i {
    margin-right: 8px;
    color: white;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-footer img {
    height: 40px;
    margin-top: 5px;
}

.image-container img {
    max-width: 100%;
    /* Garante que a imagem não ultrapasse o contêiner */
    height: auto;
    /* Mantém a proporção */
    object-fit: contain;
    /* Ajusta a imagem sem cortá-la */
}

/* .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 40px 0px 40px 0px !important;
    max-width: 400px;
} */

.modal-content .modal-header .modal-title {
    font-family: "NeoSansProBold", sans-serif !important;
    font-size: 20pt;
    text-align: center;
}

.modal-body p {
    font-family: "NeoSansProRegular", sans-serif !important;
    font-size: 14pt;
    text-align: center;
}

.modal-body .modal-mini-title {
    font-family: "NeoSansProRegular", sans-serif !important;
    font-size: 12pt;
    margin: 15px 0;
}

.modal-body .form-check-label {
    font-family: "NeoSansProRegular", sans-serif !important;
    font-size: 13pt;
    color: #706f6f;
}

.opcoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn-opcao {
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.empresa {
    background: #69c;
    color: white;
}

.pessoa-fisica {
    background: #334eaf;
    color: white;
}

.fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.rodape-senha {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

/* .modal-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    margin-top: 20px;
    font-family: "NeoSansProRegular", sans-serif !important;
} */

.custom-toast {
    background-color: #36a4ff !important;
    color: white !important;
}

.cadastros {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.cadastros button {
    margin: 0 !important;
}
body.menu-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    .painel {
        width: 100%;
        padding: 40px 20px;
        margin-bottom: 50px;
    }

    .ct-principal {
        margin-top: 0;
        padding: 0 10px;
        flex-direction: column;
    }

    .grafismo {
        display: none; /* evita quebra com imagem */
    }
}

.bg-azul-claro {
    background-color: var(--azul-claro);
}
.bg-azul {
    background-color: var(--azul);
}
.bg-azul-escuro {
    background-color: var(--azul-escuro);
}
.bg-verde {
    background-color: var(--verde);
}
.bg-verde-ativo {
    background-color: var(--verde-ativo);
}