* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body, html {
    background-color: #fff !important;
}

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

/* Menu Superior */
.top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #C9C9C9;
}

.logo img {
    height: 35px;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    cursor: pointer;
}

.icon img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(0%) saturate(0%) hue-rotate(170deg) brightness(90%) contrast(90%);
}

/* Estilos do perfil do usuário */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    cursor: pointer;
}

.user-greeting {
    color: #1b1b1b;
    font-size: 1rem;
    font-weight: 500;
}

.user-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(7%) sepia(6%) saturate(0%) hue-rotate(180deg) brightness(98%) contrast(98%);
}

.user-profile:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    z-index: 1001;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.dropdown-menu i {
    width: 20px;
    color: #666;
}

/* Menu Lateral */
.sidebar {
    width: 250px;
    background-color: #fff !important;
    color: #333;
    padding: 2rem 0;
    position: fixed;
    height: calc(100vh - 40px);
    top: 40px;
    transition: all 0.3s ease;
    z-index: 999;
    border-right: 1px solid #C9C9C9;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 1rem 2rem;
    transition: background-color 0.3s;
}

.sidebar li:hover {
    background-color: #fff !important;
}

.sidebar li:hover a,
.sidebar li:hover .menu-icon,
.sidebar li:hover i {
    color: #1b1b1b !important;
    filter: brightness(0) saturate(100%) invert(7%) sepia(6%) saturate(0%) hue-rotate(180deg) brightness(98%) contrast(98%) !important;
}

.sidebar li.active {
    border-left: 0px;
    border-top: 1px solid #C9C9C9;
    border-bottom: 1px solid #C9C9C9;
    background-color: #fff;
}

.sidebar.expanded li.active {
    border-left: none;
    border-top: 1px solid #C9C9C9;
    border-bottom: 1px solid #C9C9C9;
    background-color: #fff;
}

.sidebar li {
    padding: 1rem 2rem;
    text-align: left;
}

.sidebar li.active a {
    font-weight: 500;
    color: #1b1b1b !important;
}

.sidebar li.active a .menu-icon,
.sidebar li.active a i {
    color: #1b1b1b !important;
    filter: brightness(0) saturate(100%) invert(7%) sepia(6%) saturate(0%) hue-rotate(180deg) brightness(98%) contrast(98%) !important;
}

.sidebar a {
    color: #727272;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar i {
    width: 20px;
    color: #666;
    font-size: 1.2rem;
}

.menu-icon {
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Centralização de todos os ícones */
.sidebar a span {
    margin-left: 0;
}

/* Conteúdo Principal */
.main-content {
    margin-left: 250px;
    padding: 2rem;
    flex: 1;
    margin-top: 73px;
    background-color: #fff;
}

.content-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-row.full-width {
    margin-bottom: 2rem;
}

.content-row.full-width .content-box {
    width: 100%;
}

.content-row > .content-box:first-child {
    display: flex;
    flex-direction: column;
}

.content-row > .content-box:first-child .btn-consult {
    margin-top: auto;
    align-self: flex-start;
}

.content-box {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    min-height: 200px;
    border: 1px solid #C9C9C9;
}

.card-title {
    font-size: 28px;
    font-weight: 500;
    color: #1b1b1b;
    margin-bottom: 0.3rem;
}

.card-description {
    color: #727272;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-consult {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background-color: #1b1b1b;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 400;
}

.btn-consult:hover {
    background-color: #252525;
}

.btn-consult i {
    font-size: 16px;
    color: #fff;
}

/* Menu Mobile e Botão de Expansão */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.expand-menu {
    display: none;
    position: absolute;
    right: -15px;
    top: 60px;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: #fff;
    color: #fff;
    border: solid 1px #C9C9C9;
    cursor: pointer;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sidebar.expanded .expand-menu img {
    transform: rotate(180deg);
}

/* Media Queries */
@media screen and (max-width: 1500px) {
    .sidebar {
        width: 80px;
        transition: width 0.3s ease;
    }
    .sidebar a span {
        display: none;
    }
    .sidebar li {
        padding: 1rem;
        text-align: left;
    }
    .sidebar li a {
        justify-content: start;
    }
    .sidebar li.active {
        border-left: 0px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        background-color: #fff;
    }
    .sidebar i {
        width: auto;
        font-size: 1.4rem;
    }
    .main-content {
        margin-left: 80px;
        transition: margin-left 0.3s ease;
    }
    .menu-icon {
        margin: 0 auto;
    }
    /* Garantir que todos os ícones fiquem centralizados no modo compacto */
    .sidebar li .menu-icon {
        margin-left: 0;
        margin-right: 0;
    }
    .sidebar-user {
        position: static;
        padding: 1rem;
        min-height: 60px;
        justify-content: center;
    }
    .sidebar-user-avatar {
        width: 36px;
        height: 36px;
        margin: 0;
    }
    .sidebar-user-info,
    .sidebar-user-name,
    .sidebar-user-desc {
        display: none !important;
    }
    
    .expand-menu {
        display: flex;
    }
    
    /* Estilos para o menu expandido */
    .sidebar.expanded {
        width: 250px;
    }
    
    .sidebar.expanded a span {
        display: inline;
    }
    
    .sidebar.expanded li {
        padding: 1rem 2rem;
        text-align: left;
    }

    .sidebar.expanded li a {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .sidebar.expanded i {
        width: 20px;
        font-size: 1.2rem;
    }
    
    .sidebar.expanded .menu-icon {
        margin: 0;
    }
    
    .sidebar.expanded .sidebar-user {
        position: absolute;
        padding: 1rem 1.5rem;
        min-height: 80px;
        justify-content: flex-start;
    }
    
    .sidebar.expanded .sidebar-user-avatar {
        width: 44px;
        height: 44px;
        margin-right: 0rem;
    }
    
    .sidebar.expanded .sidebar-user-info,
    .sidebar.expanded .sidebar-user-name,
    .sidebar.expanded .sidebar-user-desc {
        display: block !important;
    }
    
    .main-content.sidebar-expanded {
        margin-left: 250px;
    }
}

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

    .expand-menu {
        display: none;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 250px;
    }
    
    .user-greeting {
        display: none;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar a span {
        display: inline;
    }

    .sidebar li {
        padding: 1rem 2rem;
        text-align: left;
    }

    .sidebar i {
        width: 20px;
        font-size: 1.2rem;
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
    }

    .top-menu {
        padding: 1rem;
    }

    .menu-right {
        gap: 0.5rem;
    }

    .logo img {
        height: 30px;
    }

    .user-avatar img {
        width: 40px;
        height: 40px;
    }

    .sidebar-user-info,
    .sidebar-user-name,
    .sidebar-user-desc {
        display: block !important;
    }

    .menu-icon {
        margin: 0;
    }

    .content-row,
    .content-row.full-width {
        flex-direction: column !important;
        gap: 1rem;
    }
    .content-box {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 480px) {
    .top-menu {
        padding: 0.5rem;
    }

    .icon {
        font-size: 1rem;
    }

    .content-box {
        padding: 1rem;
        min-height: 150px;
    }
}

@media screen and (max-width: 1170px) {
    .content-row,
    .content-row.full-width {
        flex-direction: column !important;
        gap: 1rem;
    }
    .content-box {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
}

/* Estilos específicos para a página de consulta CNPJ */
.barra-azul {
    display: none;
}

.conteudo {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    background-color: #fff;
}

/* Seções da consulta CNPJ */
.secao, .secao-info, .secao-quadro-socios, .secao-relacionamento-governo, .secao-exposicao-midia, .secao-consultas-certidoes {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #C9C9C9;
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-bottom: 2rem;
}

.secao-info, .secao-quadro-socios, .secao-atividades-secundarias, .secao-relacionamento-governo, .secao-pesquisa-socios, .secao-exposicao-midia, .secao-consultas-certidoes {
    margin-top: 0;
    scroll-margin: 70px;
}

.secao-pesquisa-socios, .secao-atividades-secundarias {
    margin-bottom: 2rem;
}

.secao-exposicao-midia {
    align-items: normal;
}

.titulo {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
    color: #1b1b1b;
    line-height: 1.2;
}

.titulo-secao {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 14px;
}

.titulo-secao h3 {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin: 0;
}


.texto-info, .texto-info-socios, .texto-explicativo {
    width: 45%;
    margin-right: 5%;
    margin-top: 10px;
    color: #727272;
    font-size: 16px;
    line-height: 1.5;
}

.texto-info span, .texto-info-socios span {
    color: #1b1b1b;
    font-weight: 500;
}

.texto-info-socios, .texto-explicativo {
    width: 100%;
    margin-right: 0%;
}

.texto-explicativo {
    margin: 20px 0px 10px 0px;
}

.info-socios {
    padding: 16px 30px 26px 30px;
    border: 1px solid #C9C9C9;
    width: 100%;
    margin-top: 14px;
}

.secao-info {
    display: flex;
    flex-wrap: wrap;
}

.info-basicas {
    display: flex;
    flex-wrap: wrap;
}

.tabela-atividades-secundarias, .tabela-pesquisa-socios {
    border-collapse: collapse;
    color: #727272;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    min-width: 700px;
    width: 100%;
}

.secao-atividades-secundarias, .secao-pesquisa-socios {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #C9C9C9;
}

.tabela-borda {
    border: 1px solid #C9C9C9;
    border-radius: 0;
    margin-top: 20px;
    overflow: hidden;
}

.tabela-wrapper {
    overflow: auto;
}

.tabela-atividades-secundarias tr th, .tabela-pesquisa-socios tr th {
    color: #1b1b1b;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tabela-atividades-secundarias td, .tabela-pesquisa-socios td {
    padding: 16px 20px;
    border-left: 1px solid #C9C9C9;
    min-width: 140px;
    color: #1b1b1b;
}

.tabela-atividades-secundarias th, .tabela-pesquisa-socios th {
    padding: 16px 20px;
    min-width: 140px;
    border-bottom: 1px solid #C9C9C9;
    border-left: 1px solid #C9C9C9;
}

.tabela-pesquisa-socios th, .tabela-pesquisa-socios td {
    min-width: 204px;
}

.tabela-atividades-secundarias td:first-child, .tabela-atividades-secundarias th:first-child, .tabela-pesquisa-socios td:first-child, .tabela-pesquisa-socios th:first-child {
    border-left: none;
}

.tipo-pesquisa-socio {
    border: 1px solid #C9C9C9;
    color: #727272;
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.pesquisa-socios-input {
    margin-top: 30px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.tipo-pesquisa-socio:focus {
    outline: none;
    border-color: #1b1b1b;
}

.tipo-pesquisa-socio:hover {
    border-color: #1b1b1b;
    color: #1b1b1b;
}

.caixa-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-weight: 400;
}

.caixa-input input {
    border: 1px solid #C9C9C9;
    border-radius: 0;
    font-size: 16px;
    padding: 13px 16px;
    color: #1b1b1b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    width: 100%;
    background: #fff;
}

.caixa-input input::placeholder {
    color: #727272;
    font-weight: 400;
}

.caixa-input input:focus {
    outline: none;
    border-color: #1b1b1b;
}

.botao-midia, .botao-baixar {
    background-color: #fff;
    border-radius: 0;
    color: #1b1b1b;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    margin-top: 14px;
    border: 1px solid #C9C9C9;
    padding: 14px 16px;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: all 0.2s;
}

.botao-baixar {
    margin-top: 0px;
    background-color: #1b1b1b;
    color: white;
    border: none;
    padding: 12px 16px;
    transition: all 0.2s;
}

.botao-baixar:hover {
    background-color: #333;
    color: white;
}

.botao-midia:hover {
    border-color: #1b1b1b;
    color: #1b1b1b;
}

button.botao-midia {
    width: 100%;
    text-align: start;
}

.botao-midia img {
    margin-right: 14px;
    height: 22px;
}

.grupo-input {
    display: flex;
    margin-top: 4px;
    gap: 40px;
}

#container {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #C9C9C9;
    border-radius: 0;
    align-self: baseline;
    overflow: hidden;
}

.accordion-header, .accordion-header1 {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    justify-content: space-between;
    cursor: pointer;
    margin: 0px;
    border-collapse: collapse;
    align-items: center;
    border-top: 1px solid #C9C9C9;
    background: #fff;
    transition: background 0.2s, border-color 0.2s;
}

.accordion-header1 {
    border-top: none;
}

.info {
    margin-left: 20px;
}

.info-img {
    height: 17px;
    width: 17px;
}

.info-img-x {
    height: 11px;
    width: 11px;
    margin-right: 3px;
}

.texto-header {
    display: flex;
}

.texto-header img {
    margin-right: 14px;
}

.accordion-body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-top: none;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    border-top: 1px solid #C9C9C9;
}

.accordion-body.active {
    opacity: 1;
    height: auto;
    padding: 24px;
    border-bottom: 1px solid #C9C9C9;
}

.accordion-body.active:last-child {
    border-bottom: none
}

.accordion-body p {
    font-size: 16px;
    margin-top: 10px;
    color: #1b1b1b;
}

.accordion-body img {
    height: 80px;
    width: 80px;
    margin-bottom: 10px;
}

.accordion:has(.active) .seta {
    transform: rotate(180deg);
}

.seta {
    transition: transform .2s linear;
}

.certidoes {
    display: flex;
    width: 100%;
    gap: 30px;
}

/* Links das seções */
.link-secao1, .link-secao2, .link-secao3, .link-secao4, .link-secao5, .link-secao6, .link-secao7, .link-secao8 {
    display: flex;
    width: 50%;
    border: 1px solid #C9C9C9;
    border-bottom: 0px;
    gap: 20px;
    padding: 24px;
    align-items: center;
    color: #1b1b1b;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.link-secao1 {
    border-radius: 0;
}

.link-secao2 {
    border-radius: 0;
    border-left: 0px;
}

.link-secao7 {
    border-radius: 0;
    border-bottom: 1px solid #C9C9C9;
}

.link-secao8 {
    border-radius: 0;
    border-bottom: 1px solid #C9C9C9;
}

.link-secao4, .link-secao6, .link-secao8 {
    border-left: 0px;
}

.link-secao1:hover, .link-secao2:hover, .link-secao3:hover, .link-secao4:hover, .link-secao5:hover, .link-secao6:hover, .link-secao7:hover, .link-secao8:hover {
    text-decoration: underline;
}

@media (max-width: 1038px) {
    .link-secao1, .link-secao2, .link-secao3, .link-secao4, .link-secao5, .link-secao6, .link-secao7, .link-secao8 {
        width: 100%;
    }

    .link-secao1 {
        border-radius: 0;
    }

    .link-secao2 {
        border-radius: 0;
        border-left: 1px solid #C9C9C9;
    }

    .link-secao4, .link-secao6, .link-secao8 {
        border-left: 1px solid #C9C9C9;
    }

    .link-secao7 {
        border-radius: 0;
        border-bottom: 0px;
    }

    .link-secao8 {
        border-radius: 0;
    }
}

.seta {
    height: 13px;
    width: 17px;
    align-items: center;
}

.texto-header {
    align-items: center;
}

.botoes-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.img-link {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

#seta {
    height: 16px;
    width: 16px;
    margin: 0px 4px 0px 4px;
    object-fit: contain;
}

.logo-kts {
    max-width: 150px;
    padding: 40px 0px;
    align-items: start;
}

@media (max-width: 900px) {
    .logo-kts {
        max-width: 125px;
    }

    .conteudo {
        padding: 0px 20px;
    }

    .titulo-secao img {
        height: 26px;
    }

    .texto-info {
        width: 100%;
        margin-right: 0%;
    }

    .pesquisa-socios-input {
        flex-direction: column;
        gap: 10px;
    }

    .tabela-borda {
        margin-top: 16px;
    }

    .grupo-input {
        flex-direction: column;
        gap: 10px;
    }

    .certidoes {
        flex-direction: column;
        gap: 20px;
    }
}

/* Ajustes específicos para a página de consulta CNPJ com menus */
@media screen and (max-width: 768px) {
    .conteudo {
        padding: 0px 0px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    .conteudo {
        padding: 0px 15px;
        margin-bottom: 30px;
    }
}

.sidebar-user {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    min-height: 70px;
}

.sidebar-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1b1b1b;
}

.sidebar-user-desc {
    font-size: 1rem;
    color: #727272;
    margin-top: 0.1rem;
}

@media (max-width: 1024px) {
    .sidebar-user {
        position: static;
        padding: 1rem;
        min-height: 60px;
    }
    .sidebar-user-avatar {
        width: 40px;
        height: 40px;
    }
    .sidebar-user-name {
        font-size: 1rem;
    }
    .sidebar-user-desc {
        font-size: 0.9rem;
    }
}

.sidebar li,
.sidebar li a,
.sidebar li .menu-icon,
.sidebar li i {
    transition: color 0.3s, background 0.3s, filter 0.3s;
}

@media screen and (max-width: 1500px) {
    .sidebar li a {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .sidebar li a {
        justify-content: start;
    }
}

.dropdown-menu.active {
    border: 1px solid #c9c9c9c9;
    margin-top: 16px;
}

/* Estilos específicos para a página Nova Consulta */
.consulta-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
}

.consulta-header {
    text-align: left;
    margin-bottom: 2rem;
}

.consulta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 0.3rem;
}

.consulta-description {
    font-size: 1.1rem;
    color: #727272;
    margin-bottom: 0;
}

.tipo-consulta-section {
    margin-bottom: 2rem;
}

.tipo-buttons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
}

.tipo-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #C9C9C9;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: left;
    gap: 1rem;
}

.tipo-btn:hover {
    border-color: #1b1b1b;
}

.tipo-btn.active {
    border-color: #1b1b1b;
}

.tipo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(79%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(90%) contrast(90%);
}

.tipo-btn.active .tipo-icon {
    filter: brightness(0) saturate(100%) invert(7%) sepia(6%) saturate(0%) hue-rotate(180deg) brightness(98%) contrast(98%);
}

.tipo-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tipo-btn span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 0.5rem;
}

.tipo-btn p {
    font-size: 1rem;
    color: #727272;
    margin: 0;
}

.formulario-container {
    background-color: #fff;
    border: 1px solid #C9C9C9;
    border-radius: 0;
    overflow: hidden;
}

.formulario-box {
    padding: 2rem;
}

.formulario-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 0.5rem;
}

.formulario-description {
    font-size: 1rem;
    color: #727272;
    margin-bottom: 2rem;
}

.consulta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 1rem;
    font-weight: 400;
    color: #1b1b1b;
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 1rem;
    border: 1px solid #C9C9C9;
    border-radius: 0;
    font-size: 1rem;
    color: #1b1b1b;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #1b1b1b;
}

.form-input::placeholder {
    color: #727272;
}

.btn-consultar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #1b1b1b;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.3rem;
}

.btn-consultar:hover {
    background-color: #333;
}

.btn-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Responsividade para Nova Consulta */
@media screen and (max-width: 768px) {
    .consulta-container {
        padding: 0rem;
    }

    .tipo-consulta-section {
        margin-bottom: 1rem;
    }
    
    .consulta-title {
        font-size: 2rem;
    }
    
    .tipo-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem!important;
    }
    
    .tipo-btn {
        min-width: 100%;
        max-width: 300px;
    }
    
    .formulario-box {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .consulta-title {
        font-size: 1.8rem;
    }
    
    .consulta-description {
        font-size: 1rem;
    }
    
    .tipo-btn {
        padding: 1.5rem;
    }
    
    .tipo-icon {
        width: 40px;
        height: 40px;
    }
    
    .tipo-btn span {
        font-size: 1.3rem;
    }
}
