html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ocupa toda a altura da janela */
    display: flex;
    font-family: 'Georama', sans-serif !important;
    flex-direction: column;
    background-color: #ffffff;
    padding-top: 30px;
    overflow: auto !important;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Garante que o wrapper ocupe toda a altura */
}

main {
    flex-grow: 1;
    /* Faz o conteúdo crescer para empurrar o footer */
}

.navbar {
    background-color: #ffffff;
    border-bottom: 3px solid var(--border-navbar);
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 0;
}

/* Estilo do logo */
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    height: 50px;
    width: auto;
    display: inline-block;
}

/* Menu principal */
.navbar .menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Estilo do grupo */
.navbar .menu .group {
    display: flex;
    /* Garantir alinhamento horizontal */
    align-items: center;
    gap: 15px;
    /* Espaço entre os itens */
}

/* Links do menu */
.navbar .menu .group a {
    text-decoration: none;
    color: var(--navbar-text);
    font-size: 16px;
    font-weight: normal;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .menu .group a:hover {
    color: var(--navbar-text-hover);
    transform: scale(1.05);
}

/* Divisória */
.navbar .menu .group span {
    color: #A40169;
    font-size: 16px;
    /* margin: 0 10px; */
}

/* Ícone de lupa */
.navbar .menu .icon-link {
    display: flex;
    align-items: center;
    gap: 0 !important;
    /* Espaço entre texto e ícone */
}

.navbar .menu .icon-link .fa {
    color: #BF9CFF;
    transition: color 0.3s;
}

.navbar .menu .icon-link:hover .fa {
    color: #A60069;
}

/* Footer */
footer {
    background-color: #F2F7FA;
    border-top: 1px solid #820D57;
    padding: 50px 80px;
    color: var(--footer-text);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Estilo para os logos */
.footer-logos {
    display: flex;
    gap: 15px;
    /* Espaço entre os logos */
}

.footer-logo {
    height: 40px;
    width: auto;
}

/* Estilo para os ícones sociais */
.footer-socials {
    display: flex;
    gap: 15px;
    /* Espaço entre os ícones */
}

.footer-socials a {
    color: #820D57;
    /* Cor inicial dos ícones */
    font-size: 25px;
    /* Tamanho dos ícones */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #A40169;
    /* Cor ao passar o mouse */
    transform: scale(1.2);
    /* Aumento no hover */
}

.footer-divider {
    border: none;
    border-top: 2px solid #820D57;
    margin: 20px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--footer-text-title);
    font-size: 16px;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 5px;
}

/* Links no estado normal */
.footer-column ul li a {
    text-decoration: none;
    color: var(--footer-text);
    font-size: 14px;
    display: inline-block;
    /* Importante para garantir o comportamento da escala */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Links no estado hover */
.footer-column ul li a:hover {
    color: #A40169;
    /* Cor ao passar o mouse */
    transform: scale(1.02);
    /* Aumenta 10% o tamanho */
}

/* Responsividade geral */
@media (max-width: 768px) {

    html,
    body {
        padding: 0;
        margin: 0;
        display: block;
    }

    /* .content-wrapper {
        display: block;
    } */
    /* Navbar ajustes */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        /* Centraliza os itens horizontalmente */
        position: relative;
        /* Necessário para o posicionamento do botão hambúrguer */
        padding: 10px 20px;
        background-color: #ffffff;
        border-bottom: 1px solid #f0f0f0;
    }

    .logo {
        text-align: center;
        /* Garante que o logo fique alinhado ao centro */
    }

    .logo img {
        max-height: 50px;
        /* Ajusta o tamanho do logo */
        -o-object-fit: contain;
           object-fit: contain;
    }

    .navbar .menu {
        flex-direction: column;
        margin-left: 0;
        gap: 10px;
    }

    .navbar .menu .group {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .menu .group a {
        font-size: 14px;
    }

    .navbar .menu .group span {
        display: none;
        /* Remover divisória para evitar confusão em telas pequenas */
    }

    /* Footer ajustes */
    footer {
        padding: 20px;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-logos {
        flex-direction: column;
    }

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

    .footer-column {
        min-width: 100%;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column ul li {
        font-size: 14px;
    }

    .footer-socials {
        justify-content: center;
        gap: 10px;
    }
}

.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    /* Escondido fora da tela */
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #820D57;
    gap: 20px;
}

/* Close button */
.side-menu .close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 20px;
    color: #A40169;
    cursor: pointer;
}

/* Links dentro do Side Menu */
.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li a {
    text-decoration: none;
    color: #A40169;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.side-menu ul li a:hover {
    color: #53093A;
    transform: scale(1.05);
}

/* Botão de menu (hambúrguer) */
.menu-toggle {
    display: none;
}

/* Quando o menu está visível */
.side-menu.active {
    left: 0;
    /* Move para dentro da tela */
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        /* Esconde o menu principal no mobile */
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 20px;
        color: #A40169;
        cursor: pointer;
        margin-right: 15px;
        /* Espaçamento entre o botão e o logo */
        display: block;
        /* Mostra o botão hambúrguer */
    }
}

.banner {
    margin-bottom: 3em;
    /* Remove espaçamento */
    padding: 0;
    margin-top: -25px;
}

.banner-procedures-desktop {
    width: 60%; /* A imagem ocupa 80% da largura do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove espaços abaixo da imagem */
    margin: 0 auto; /* Garante que a imagem seja centralizada dentro do contêiner */
}

.banner-procedures-mobile {
    display: none; /* Remove espaços abaixo da imagem */
}

@media (max-width: 768px) {
.banner-procedures-mobile {
    width: 100%; /* A imagem ocupa 80% da largura do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove espaços abaixo da imagem */
    margin: 0 auto; /* Garante que a imagem seja centralizada dentro do contêiner */
}
.banner-procedures-desktop {
    display: none; /* Remove espaços abaixo da imagem */
}
}

.banner img {
    width: 100%;
    /* Garante que o banner ocupe 100% da largura */
    height: auto;
    /* Mantém a proporção */
}

/* Ocultar o banner mobile por padrão */
.banner-mobile {
    display: none;
}

/* Exibir o banner desktop em telas maiores */
.banner-desktop {
    display: block;
}

/* Para telas menores (mobile), inverta a visibilidade */
@media (max-width: 768px) {
    .banner-desktop {
        display: none;
    }

    .banner-mobile {
        display: block;
    }
}

html {
    scroll-behavior: smooth;
}

.section {
    padding: 100px 20px;
    /* Exemplo de espaçamento */
    border-bottom: 1px solid #ccc;
}



/* Estilo do contêiner para alinhar o SVG e o input */
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estilo para o campo de pesquisa */
#search-field {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 30px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #F7F7F7;
    color: #555;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    display: none;
}

/* Campo de pesquisa visível */
#search-field.visible {
    display: block;
}

/* Foco no campo de pesquisa */
#search-field:focus {
    border-color: #be9cff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 5px #be9cff;
    transform: scale(1.02);
}

/* Ícone do SVG com estilo interativo */
#search-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
}

#search-icon:hover {
    transform: scale(1.1);
}




.highlight {
    background-color: #be9cff;
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Estilo do campo de pesquisa */
#search-field {
    position: relative;
}

/* Setas dentro do campo de pesquisa */
.nav-buttons {
    position: absolute;
    top: 51%;
    right: 52px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    color: #880953;
}

.nav-buttons button {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
    border-radius: 80px;
    margin: 0 2px;
}

.word-count {
    margin-left: 10px;
    color: black;
    font-size: 14px;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.navbar-fixed.shadow {
    box-shadow: 0 4px 10px #be9cff !important;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .search-wrapper.d-md-none {
        display: flex !important;
    }

    .search-wrapper.d-md-flex {
        display: none !important;

    }

}

.banner-mobile {
    padding-top: 70px;
}

.scroll-to-top {
    position: fixed;
    left: 2em;
    bottom: 20px;
    background-color: var(--btn-scroll-top-by);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 300;
    transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--btn-scroll-top-hover-by);
}

.link a{
    color: #BF9CFF;
}

.link a:hover{
    color: #a577fa;
}

.menu p {
    /* margin-top: 3% !important; */
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu p:hover {
    color: #53093A;
    transform: scale(1.05);
}

p {
    margin-bottom: 0rem !important;
}

#find {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1600px) {
    #find {
        margin-top: 10%;
    }
}

@media (max-width: 1400px) {
    #find {
        margin-top: 15%;
    }
}


.link-procedures-button {
    background-color: #A40169; /* Roxo */
    color: white; /* Texto branco */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    width: 80%;
    text-align: center;
    text-decoration: none; /* Remove o sublinhado do link */
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4); /* Sombra mais forte */
    position: relative;
    overflow: hidden;
}

/* Efeito hover */
.link-procedures-button:hover {
    background-color: #870256; /* Roxo um pouco mais escuro */
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.5); /* Sombra ainda mais intensa */
    transform: translateY(-4px); /* Elevação maior */
}

/* Efeito de brilho ao clicar */
.link-procedures-button:active {
    transform: translateY(2px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Mantém a sombra ao pressionar */
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 2em;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        z-index: 0;
    }
}

