:root {
    --primary-color: #1cbcb0;
    --secondary-color: #157e76;
    --tertiary-color: #19a99e;
    --quarternary-color: #146d66;
    --quinary-color: #e0f7f5;
}

/* Body */
body{
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 50px;
}

.float-button {
	position:fixed;
	bottom:40px;
	right:40px;
    z-index:100;
}

.whatsapp-button:hover {
    text-decoration: none;
    color: white;
}

.whatsapp-button {
    max-width: 300px;
    height: 55px;
    display: flex;
    align-items: center;
    background-color: #25D366;
    padding: 10px 20px 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.profile {
    position: absolute;
    width: 80px;
    height: 80px;
    left: -60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    background-color: white;
}
.icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.whatsapp-text .title {
    font-size: 16px;
    font-weight: bold;
}
.whatsapp-text .subtitle {
    font-size: 14px;
    font-weight: normal;
    color: #e0e0e0;
}

/* Ajuste para garantir que o conteúdo não ultrapasse a largura da tela */
.container-fluid, .navbar, .navbar-collapse, .row {
    max-width: 100%;    
    padding: 0;
    margin: 0;
    box-sizing: border-box; /* Garante que o padding não afete a largura total */
}

/* Barra de navegação */
.container-fluid{
    padding: 10px 0;
}


.img-div{
    background-color: transparent;
    height: 39px;
}

#hamburguerParent{
    border-color: transparent;
}

#hamburguer{
    margin-left: 15px;
}

.navbar-nav {
    background: var(--primary-color);

    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-item {
    text-align: center;
    flex: 1; /* Faz com que cada item ocupe espaço igual */
}

.navbar-nav .nav-link {
    padding: 10px 15px; /* Ajusta o padding para centralizar verticalmente */
    text-align: center;
    display: block; /* Garante que o link seja tratado como um bloco */
}

.navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

.nav-link{
    color: #3D7C85;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 20px;
}

.nav-item{
    width: 1606px;
    height: 56px;
}

#nav-container{
    margin-left: -15px;
}

.nav-link{
    color: white !important;        
}

.nav-link:hover {
    color: #fff !important; /* Cor azul no hover */
    text-decoration: underline; /* Sublinhado no hover */
    transition: color 0.3s ease; /* Transição suave da cor */
}

.btn-consult{
    background: var(--primary-color);
    color: #fff;
}

.btn-now{
    background: var(--primary-color);
    width: auto;
}

.sub-arrow{
    width: 10px;
    margin-top: -26px;
    margin-left: 75px;
}

#logo{
    height: 45px;
    margin-top: -10px;
    margin-left: 54px;
}

.input-group-text {
    background-color: var(--primary-color); /* Usa a cor primária da paleta */
    border-color: var(--primary-color); /* Mantém a borda na mesma cor */
    color: #fff; /* Texto branco para contraste */
}


.e-fab-whatsapp{
    width: 13.13px;
    height: 13.13px;
    margin-right: 12px;
}

/* Mensagem de erro */

.alert-danger{
    margin-top: 80px;
    margin-bottom: -80px;
}

/* Página Inicial Seção MEI */

.body-form{
    font-family: 'Montserrat', sans-serif !important;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container-form {
    max-width: 870px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.container-form input, select{
    background-color: #f7fafc !important;
}

.titulo-declaracao {
    font-weight: 700 !important;
    color: red;
}

h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    color: #2d3748;
    margin-bottom: 20px;
}

h2 {
    color: #4A5568;
    margin-bottom: 10px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 5px;
    font-size: 1.5em;
    font-weight: bold;
}

h3{    
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}


label {
    display: block;    
    color: #4A5568;
    font-weight: bold;
}

input, select, file {        
    border: 1px solid #CBD5E0;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f7fafc;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    border-color: #4299e1;
    outline: none;
}

.progress-bar {
    background-color: #edf2f7;
    border-radius: 20px;
    margin: 20px 0;
    height: 20px;
    width: 100%;
    position: relative;
}

.progress-bar-fill {
    background-color: #38a169;
    height: 100%;
    border-radius: 20px;
    width: 50%; /* Progresso inicial */
    transition: width 0.4s ease;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--secondary-color);
    color: white;
}

button.secondary {
    background-color: #EDF2F7;
    color: #2D3748;
    border: 1px solid #CBD5E0;
}

button.secondary:hover {
    background-color: #E2E8F0;
}

.info {
    text-align: center;
    font-size: 14px;
    color: #718096;
    margin-top: 15px;
}

.important-info {
    background-color: #E6FFFA;
    border-left: 4px solid #38B2AC;
    padding: 20px;
    margin-bottom: 20px;
    color: #2C7A7B;
    border-radius: 8px;
}

.important-info h3 {
    margin-top: 0;
}

.important-info p {
    margin-bottom: 5px;
}

/* Define a cor de fundo para a área de consulta de status */
.bg-custom {
    /*background-color: rgb(255 255 255);
    padding: 20px;
    border-radius: 8px; /* Adiciona bordas arredondadas se desejar */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra para destacar a área */
}

/* Estilo adicional para a tabela, se necessário */
.table {
    background-color: #fff; /* Define a cor de fundo da tabela */
    border-radius: 8px; /* Adiciona bordas arredondadas à tabela */
}

#razao-social{
    font-size: 14px;
}

/* Certifique-se de que os elementos dentro da área de consulta tenham espaçamento adequado */
#consulta-mei-area h2 {
    margin-bottom: 20px;    
}

#consulta-mei-area h3 {
    margin-top: -10px;
    color: rgb(180, 180, 180); 
    font-size: 12px;
}

#consulta-mei-area p {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(38,56,96);
}

#consulta-form {
    margin-bottom: 20px;
}

#consulta-mei-area{
    margin-left: 92px;
}

#resultado-tabela {
    margin-bottom: 20px; /* Ajuste o valor conforme necessário */
}

/* Formulário dados MEI */

.declaracoes-entregues{
    color: forestgreen !important;
}

#loading{
    color: var(--primary-color);  
}

#loadingIndicator{
    color: var(--primary-color);  
}

.invisivel{
    display: none;
}

a {
    cursor: pointer;
}

#label-anos-pendentes{
    font-weight: bold;
    text-align: justify;
}

#regularizar{
    background-color: rgb(31, 185, 172);
    color: white;
    text-align: ce;
}

.card-body{
    padding-top: 0.75rem;
}

.row{
    margin-bottom: 15px;
}

#formSection{
    margin: 25px 0;
}

#formArea{
    margin-bottom: 20px;
}

#formArea, #valueArea h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

#formArea, #valueArea h5{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 bold;    
}

.btn-primary{
    margin: 10px 0; 
    background-color: var(--primary-color);   
    border-color: transparent;
}

.btn-primary:hover{
    border-color: var(--primary-color);  
    background-color: #fff;   
    color: var(--primary-color);   
}


/* Dados de pagamento */

#paySection{
    margin-top: 10px;
}

#cartaoFields{
    display: none;
}

#btnPaySection{
    width: 100%;
}

/* Página de pagamento via pix */

#pixValue{
    font-size: 10px;
    max-width: max-content;
    text-align: center;
}

#copyPixButton {
    border: none; /* Remove a borda preta */
    background-color: #e0e0e0; /* Define a cor de fundo */
    color: #333; /* Define a cor do texto */
    padding: 10px 20px; /* Adiciona espaçamento interno */
    cursor: pointer; /* Muda o cursor para uma mãozinha */
    outline: none; /* Remove a borda ao focar */
    border-radius: 5px; /* Adiciona bordas arredondadas */
  }
  
  #copyPixButton:hover {
    background-color: #d0d0d0; /* Define a cor de fundo ao passar o mouse */
  }

.pix{
    margin-top: 100px;
}

#qrCode{
    display: flex;
    justify-content: space-around;
}

.pending, .approved{
    text-align: center;
}

.pending{
    font-family: 'Montserrat', sans-serif;
    color: orange;
}

.approved{
    display: none;
    color: greenyellow;
}

.pixCopyPaste{
    text-align: center;
}

.credit-card-approved{
    margin-top: 100px;
}

.card-approved{
    text-align: center;
}

.card-approved i{
    font-size: 44px;
    color: greenyellow;
}

/* Rodapé */

#subscribe{
    background: var(--tertiary-color);
    padding: 20px 10px;
    align-items: center;
}
.subscribe-items{
    margin-bottom: 0px;
}
.subscribe-text{
    text-align: center;
}

.subscribe-text{
    color: #fff;
}

#email-input{
    border-radius: 20px;
    display: inline;
    width: 60%;
}

#btn-subscribe {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    
    align-items: center; /* Centraliza o conteúdo verticalmente */
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
    width: 30%;
    height: 50px;
    font-size: 20px;
    text-align: center;
}

#btn-subscribe:hover{
    background-color: #fff;
    color: var(--primary-color);
}

/* Itens no rodapé */

.img-group{

}

#logoFooter{
    width: 260px;
    height: auto;
}
.footer-items{
    background-color: #ffffff;

    padding: 20px 10px;
}

.list li{
    font-size: 18px;
    font-weight: 500;
}

.list-title{
    font-size: 21px;
    color: var(--tertiary-color);
}

#about{
    height: 353px;    
}

.about-list{
    padding-left: 0;
    margin-top: -20px;
}

.about-list li{
    list-style-type: none;
    margin-bottom: -20px;
}

.about-list li::before{
    padding-left: 0;
    content: "\2022";
    color: var(--tertiary-color);
    font-size: 36px; 
    margin-right: 10px;
    margin-bottom: -10px;
}

.about-list a {
    color: #5f5f5f; /* Cinza quase preto */
    text-decoration: none; /* Remove o sublinhado, se necessário */
}

.about-list a:hover {
    color: #282828; /* Preto ou outra cor desejada no hover */
    text-decoration: underline; /* Adiciona sublinhado no hover, se desejar */
}

#contact-list{
    list-style: none;
    padding-left: 0px;
}

#contact-list i{
    color: var(--tertiary-color);
}

/* Copy */

#copy-area{
    margin-top: -14px;
    background-color: #ffffff;
}


#copy-area .container{
    padding: 10px 0;
    text-align: center;
}

#copy-area .container p{    
    margin-bottom: 0;
    color: #000;
}

.copy-text{
    color: #8D8E90 !important;
}


/* Email template */

.header-email{
    height: 50px;
    color: white;
    text-align: center;
    background-color: rgb(4, 182, 168);
}
.header-email h2{
    color: white;
}

.text-email p{
    color: rgb(4, 182, 168);
}

.ano2023, .ano2022, .ano2021, .ano2020, .ano2019{
    display: none;
}


#data-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}

#about-area{
    margin-top: 8rem;
}

#about-area h1 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;    
}

#about-area p{
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 21px;  
}

.text-about{
    margin-left: -45px;
}

.main-text h1{
    font-family: 'Montserrat', sans-serif;;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 40px;
}

.main-text p{
    font-family: 'Montserrat', sans-serif;;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 40px;
}


#services-area{
    margin-top: 10rem;
}

#services-area h2 {
    color: var(--primary-color);;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;    
}


.servicesText{
    font-family:'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 100;
    color: white !important;
}

.services-card{
    height: 30vh;

    background-color: rgb(31, 194, 212);
}

.service-card-title{
    font-size: 26px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: white !important;
}

.services h1{
    color: var(--primary-color);;
    font-size: 20px;;
}

.services p{
    color: rgb(87, 143, 145);
    font-size: 17px !important;
    margin-left: 55px;
}

#calendar{
    height: 100px;
}

#wallet{
    height: 100px;
}

#paper{
    height: 104px;
}

#btn-services{
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    width: 60%;
}

#btn-services:hover{
    background-color: var(--secondary-color);
    color: white;
}

.declaracao-services{
    padding: 22px 0px;
    background-color: #f7fdf3;
}

.consulta-services{
    padding: 22px 0px;
    background-color: #ecf8e5;
}

.parcelamento-services{
    padding: 22px 0px;
    background-color: #f7fdf3;
}

/* Trajetória */

#trajetoria-area{
    margin-top: 70px;
}

#trajetoria{
    height: 130px;
    color: var(--primary-color);
}

#trajetoria-area p{
    font-size: 25px;
    color: #347571;
}



/* Responsivo */

@media(max-width: 767.98px){

    .container-fluid, .navbar, .navbar-collapse, .row {
        overflow-x: hidden;
    }

    #data-area{
        background-image: none !important;
    }

    #logo{
        height: 34.47px;
        margin-bottom: 12px;
        margin-left: 0px; 
    }

    #search-input{
        font-size: 11px;
    }

    #consulta-mei-area{
        margin-left: 101px;
    }

    .main-text p{
        font-size: 24px;
    }

    #btn-subscribe{
        height: 35px;
        font-size: 13px;
    }

    .text-about {
        margin-left: 0px;
    }

    #about-area p {        
        font-size: 15px;
    }

    .services p {
        margin-left: 0px;
    }
}

@media(max-width: 1200px) {
    #about {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #dataForm label{
        font-size: 12px;
    }
}

/* Para dispositivos móveis - Expansão vertical do menu */
@media (max-width: 992px) {  /* 992px é o ponto de corte padrão do Bootstrap para telas grandes */
    .navbar-expand-lg .navbar-nav {        
        flex-direction: column;
        width: 100%;
    }

    .navbar-nav .nav-item {
        text-align: center;  /* Centraliza o texto dos itens */
        width: 100%;         /* Cada item ocupa 100% da largura disponível */
    }

    .navbar-nav .nav-link {
        padding: 10px;       /* Ajusta o padding para manter espaçamento vertical adequado */
        display: block;
    }
}

@media (max-width: 767px) { /* Ajuste para dispositivos móveis */

    #resultado-tabela{
        padding: 15px; 
    }
}

@media (max-width: 480px) {
    .float-button {
        bottom: 30px;
        right: 20px;
    }
    
    .whatsapp-button {
        max-width: 250px;
        height: 45px;
        display: flex;
        align-items: center;
        background-color: #25D366;
        padding: 10px 20px 10px 30px;
        border-radius: 10px;
        text-decoration: none;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    .profile {
        width: 60px;
        height: 60px;
        left: -40px;

    }
    .icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }

    .whatsapp-text .title {
        font-size: 12px;
    }
    .whatsapp-text .subtitle {
        font-size: 10px;
    }
}