@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --Preto: #000000;
    --Branco: #ffff;
    --Cinza: #D9E0E4;
    --Links: #1E90FF;
    --Titulo-Especial: #02B153;
    --Destaque: #FFD700;
    --Preto-hover: #202020;

    --font-primaria: "Inter", 'sans-serif';
    --transition-default: 0.3s ease;
}

* {
    font-family: var(--font-primaria);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header*/
.cabecalho {
    display: flex;
    justify-content: center;   /* centraliza o logo */
    align-items: center;
    padding: 1rem 2rem;        /* espaçamento lateral responsivo */
    background-color: var(--Branco);
    gap: 2rem;                 /* espaço entre os itens */
    position: relative;        /* vai ajudar no truque abaixo */
}

/* Truque para manter o logo 100% centralizado */
.cabecalho nav,
.index__botao {
    flex: 1;                   /* lados ocupam espaço igual */
    display: flex;
}

/* Mantém o "Sobre" à esquerda */
.cabecalho nav {
    justify-content: flex-start;
    padding-left: 2rem;
}

/* Mantém o "Negócios" à direita */
.index__botao {
    justify-content: flex-end;
    padding-right: 2rem;
}

/* Tablets */
@media (max-width: 1024px) {
    .cabecalho nav {
        padding-left: 1.5rem;
    }

    .index__botao {
        padding-right: 1.5rem;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .cabecalho nav {
        padding-left: 1rem;
    }

    .index__botao {
        padding-right: 1rem;
    }
}

/* Logo centralizado de forma garantida */
.cabecalho__logo {
    width: 2rem;
    display: block;
    margin: 0 auto;
}


.cabecalho__sobre {
    color: var(--Preto);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.index__botao__das__empresas {
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 30px;
    color: var(--Preto);
    background-color: var(--Branco);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

/* Efeito sublinhado animado para Sobre e Negócios */
.cabecalho__sobre,
.index__botao__das__empresas {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--Preto);
    font-weight: 600;
}

/* Linha escondida inicialmente */
.cabecalho__sobre::after,
.index__botao__das__empresas::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* distância da linha até o texto */
    width: 0%;
    height: 2px;
    background-color: var(--Preto);
    transition: width 0.3s ease-in-out;
}

/* Linha aparece da esquerda para a direita */
.cabecalho__sobre:hover::after,
.index__botao__das__empresas:hover::after {
    width: 100%;
}

/*footer*/
.rodape {
    background-color: var(--Preto);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 730px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 2rem 1rem;  /* era para ser 5 ao invés de 2 para ficar do tamanho adequado*/
    margin-bottom: 1rem;
}

.rodape__esquerda {
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.rodape__esquerda__logo {
    width: 12rem;
    margin: 1rem 0 0rem 0.3rem;
}

.rodape__esquerda__compliance {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
}

.rodape__esquerda__feedback { /*botão de feedback*/
    text-decoration: none;
    border: 4px solid var(--Branco);
    background-color: var(--Branco);
    border-radius: 1000px;
    color: var(--Preto);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0.3rem 0rem;
    width: 210px;

  /* animação mais suave para o zoom */
    transition: transform 0.5s ease; /* aumentamos o tempo e suavizamos a curva */
}

.rodape__esquerda__feedback:hover {
    transform: scale(1.08); /* aumento discreto */
}

.rodape__esquerda__info {
    color: var(--Branco);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0.3rem;
    text-align: left;
}

.rodape__direita {
    display: flex;
    flex-direction: column;
    text-align: center;

}

.rodape__direita__email {
    color: var(--Branco);
    font-size: 1rem;
    font-weight: 450;
    margin: 0rem 1.6rem 1.2rem 0; /* Adjust margin as needed */
}

.rodape__esquerda__links {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    color: #696969;

    /* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__esquerda__links:hover {
    color: var(--Branco); /* muda para branco ao passar o cursor */
}

.rodape__direita__textos {
    margin: 1.5rem 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

.rodape__direita__link__empresas {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    color: #696969;


    /* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__direita__link__empresas:hover {
    color: var(--Branco); /* muda para branco ao passar o cursor */
}

.rodape__direita__link__empresarios {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    color: #696969;

    /* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__direita__link__empresarios:hover {
    color: var(--Branco); /* muda para branco ao passar o cursor */
}

.rodape__direita__empreendi {
    margin: 2rem 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

.rodape__direita__link__sobre__nos {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Branco);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    color: #696969;

/* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__direita__link__sobre__nos:hover {
    color: var(--Branco); /* muda para branco ao passar o cursor */
}

.rodape a {
    text-decoration: none;  /* remove o sublinhado */
}

/*redes sociais fim*/
.redes__sociais__fim {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    margin: 2rem auto;
}

.redes__sociais__fim__icone__linkedin, .redes__sociais__fim__icone__x, .redes__sociais__fim__icone__instagram, .redes__sociais__fim__icone__facebook {
    padding: 0.125rem;
    width: 30px;

/* animação suave para transform e troca da imagem */
    transition: transform 0.3s ease, content 0.3s ease;
}

/* efeito ao passar o mouse */
.redes__sociais__fim a:hover .redes__sociais__fim__icone__linkedin {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/linkedin/linkedin-cinza.png"); /* troca para a logo cinza */
}

.redes__sociais__fim a:hover .redes__sociais__fim__icone__x {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/X/x-cinza.png"); /* troca para a logo cinza */
}

.redes__sociais__fim a:hover .redes__sociais__fim__icone__instagram {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/instagram/instagram-cinza.svg"); /* troca para a logo cinza */
}

.redes__sociais__fim a:hover .redes__sociais__fim__icone__facebook {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/facebook/facebook-cinza.png"); /* troca para a logo cinza */
}

/*feedback page*/
.feedback__title {
    padding-top: 1rem ;
    display: flex;
    justify-content: center;
    font-size: 2.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feedback__forms {
    background-color: var(--Preto);
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    color: var(--Branco);
    max-width: 600px;
}

@media (max-width: 624px) {
    .feedback__forms {
        margin-left: 12px;
        margin-right: 12px;
    }
}
.feedback__nome, .feedback__email {
    padding: 0.5rem;
    border: 1px solid var(--Cinza);
    border-radius: 10px;
    background-color: var(--Branco);
    color: var(--Preto);
    font-size: 1rem;
}

.feedback__text {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--Cinza);
    border-radius: 10px;
    background-color: var(--Branco);
    color: var(--Preto);
    font-size: 1rem;
    resize: none;
}

.feedback__submit {
    padding: 0.6rem 1rem;
    border: solid;
    border-radius: 30px;
    color: var(--Preto);
    background-color: var(--Branco);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
}

.feedback__submit:hover {
    background-color: #D9D9D8;
}

/*Sobre nós page*/

.sobre1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--Branco);
}

.sobre__titulos {
    font-size: 2rem;
    font-weight: 700;
    color: var(--Preto);
    margin: 0 0 2rem 0;
    text-align: center;
}

.sobre__strong {
    padding: 0 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    background-color: #000000;
    color: var(--Branco);
    text-align: center;
}

.sobre__texto {
    text-indent: 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--Preto);
    text-align: justify;
    max-width: 800px;
    line-height: 2;
    margin-bottom: 1rem;
}

.sobre2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
    justify-items: center;
}

.sobre__fotos {
    margin-bottom: 1rem;
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 50%;
}

.sobre__descricao {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sobre__integrantes {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sobre__divs {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    max-width: 250px;
    min-height: 300px;
    padding: 1rem;
    border-radius: 30px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.sobre__divs:hover {
    background-color: var(--Preto);
    color: var(--Branco);
}

.sobre__divs:hover .sobre__integrantes {
    opacity: 1;
}

/* BREAKPOINTS RESPONSIVOS */

/* Desktop grande (4 colunas) */
@media (min-width: 1200px) {
    .sobre2 {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
        margin: 0 auto 4rem auto;
    }
}

/* Desktop médio (3 colunas) */
@media (min-width: 900px) and (max-width: 1199px) {
    .sobre2 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sobre__divs:last-child {
        grid-column: 2; /* centraliza o 4º item */
    }
}

/* Tablet (2 colunas) */
@media (min-width: 600px) and (max-width: 899px) {
    .sobre2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (1 coluna) */
@media (max-width: 599px) {
    .sobre2 {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .sobre__divs {
        margin: 1rem 0;
        min-height: 250px;
    }
    
    .sobre__fotos {
        width: 10rem;
        height: 10rem;
    }
    
    .sobre__descricao {
        font-size: 1.1rem;
    }
    
    .sobre__integrantes {
        font-size: 0.9rem;
    }
}

@media (max-width: 490px) {
    .sobre1 {
        padding: 1.5rem 2rem 2rem 2rem;
    }
}

/*Termos de Uso*/
.termos {
    text-align: justify;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.termos__titulo {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
    text-align: center;
    margin-top: 1%;
    margin-bottom: 3%;
}
.termos__subt {
    margin-top: 1.5rem;
    font-size: 1rem;
}

/*Politica*/
.politica {
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: justify;
    max-width: 800px;
}

.politica__titulo {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 1%;
    margin-bottom: 3%;
}

.politica__subt {
    font-size: 1rem;
}

/*Index*/
.index {
    margin: 0 auto;
    text-align: center;
    max-width: 92%;
}
.index__titulo{
    margin: 2rem 2rem;
    font-size: 2.15rem;
}

@media (max-width:956px) {
    .index__titulo {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (max-width:765px) {
    .index__titulo {
        font-size: 1.9rem;
    }
}

@media (max-width:674px) {
    .index__titulo {
        font-size: 1.8rem;
    }
}

@media (max-width:644px) {
    .index__titulo {
        font-size: 1.7rem;
    }
}

@media (max-width:610px) {
    .index__titulo {
        font-size: 1.6rem;
    }
}

@media (max-width:577px) {
    .index__titulo {
        font-size: 1.5rem;
    }
}

@media (max-width:540px) {
    .index__titulo {
        font-size: 1.4rem;
        margin-top: 1rem;
    }
}

@media (max-width:510px) {
    .index__titulo {
        margin-left: 8px;
        margin-right: 8px;
    }
}

@media (max-width:404px) {
    .index__titulo {
        font-size: 1.3rem;
    }
}

@media (max-width:378px) {
    .index__titulo {
        margin-left: 0px;
        margin-right: 0px;
    }
}


.index__form{
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* ===== search-bar (substituir o bloco existente) ===== */

:root {
  --searchbar-collapsed-height: 57px; /* altura quando retraída (ajuste se quiser) */
  --searchbar-transition: 350ms cubic-bezier(.2,.8,.2,1);
}

.search-wrapper {
  position: relative;
  max-width: 700px; /* alinha com suas larguras anteriores */
  min-width: 350px;
  margin: 0 auto;
}

.search-bar {
  /* agora é um container vertical: linha superior + área de filtros abaixo */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #000000; /* fundo preto */
  border-radius: 30px;
  overflow: hidden; /* esconde os filtros quando retraída */
  height: var(--searchbar-collapsed-height); /* altura inicial (retraída) */
  transition: height var(--searchbar-transition);
  will-change: height;
  box-sizing: border-box;
}

/* Linha superior (menu + input + lupa) */
.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
}

.search-btn {
    margin-right: 12px;
    margin-top: 3px;
}

/* mantém o estilo dos botões dentro da linha */
.search-bar .menu-btn,
.search-bar .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Ícone tamanhos (mantive os seus valores) */
.imagem_botao_lupa { width: 30px; height: auto; }

/* Input continua flexível dentro da linha */
.search-row input[type="search"] {
  flex: 1;
  margin-top: 1px;
  padding: 12px 10px 12px 15px;
  border: none;
  border-radius: 0px;
  outline: none;
  font-size: 18px;
  color: #ffffff;
  background-color: #000000;
  min-width: 180px;
}
.search-row input[type="search"]::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.menu-btn {
  position: relative;
  width: 40px;
  height: 30px; /* altura total do botão */
  border: none;
  background: transparent;
  cursor: pointer;
  margin-top: 2px;
}

.circle {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-top: 2px;
}

.menu-btn__line {
  position: absolute;
  left: 50%;
  top: 50%;                          /* todas partem do meio verticalmente */
  width: 24px;
  height: 3px;                       /* inteiro para evitar artefatos */
  background-color: #000000;
  border-radius: 2px;
  transform: translate(-50%, -50%);  /* centraliza por padrão */
  transform-origin: center center;   /* garante rotação no centro */
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.18s ease;
}

/* linha 1 (topo) — ligeiramente acima do centro via translateY */
.menu-btn__line:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-8px);
}

/* linha 2 (meio) — exatamente no centro */
.menu-btn__line:nth-child(2) {
  transform: translate(-50%, -50%) translateY(0);
}

/* linha 3 (baixo) — ligeiramente abaixo do centro via translateY */
.menu-btn__line:nth-child(3) {
  transform: translate(-50%, -50%) translateY(8px);
}

/* Estado X — usa só transform (e opacity) para animação limpa */
.search-bar.expanded .menu-btn__line:nth-child(1),
.menu-btn.active .menu-btn__line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-bar.expanded .menu-btn__line:nth-child(2),
.menu-btn.active .menu-btn__line:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(0); /* garante posição central */
}

.search-bar.expanded .menu-btn__line:nth-child(3),
.menu-btn.active .menu-btn__line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}






.grid-item {
    width: fit-content;
}

.index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* grid adaptável */
  gap: 5rem 0.5rem;  /* espaço entre linhas e colunas */
  max-width: 800px;  /* limita largura máxima */
  margin: 5rem auto; /* centraliza responsivamente */
  justify-items: center; /* garante que cada item dentro da célula fique centralizado */
}

.index__grid > div {
  text-align: center;     /* centraliza textos */
  display: flex;
  flex-direction: column;
  align-items: center;    /* centraliza imagens */
}

.index__empresarios__img, .empresas__empresas__img{
    width: 200px;
    height: 200px; 
    object-fit: cover; 
   border-radius: 50%;
    display: block;
}

.index__empresarios__texto{
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--Preto);
    margin-top: 1rem;
    width: 200px;
    text-align: center;
}

.index__empresarios__butao {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-decoration: none; 
    background-color: var(--Branco);
    cursor: pointer;

    /* animação suave para transform */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.index__empresarios__butao:hover {
    transform: scale(1.07);
}

.index__empresarios__desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555; /* cinza para diferenciar */
    margin-top: 0.3rem;
    text-align: center;
    width: 200px;
}

/* PAGINAÇÃO */
.pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 0.5rem;
}

.page-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 1500px;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.page-btn:hover {
  transform: scale(1.1);
}

.page-btn.active {
  background-color: white;
  color: black;
  font-weight: bold;
}










/*EMPREENDI NEGÓCIOS - - -- - - - - - - - - - - - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - -*/

/*Cabeçalho NEGÓCIOS*/
.cabecalho__empresas {
    display: flex;
    justify-content: center;   /* centraliza o logo */
    align-items: center;
    padding: 1rem 2rem;        /* espaçamento lateral responsivo */
    background-color: var(--Preto);
    gap: 2rem;                 /* espaço entre os itens */
    position: relative;        /* vai ajudar no truque abaixo */
}

/* Truque para manter o logo 100% centralizado */
.cabecalho__empresas nav,
.index__botao__empresas {
    flex: 1;                   /* lados ocupam espaço igual */
    display: flex;
}

/* Mantém o "Sobre" à esquerda */
.cabecalho__empresas nav {
    justify-content: flex-start;
    padding-left: 2rem;
}

/* Mantém o "Negócios" à direita */
.index__botao__empresas {
    justify-content: flex-end;
    padding-right: 2rem;
}

/* Tablets */
@media (max-width: 1024px) {
    .cabecalho__empresas nav {
        padding-left: 1.5rem;
    }

    .index__botao__empresas {
        padding-right: 1.5rem;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .cabecalho__empresas nav {
        padding-left: 1rem;
    }

    .index__botao__empresas {
        padding-right: 1rem;
    }
}

/* Logo centralizado de forma garantida */
.cabecalho__logo__empresas {
    width: 2rem;
    display: block;
    margin: 0 auto;
}


.cabecalho__sobre__empresas {
    color: var(--Branco);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.index__botao__empreendedores__empresas {
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 30px;
    color: var(--Branco);
    background-color: var(--Preto);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

/* Efeito sublinhado animado para Sobre e Negócios */
.cabecalho__sobre__empresas,
.index__botao__empreendedores__empresas {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--Branco);
    font-weight: 600;
}

/* Linha escondida inicialmente */
.cabecalho__sobre__empresas::after,
.index__botao__empreendedores__empresas::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* distância da linha até o texto */
    width: 0%;
    height: 2px;
    background-color: var(--Branco);
    transition: width 0.3s ease-in-out;
}

/* Linha aparece da esquerda para a direita */
.cabecalho__sobre__empresas:hover::after,
.index__botao__empreendedores__empresas:hover::after {
    width: 100%;
}







/*footer NEGÓCIOS*/
.rodape__empresas {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 730px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 2rem 1rem;  /* era para ser 5 ao invés de 2 para ficar do tamanho adequado*/
    margin-bottom: 1rem;
}

.rodape__esquerda__empresas {
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.rodape__esquerda__logo__empresas {
    width: 12rem;
    margin: 1rem 0 0rem 0.3rem;
}

.rodape__esquerda__compliance__empresas {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
}

.rodape__esquerda__feedback__empresas { /*botão de feedback*/
    text-decoration: none;
    border: 4px solid var(--Preto);
    background-color: var(--Preto);
    border-radius: 1000px;
    color: var(--Branco);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0.3rem 0rem;
    width: 210px;

  /* animação mais suave para o zoom */
    transition: transform 0.5s ease; /* aumentamos o tempo e suavizamos a curva */
}

.rodape__esquerda__feedback__empresas:hover {
    transform: scale(1.08); /* aumento discreto */
}

.rodape__esquerda__info__empresas {
    color: var(--Preto);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0.3rem;
    text-align: left;
}

.rodape__direita__empresas {
    display: flex;
    flex-direction: column;
    text-align: center;

}

.rodape__direita__email__empresas {
    color: var(--Preto);
    font-size: 1rem;
    font-weight: 450;
    margin: 0rem 1.6rem 1.2rem 0; /* Adjust margin as needed */
}

.rodape__esquerda__links__empresas {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    color: #696969;

    /* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__esquerda__links__empresas:hover {
    color: var(--Preto); /* muda para branco ao passar o cursor */
}

.rodape__direita__textos__empresas {
    margin: 1.5rem 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

.rodape__direita__link__empresas__empresas {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    color: #696969;


    /* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__direita__link__empresas__empresas:hover {
    color: var(--Preto); /* muda para branco ao passar o cursor */
}

.rodape__direita__link__empresarios__empresas {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    color: #696969;

    /* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__direita__link__empresarios__empresas:hover {
    color: var(--Preto); /* muda para branco ao passar o cursor */
}

.rodape__direita__empreendi__empresas {
    margin: 2rem 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

.rodape__direita__link__sobre__nos__empresas {
    margin: 0 1.6rem 0.5rem 0;
    color: var(--Preto);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    color: #696969;

/* animação suave para cor */
    transition: color 0.4s ease;
}

.rodape__direita__link__sobre__nos__empresas:hover {
    color: var(--Preto); /* muda para branco ao passar o cursor */
}

.rodape__empresas a {
    text-decoration: none;  /* remove o sublinhado */
}

/*redes sociais fim*/
.redes__sociais__fim__empresas {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    margin: 2rem auto;
}

.redes__sociais__fim__icone__linkedin__empresas, .redes__sociais__fim__icone__x__empresas, .redes__sociais__fim__icone__instagram__empresas, .redes__sociais__fim__icone__facebook__empresas {
    padding: 0.125rem;
    width: 30px;

/* animação suave para transform e troca da imagem */
    transition: transform 0.3s ease, content 0.3s ease;
}

/* efeito ao passar o mouse */
.redes__sociais__fim__empresas a:hover .redes__sociais__fim__icone__linkedin__empresas {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/linkedin/linkedin-cinza.png"); /* troca para a logo cinza */
}

.redes__sociais__fim__empresas a:hover .redes__sociais__fim__icone__x__empresas {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/X/x-cinza.png"); /* troca para a logo cinza */
}

.redes__sociais__fim__empresas a:hover .redes__sociais__fim__icone__instagram__empresas {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/instagram/instagram-cinza.svg"); /* troca para a logo cinza */
}

.redes__sociais__fim__empresas a:hover .redes__sociais__fim__icone__facebook__empresas {
    transform: translateY(-4px); /* sobe levemente */
    content: url("Assets/Logos redes sociais/facebook/facebook-cinza.png"); /* troca para a logo cinza */
}








/* PAGINAÇÃO NEGÓCIOS*/
.pagination__empresas {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 0.5rem;
}

.page-btn__empresas {
  background-color: #ffff;
  color: #000000;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 1500px;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.page-btn__empresas:hover {
  transform: scale(1.1);
}

.page-btn__empresas.active {
  background-color: #000000;
  color: #ffff;
  font-weight: bold;
}













/*Index NEGÓCIOS*/
.index__empresas {
    margin: 0 auto;
    text-align: center;
    max-width: 92%;
    background-color: #000000;
}
.index__titulo__empresas{
    margin: 2rem 2rem;
    font-size: 2.15rem;
    color: #ffffff;
}

@media (max-width:956px) {
    .index__titulo__empresas {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (max-width:765px) {
    .index__titulo__empresas {
        font-size: 1.9rem;
    }
}

@media (max-width:674px) {
    .index__titulo__empresas {
        font-size: 1.8rem;
    }
}

@media (max-width:644px) {
    .index__titulo__empresas {
        font-size: 1.7rem;
    }
}

@media (max-width:610px) {
    .index__titulo__empresas {
        font-size: 1.6rem;
    }
}

@media (max-width:577px) {
    .index__titulo__empresas {
        font-size: 1.5rem;
    }
}

@media (max-width:540px) {
    .index__titulo__empresas {
        font-size: 1.4rem;
        margin-top: 1rem;
    }
}

@media (max-width:510px) {
    .index__titulo__empresas {
        margin-left: 8px;
        margin-right: 8px;
    }
}

@media (max-width:404px) {
    .index__titulo__empresas {
        font-size: 1.3rem;
    }
}

@media (max-width:378px) {
    .index__titulo__empresas {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.index__form__empresas{
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* ===== search-bar (substituir o bloco existente) ===== */

:root {
  --searchbar-collapsed-height: 57px; /* altura quando retraída (ajuste se quiser) */
  --searchbar-transition: 350ms cubic-bezier(.2,.8,.2,1);
}

.search-wrapper__empresas {
  position: relative;
  max-width: 700px; /* alinha com suas larguras anteriores */
  min-width: 350px;
  margin: 0 auto;
}

.search-bar__empresas {
  /* agora é um container vertical: linha superior + área de filtros abaixo */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #ffffff; /* fundo preto */
  border-radius: 30px;
  overflow: hidden; /* esconde os filtros quando retraída */
  height: var(--searchbar-collapsed-height); /* altura inicial (retraída) */
  transition: height var(--searchbar-transition);
  will-change: height;
  box-sizing: border-box;
}

/* Linha superior (menu + input + lupa) */
.search-row__empresas {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
}

.search-btn__empresas {
    margin-right: 12px;
    margin-top: 3px;
}

/* mantém o estilo dos botões dentro da linha */
.search-bar__empresas .menu-btn__empresas,
.search-bar__empresas .search-btn__empresas {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Ícone tamanhos (mantive os seus valores) */
.imagem_botao_lupa__empresas { width: 30px; height: auto; }

/* Input continua flexível dentro da linha */
.search-row__empresas input[type="search"] {
  flex: 1;
  margin-top: 1px;
  padding: 12px 10px 12px 15px;
  border: none;
  border-radius: 0px;
  outline: none;
  font-size: 18px;
  color: #000000;
  background-color: #ffffff;
  min-width: 180px;
}
.search-row__empresas input[type="search"]::placeholder {
  color: #000000;
  opacity: 0.7;
}

.menu-btn__empresas {
  position: relative;
  width: 40px;
  height: 30px; /* altura total do botão */
  border: none;
  background: transparent;
  cursor: pointer;
  margin-top: 2px;
}

.circle__empresas {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #000000;
    border-radius: 50%;
    margin-top: 2px;
}

.menu-btn__line__empresas {
  position: absolute;
  left: 50%;
  top: 50%;                          /* todas partem do meio verticalmente */
  width: 24px;
  height: 3px;                       /* inteiro para evitar artefatos */
  background-color: #ffffff;
  border-radius: 2px;
  transform: translate(-50%, -50%);  /* centraliza por padrão */
  transform-origin: center center;   /* garante rotação no centro */
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.18s ease;
}

/* linha 1 (topo) — ligeiramente acima do centro via translateY */
.menu-btn__line__empresas:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-8px);
}

/* linha 2 (meio) — exatamente no centro */
.menu-btn__line__empresas:nth-child(2) {
  transform: translate(-50%, -50%) translateY(0);
}

/* linha 3 (baixo) — ligeiramente abaixo do centro via translateY */
.menu-btn__line__empresas:nth-child(3) {
  transform: translate(-50%, -50%) translateY(8px);
}

/* Estado X — usa só transform (e opacity) para animação limpa */
.search-bar__empresas.expanded .menu-btn__line__empresas:nth-child(1),
.menu-btn__empresas.active .menu-btn__line__empresas:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-bar__empresas.expanded .menu-btn__line__empresas:nth-child(2),
.menu-btn__empresas.active .menu-btn__line__empresas:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(0); /* garante posição central */
}

.search-bar__empresas.expanded .menu-btn__line__empresas:nth-child(3),
.menu-btn__empresas.active .menu-btn__line__empresas:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.grid-item__empresas {
    width: fit-content;
}

.index__grid__empresas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* grid adaptável */
  gap: 5rem 0.5rem;  /* espaço entre linhas e colunas */
  max-width: 800px;  /* limita largura máxima */
  margin: 5rem auto; /* centraliza responsivamente */
  justify-items: center; /* garante que cada item dentro da célula fique centralizado */
}

.index__grid__empresas > div {
  text-align: center;     /* centraliza textos */
  display: flex;
  flex-direction: column;
  align-items: center;    /* centraliza imagens */
}

.index__empresarios__img, .empresas__empresas__img{
    width: 200px;
    height: 200px; 
    object-fit: cover; 
   border-radius: 50%;
    display: block;
}

.empresas__empresas__texto{
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--Branco);
    margin-top: 1rem;
    width: 200px;
    text-align: center;
}

.index__empresarios__butao {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-decoration: none; 
    background-color: var(--Branco);
    cursor: pointer;

    /* animação suave para transform */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.index__empresarios__butao:hover {
    transform: scale(1.07);
}

.index__empresas__desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: #bbb9b9; /* cinza para diferenciar */
    margin-top: 0.3rem;
    text-align: center;
    width: 200px;
}

.index__empresas__especificas {
    background-color: #000000;
}






/*CONTAINER DE FILTROS NEGÓCIOS*/

/* ===== filtro-container (agora dentro da search-bar) ===== */
.filtro-container__empresas {
  width: calc(100% - 24px); /* fica com margem interna compatível */
  margin: 0px 12px 14px 12px;
  padding: 12px 12px 6px 12px;
  background-color: #ffffff; /* caixa preta escura */
  color: #000000;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;

  /* comportamento inicial (escondido visualmente / não clicável) */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 0ms;
}

/* Quando a search-bar está expandida, os filtros tornam-se visíveis */
.search-bar__empresas.expanded .filtro-container__empresas {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 120ms; /* aparece logo após a barra começar a subir */
}

.titulo__filtros__empresas {
    text-align: left;
    font-size: 16px;
    color: #000000;
    opacity: 0.7;
    font-weight: 500;
    margin-left: 0px;
    margin-top: 3px;
    margin-bottom: 12px;
}

/* filtro-item e checkbox - mantive e organizei */
.filtro-item__empresas {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Checkbox estilizado circular (mantive seu comportamento) */
.filtro-item__empresas input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filtro-item__empresas input[type="checkbox"]:checked {
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}

/* Botão aplicar */
.filtro-aplicar__empresas {
  margin-left: auto;
  padding: 8px 20px;
  background-color: #000000;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  transition: background-color 0.3s ease;
}
.filtro-aplicar__empresas:hover { background-color: #d9d9d9; }







/* Rodapé responsivo NEGÓCIOS */
@media (max-width: 768px) {
  .rodape__empresas {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2rem;
    margin-left: 12px;
    margin-right: 12px;
  }
  
  /* Dissolve os containers para permitir reordenação */
  .rodape__esquerda__empresas,
  .rodape__direita__empresas {
    display: contents;
  }
  
  /* Centraliza e ordena as divs */
  .rodape__f__esq__empresas,
  .rodape__emai__dir__empresas,
  .rodape__tex__sobr__dir__empresas,
  .rodape__comp__logo__esq__empresas {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  /* para forçar centralização */
  .rodape__esquerda__compliance__empresas,
  .rodape__esquerda__links__empresas,
  .rodape__esquerda__info__empresas,
  .rodape__direita__email__empresas,
  .rodape__direita__textos__empresas,
  .rodape__direita__link__empresas__empresas,
  .rodape__direita__link__empresarios__empresas,
  .rodape__direita__empreendi__empresas,
  .rodape__direita__link__sobre__nos__empresas {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Define a ordem desejada */
  .rodape__f__esq__empresas { order: 1; }
  .rodape__emai__dir__empresas { order: 2; }
  .rodape__tex__sobr__dir__empresas { order: 3; }
  .rodape__comp__logo__esq__empresas { order: 4; }

  .rodape__emai__dir__empresas {
    margin-top: -40px;
    margin-bottom: -50px;
  }
}

/*DEFINIÇÕES RODAPÉ FILHOS DA DIREITA E ESQUERDA*/
.rodape__f__esq__empresas,
.rodape__comp__logo__esq__empresas,
.rodape__emai__dir__empresas,
.rodape__tex__sobr__dir__empresas {
    display: flex;
    flex-direction: column;
    align-items: inherit; /* herda o alinhamento do pai */
}

/*Tirando o botão sobre e negócios nos celulares e fazendo o botão flutuante aparecer*/
@media (max-width: 530px) {
    .cabecalho__sobre__empresas {
        display: none;
    }
    
    .index__botao__empreendedores__empresas {
        display: none;
    }
}

/* botão flutuante celular */
.botao__flutuante__celular__empresas {
    display: none;       /* invisível por padrão */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 80px;         /* largura do botão */
    height: 80px;        /* altura do botão */
}

.botao__flutuante__celular__empresas img.imagem__pessoa {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mantém proporção da imagem */
    display: block;      /* evita espaços extras */
}

/*responsividade*/
@media (max-width: 530px) {
    .botao__flutuante__celular__empresas {
        display: block; /* garante que sobreponha qualquer outro estilo */
    }
}


.rodape__empresas {
    position: relative;
    z-index: 9999;
}




/* Animação para o botão flutuante desaparecer depois do rodapé */
.botao__flutuante__celular__empresas.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

























/*textos*/
.textos {
    margin: 2rem auto 3rem auto;
    max-width: 900px; /* controla a largura para não ficar estourando */
    padding: 0 1rem;  /* respiro nas laterais em telas pequenas */
    text-align: center;   
}

.textos__titulo {
    font-size: 2rem;
    margin-bottom: 1.3rem;
}

.textos__img__container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.textos__img{
    border-radius: 12px;
    width: 70%;
    height: auto;
    max-width: 100%;
}
.textos__subt {
    font-size: 1.3rem;
    line-height: 4rem;
}

.textos__texto {
    padding: 0.8rem 0;
    text-align: justify;
    line-height: 2rem;

}

.textos__citacoes{
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.links__comum {
    text-decoration: none;
    color: var(--Links);
    font-weight: 600;
}

@media (max-width: 530px) {
    .textos__img {
        width: 420px;
    }
}

@media (max-width: 786px) {
    .textos {
        margin: 1rem auto 3rem auto
    }
}

/*CONTAINER DE FILTROS*/

/* ===== filtro-container (agora dentro da search-bar) ===== */
.filtro-container {
  width: calc(100% - 24px); /* fica com margem interna compatível */
  margin: 0px 12px 14px 12px;
  padding: 12px 12px 6px 12px;
  background-color: #000000; /* caixa preta escura */
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;

  /* comportamento inicial (escondido visualmente / não clicável) */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 0ms;
}

/* Quando a search-bar está expandida, os filtros tornam-se visíveis */
.search-bar.expanded .filtro-container {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 120ms; /* aparece logo após a barra começar a subir */
}

.titulo__filtros {
    text-align: left;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 500;
    margin-left: 0px;
    margin-top: 3px;
    margin-bottom: 12px;
}

/* filtro-item e checkbox - mantive e organizei */
.filtro-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Checkbox estilizado circular (mantive seu comportamento) */
.filtro-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: black;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filtro-item input[type="checkbox"]:checked {
  background-color: white;
  border-color: white;
}

/* Botão aplicar */
.filtro-aplicar {
  margin-left: auto;
  padding: 8px 20px;
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  transition: background-color 0.3s ease;
}
.filtro-aplicar:hover { background-color: #d9d9d9; }

/* Altera a cor de fundo e a cor do texto da seleção */
::selection {
    background-color: #ffcc00; /* cor de fundo da seleção */
    color: #000000; /* cor do texto durante a seleção */
}

/* Para Firefox, use também */
::-moz-selection {
    background-color: #ffcc00;
    color: #000000;
}

/* Remove o "X" padrão de inputs type="search" no Chrome/Edge */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Para Safari */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* Para Firefox (ele não mostra X, mas por garantia) */
input[type="search"]::-moz-search-clear {
  display: none;
}

/* Rodapé responsivo */
@media (max-width: 768px) {
  .rodape {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2rem;
    margin-left: 12px;
    margin-right: 12px;
  }
  
  /* Dissolve os containers para permitir reordenação */
  .rodape__esquerda,
  .rodape__direita {
    display: contents;
  }
  
  /* Centraliza e ordena as divs */
  .rodape__f__esq,
  .rodape__emai__dir,
  .rodape__tex__sobr__dir,
  .rodape__comp__logo__esq {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  /* para forçar centralização */
  .rodape__esquerda__compliance,
  .rodape__esquerda__links,
  .rodape__esquerda__info,
  .rodape__direita__email,
  .rodape__direita__textos,
  .rodape__direita__link__empresas,
  .rodape__direita__link__empresarios,
  .rodape__direita__empreendi,
  .rodape__direita__link__sobre__nos {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Define a ordem desejada */
  .rodape__f__esq { order: 1; }
  .rodape__emai__dir { order: 2; }
  .rodape__tex__sobr__dir { order: 3; }
  .rodape__comp__logo__esq { order: 4; }

  .rodape__emai__dir {
    margin-top: -40px;
    margin-bottom: -50px;
  }
}

/*DEFINIÇÕES RODAPÉ FILHOS DA DIREITA E ESQUERDA*/
.rodape__f__esq,
.rodape__comp__logo__esq,
.rodape__emai__dir,
.rodape__tex__sobr__dir {
    display: flex;
    flex-direction: column;
    align-items: inherit; /* herda o alinhamento do pai */
}

/*Tirando o botão sobre e negócios nos celulares e fazendo o botão flutuante aparecer*/
@media (max-width: 530px) {
    .cabecalho__sobre {
        display: none;
    }
    
    .index__botao__das__empresas {
        display: none;
    }
}

/* botão flutuante celular */
.botao__flutuante__celular {
    display: none;       /* invisível por padrão */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 80px;         /* largura do botão */
    height: 80px;        /* altura do botão */
}

.botao__flutuante__celular img.imagem__predios {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mantém proporção da imagem */
    display: block;      /* evita espaços extras */
}

/*responsividade*/
@media (max-width: 530px) {
    .botao__flutuante__celular {
        display: block; /* garante que sobreponha qualquer outro estilo */
    }
}


.rodape {
    position: relative;
    z-index: 9999;
}




/* Animação para o botão flutuante desaparecer depois do rodapé */
.botao__flutuante__celular.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}





/*RESOLVENDO ESPAÇO EM BRANCO NO BODY DO EMPRESAS*/
body {
    background-color: #ffffff; /* padrão para index.html */
}

/* Específico para a página de empresas */
.index__empresas {
    background-color: #000000;
}

/* ADICIONE ESTA NOVA REGRA: */
body:has(.index__empresas) {
    background-color: #000000;
}














/* BARRA DE PESQUISA FIXADA NO TOPO EM CELULARES */
@media (max-width: 530px) {
    .search-wrapper,
    .search-wrapper__empresas {
        position: sticky;
        top: 0;
        z-index: 999; /* fica acima de outros elementos */
        background-color: transparent;
        padding: 10px 0;
        transition: all 0.3s ease;
    }
    
    /* Quando estiver "grudada" no topo */
    .search-wrapper.is-stuck,
    .search-wrapper__empresas.is-stuck {
        background-color: rgba(255, 255, 255, 0.95); /* sombra sutil para destacar */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Versão empresas tem fundo escuro */
    .search-wrapper__empresas.is-stuck {
        background-color: rgba(0, 0, 0, 0.95);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    }
}