:root {
  --color-primary: #000000; /* Preto */
  --color-secondary: #fff; /* Branco */
  --color-accent: #555; /* Cinza */
  --color-background: #fafaf7; /* Cinza muito claro para o fundo */
  --font-primary: "Merriweather", serif; /* Alternativa para Sanomat */
  --font-secondary: "Work Sans", sans-serif; /* Alternativa para Guardian Sans */
  --font-terce: "Roboto", sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}
html {
    scroll-behavior: smooth;
}


body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  color: #222;


  font-family: var(--font-primary);
  overflow-y: scroll;
  box-sizing: border-box;
}
/* =================main ========================*/
main {
  display: flex;
  flex-direction: column;
}
/* ==================container_one=====================*/

.container_one {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
  background-color: #000;
}
.top-one-wrapper,
.midle-one-wrapper, 
.bottom-one-wrapper{
 width: 85%;
  margin: 0 auto;
}
/*----------------- top-one-wrapper------------------------*/


.top-one-wrapper {
  display: flex;
  flex-direction: row;
  height: 15rem;
}
.top-one-left-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Posiciona o conteúdo no final da div */
  height: 100%; /* A altura da div será 100% do seu contêiner pai */
}
.top-one-left-wrapper h1 {
  margin: 0;
  font-size: 4rem;
  color: white;
  letter-spacing: 2px;
  font-weight: var(--font-weight-normal);
}
.top-one-left-wrapper h1 span {
  margin: 0 0 1rem 0;
  font-weight: var(--font-weight-bold);
}

.top-one-rigth-wrapper {
  flex: 1;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Posiciona o conteúdo no final da div */
  height: 100%; /* A altura da div será 100% do seu contêiner pai */
}
.top-one-rigth-wrapper p {
  margin: 0 0 0 8rem;
  font-weight: var(--font-weight-normal);
  font-family: var(--font-terce);
  color: var(--color-secondary);
  font-size: 1.4rem;
  line-height: 30px;
}

/*-----------------midle-one-wrapper-----------------------*/
.midle-one-wrapper {
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.swiper-container {
  width: 100%;
  height: 30rem;
  overflow: hidden; /* Garante que apenas o slide ativo seja visível */
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex: 0 0 100%; /* Faz com que cada slide ocupe 100% da largura da container */
  height: 100%;
  background-color: #f0f0f0;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilo dos botões de navegação */
.swiper-button-next,
.swiper-button-prev {
  color: #000; /* Cor dos botões */
}

/*-----------------bottom-one-wrapper----------------------*/

.bottom-one-wrapper {
  display: flex;
  flex-direction: row;
}

.bottom-one-left-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-right: 5rem;
  height: 100%;
}

.bottom-one-left-wrapper p {
  font-family: var(--font-terce);
  font-size: 2rem;
  color: #f0f0f0;
}




.bottom-one-rigth-wrapper {
  flex: 1;
  text-align: start;
  display: flex;
  flex-direction: column;
  margin-left: 5rem;
  height: 100%;
}
.bottom-one-rigth-wrapper p {
  font-family: var(--font-terce);
  font-size: 1.5rem;
  color: #f0f0f0;
}

.link-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
}

.link-wrapper a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.circle-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000; 
  border: 2px solid #fff;
  color: #fff; 
  font-size: 18px;
  cursor: pointer;
  transition: 450ms ease-in-out;
}

.circle-arrow:hover {
  background-color: #fff; 
  border: 2px solid #ffffff;
  color: #050505; 
  scale: 1.08;
}

.circle-arrow i {
  font-size: 20px;
  transform: rotate(0deg); /
}
/* ==================container_two=====================*/

.container_two {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.top-two-wrapper,
.midle-two-wrapper, 
.bottom-two-wrapper,
.last-two-wrapper{
 width: 85%;
  margin: 0 auto;
}
/*----------------- top-two-wrapper------------------------*/

.top-two-wrapper{
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
}

.top-two-wrapper p{
font-size: 1.2rem;
font-weight: 100;
  font-family: var(--font-terce);
}
.top-two-wrapper hr{
width: 20%;
}
.top-two-wrapper h2{
font-size: 3rem;
font-weight: 100;
}

/*----------------midle-two-wrapper------------------------*/

.midle-two-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de tamanhos iguais */
    gap: 50px; /* Espaço entre as colunas */
    padding: 20px; /* Espaçamento interno */
}

.midle-two-left-wrapper,
.midle-two-right-wrapper {
    padding: 10px; /* Espaçamento interno de cada coluna */
    min-height: rem;

}

.midle-two-left-wrapper h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 300;

   
}

.midle-two-left-wrapper p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
      line-height: 1.8; /* Aumenta a separação entre as linhas */
   
  
}

.link-wrapper-midle a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}
.circle-arrow-midle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000; 
  border: 1px solid #fff;
  color: #fff; 
  font-size: 18px;
  cursor: pointer;
  transition: 450ms ease-in-out;
}

.circle-arrow-midle:hover {
  background-color: #fff; 
  border: 1px solid #000000;
  color: #050505; 

}


.midle-two-right-wrapper p {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
    text-align: center;
    justify-content: flex-end;
    display: flex;

}

.midle-two-right-wrapper p:last-child {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
    text-align: center;
   
}

/*----------------.bottom-two-wrapper-----------------------*/
.bottom-two-wrapper {
  display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Três colunas de tamanhos iguais */
    gap: 50px; /* Espaço entre as colunas */
    padding: 20px; /* Espaçamento interno */
 /* Alinhamento uniforme dos itens */
 padding-top: 5rem;


}

.bottom-two-left-wrapper,
.bottom-two-middle-wrapper,
.bottom-two-right-wrapper,
.last-two-wrapper {
    text-align: start; /* Centralizar conteúdo */
    display: flex;
    flex-direction: column;
    justify-content: start; /* Distribui o conteúdo ao longo da div */
    height: 100%; /* Garante que a altura seja utilizada completamente */
    padding: 20px; /* Espaçamento interno opcional */
  
   
}

.bottom-two-wrapper img {
    width: 100%; /* Tornar as imagens responsivas */
    height: auto;
    margin-bottom: 15px; /* Espaçamento entre a imagem e o título */
    filter: grayscale(1);
    transition: 650ms ease-in-out;
}
.bottom-two-wrapper img:hover {
scale: 1.08;
filter: grayscale(0);
border-radius: 15px;
}


.bottom-two-wrapper h3 {
    font-size: 1em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bottom-two-wrapper p {

    font-size: 1rem;
font-weight: 300;
line-height: 1.8;
    margin-bottom: 15px;

}

.cta-button {
    display: inline-block;

   text-decoration: none;
   color: #000;
    transition: background-color 0.3s ease;

   
}

.cta-button:hover {
       text-decoration: underline;
}

/*----------------last-two-wrapper-----------------------*//* Estilo para a div "last-two-wrapper" */
.last-two-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: start;
    text-align: left; /* Centraliza o texto */
}

/* Estilo para a div "last-two-left-wrapper" */
.last-two-left-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
   /* padding: 0 20rem 0 0; */
    width: 50%;
}

.last-two-left-wrapper h3 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #333;
}

.last-two-left-wrapper p {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
    text-align: justify;
}

/* ==================container_three=====================*/
.container_three {

    background-color: #000;
    width: 100%;

}

.inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Define duas colunas com largura igual */
    gap: 20px; /* Espaçamento entre as colunas */
    width: 85%; /* Controla a largura do conteúdo */
    margin: 2rem auto;
   
}

.left-tree-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-tree-wrapper h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.left-tree-wrapper p {
    font-size: 16px;
    line-height: 1.5;
       color: white;
}

.rigth-tree-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



#animated-text {
    font-size: 2rem;
    color: rgb(232, 16, 16);
  
    animation: fade 8s ease-in-out infinite;
}

@keyframes fade {
    0%, 100% {
        opacity: 0; /* Começa e termina invisível */
    }
    50% {
        opacity: 1; /* Torna-se visível no meio da animação */
    }
}


/*----------------------rodape---------------------------*/
.footer-desktop {
  background-color: #0c0c0c;
  background-color: #000000;
  color: #fff;
  padding: 20px 0;

  z-index: 3000;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-desk {
  width: 150px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin: 10px 0;
}

.footer-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.footer-menu a:hover {
  color: #fd4f00;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin: 5px 0;
}

footer .social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
}

footer .social-icons a:hover {
  color: #fd4f00;
}

.footer-subscribe {
  text-align: center;
  margin: 20px 0;
}

.footer-subscribe h3 {
  color: #fff;
}

.footer-subscribe p {
  color: #ccc;
}

.footer-subscribe form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-subscribe input {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.footer-subscribe button {
  background-color:#2d2c2c;

  color: #fff;
  padding: 10px 20px;
  border: none;
}
.footer-subscribe button {
  border-radius: 5px;
  margin-left: 10px;
}
.footer-copyright {
  text-align: center;
  color: #ccc;
}
/* mobile*/
/* Estilos para o menu de rodapé */
.footer-menu-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #555;
  color: white;
  padding: 10px 0;
  z-index: 3000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.174);
}

.footer-menu-mobile a {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-menu-mobile a i {
  font-size: 16px;
  margin-bottom: 5px;
}

.footer-menu a i:hover {
  color: white;
}


.container_four {
 
 
    width: 100%;
    background-color: #000;

}
.inner-container-four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; /* Espaçamento entre as colunas */
width: 95%;
min-height: 35rem;
    margin: auto;  
align-items: center;

}

.left-four-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* Espaçamento entre as imagens */
    height: 80%; /* Usa toda a altura do contêiner pai */

}

.image-wrapper {
 position: relative;
    display: flex;
    justify-content: center; /* Centraliza a imagem horizontalmente */
    align-items: center; /* Centraliza a imagem verticalmente */
    overflow: hidden; /* Corta o excesso da imagem */
        transition:  0.15s ease;

}

.image-wrapper img {
    width: 100%;
    height: 100%; /* Assegura que a imagem preencha o contêiner */
    object-fit: cover; /* Mantém a imagem cortada dentro do contêiner */
fill-opacity: calc(1);
filter: grayscale(1);
   

}

.rigth-four-wrapper {
  height: 80%; /* Usa toda a altura do contêiner pai */
    display: flex;
    flex-direction: column;
 
   
}

.top-rigth-four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start; /* Alinha verticalmente os elementos */
    gap: 10px; /* Espaçamento entre os textos */
    margin: 0 3rem;
}

.top-rigth-four h1,  h2 {
  text-align: end;
  font-size: 2.5rem;
  color: #ffff;
  margin: 0;
}

.top-rigth-four   h2 {
  
border-bottom: 8px solid rgb(255, 0, 0);
padding: 1rem;

}
.rigth-four-wrapper  p {
  font-family: var(--font-terce);
   font-size: 1.2rem;
  text-align: end;
  color: #dedede;    
  margin: 0 3rem;
  padding-top: 4rem;


}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:end;
    opacity: 0;
    transition: opacity 0.3s ease; /* Transição suave */
}

.overlay p {
    margin: 0 1rem;
    font-size: 16px;
    text-align: center;
}

.overlay a {
    margin: 10px 0;
    padding: 10px 20px;
    background: #121212;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center; /* Alinha ícone e texto */

}

.overlay i {
    margin-right: 5px; /* Espaçamento entre o ícone e o texto */
}




/* O estado de hover será controlado com JS */
.image-wrapper:hover {
  scale: 1.05;
  border-radius: 15px;
 
}
.image-wrapper:hover img {
    filter: grayscale(0); /* Remove o efeito de grayscale ao fazer hover */
}
.anime {
    overflow: hidden; /* Garante que o texto que está fora da área visível não apareça */
    position: relative; /* Necessário para a animação */
    white-space: nowrap; /* Impede que o texto quebre em várias linhas */
    width: 100%; /* Garante que o contêiner ocupe toda a largura disponível */
    margin-bottom: 6rem;
}

.anime p {
  margin: 0;
    display: inline-block; /* Permite a animação do texto em linha */
    animation: moveLeft 15s linear infinite; /* Aplica a animação ao texto */
    font-size: 10rem; /* Ajuste o tamanho da fonte conforme necessário */
    color: #ffffff; /* Ajuste a cor do texto conforme necessário */
    font-weight: 700;
    /* Abaixo são as propriedades essenciais para garantir que o texto comece e termine fora da tela */
    padding-left: 100%; /* Garante que o texto comece fora da tela à direita */
}

@keyframes moveLeft {
    from {
        transform: translateX(25%); /* Começa fora da tela à direita */
    }
    to {
        transform: translateX(-100%); /* Move até fora da tela à esquerda */
    }
}


       .servicos-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
            padding: 40px;
            max-width: 1200px;
            margin: auto;
        }
        .servico {
            text-align: center;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: transform 0.2s;
        }
        .servico:hover {
            transform: scale(1.05);
        }
        .icone {
            font-size: 40px;
            margin-bottom: 10px;
        }
        .titulo-servico {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .descricao-servico {
            font-size: 16px;
            color: #555;
       text-align: justify;
        }


/* Media Query para telas menores que 768px */
@media (max-width: 768px) {

.top-one-wrapper {

    height: 10rem;
}

.top-one-left-wrapper h1 {

    font-size: 3rem;

}
    /* Adaptação para a middle wrapper */
    .midle-one-wrapper {
        margin: auto;
        margin-top: 5rem;
        margin-bottom: 0rem;
    }

    /* Ajuste na largura das caixas */
    .last-two-left-wrapper {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 40%;
    }

    .bottom-one-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .bottom-one-left-wrapper,
    .bottom-one-rigth-wrapper {
        margin: 0;
        width: 100%;
    }

    .bottom-one-left-wrapper p,
    .bottom-one-rigth-wrapper p {
        font-size: 1.6rem;
    }

    .link-wrapper a {
        font-size: 14px;
    }

    .circle-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Layout em coluna para midle-two-wrapper */
    .midle-two-wrapper {
        grid-template-columns: 1fr; /* Layout em coluna */
        gap: 30px;
    }

    .midle-two-left-wrapper,
    .midle-two-right-wrapper {
        margin: 0;
        width: 100%;
    }

    .midle-two-left-wrapper h3 {
        font-size: 1.8rem;
    }

    .midle-two-left-wrapper p {
        font-size: 0.9rem;
        text-align: justify;
    }

    .midle-two-right-wrapper p {
        font-size: 2.5rem;
        justify-content: center;
    }

    .link-wrapper-midle a {
        font-size: 14px;
    }

    .circle-arrow-midle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Adaptação para bottom-two-wrapper */
    .bottom-two-wrapper {
        grid-template-columns: 1fr; /* Muda para uma coluna */
        gap: 30px;
    }

    .bottom-two-left-wrapper,
    .bottom-two-middle-wrapper,
    .bottom-two-right-wrapper,
    .last-two-wrapper {
        align-items: center;
        padding: 10px;
    }

    .bottom-two-wrapper h3 {
        font-size: 1.2rem;
    }

    .bottom-two-wrapper p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
    }

    /* Ajustes de layout e fontes para last-two-left-wrapper */
    .last-two-left-wrapper {
        padding: 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .last-two-left-wrapper h3 {
        font-size: 48px;
    }

    .last-two-left-wrapper p {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Ajustes no footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    /* Efeito hover para imagem */
    .image-wrapper {
        scale: 1.05;
        border-radius: 15px;
    }

    .image-wrapper img {
        filter: grayscale(0);
    }

    /* Overlay visível em telas pequenas */
    .overlay {
        opacity: 1 !important;
    }
}

/* Media Query para telas menores que 480px */
@media (max-width: 480px) {

    .bottom-one-left-wrapper p,
    .bottom-one-rigth-wrapper p {
        font-size: 1.2rem;
    }

    .link-wrapper {
        flex-direction: column;
        gap: 5px;
        align-items: start;
    }

    .circle-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .midle-two-wrapper {
        padding: 10px;
        gap: 20px;
    }

    .midle-two-left-wrapper h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .midle-two-left-wrapper p {
        font-size: 0.8rem;
    }

    .midle-two-right-wrapper p {
        font-size: 2rem;
    }

    .circle-arrow-midle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .bottom-two-wrapper {
        padding: 10px;
        gap: 20px;
    }

    .bottom-two-wrapper h3 {
        font-size: 1rem;
    }

    .bottom-two-wrapper p {
        font-size: 0.8rem;
    }

    .cta-button {
        font-size: 0.8rem;
    }

    .last-two-left-wrapper h3 {
        font-size: 36px;
    }

    .last-two-left-wrapper p {
        font-size: 14px;
        line-height: 1.3;
    }

    .circle-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Media Query para telas menores que 1024px */
@media (max-width: 1024px) {
    .inner-container-four {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .inner-container-four > *:last-child {
        order: -1;
        margin-top: 2rem;
    }

    .left-four-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        height: 80%;
        padding: 0.5rem;
    }

    .top-rigth-four h1, h2 {
        font-size: 2.5rem;
    }

    .rigth-four-wrapper p {
        font-family: var(--font-terce);
        font-size: 1rem;
        text-align: center;
        color: #dedede;
        margin: 0 1rem;
        padding-top: 2rem;
    }

        .rigth-four-wrapper a {
  
  

    font-size: 23px;

     font-weight: 700;
     margin-left: 16px;
    }


    .left-four-wrapper {
        grid-template-columns: 1fr;
    }
}



/*===================================================*/.container {

    padding: 2rem;
    padding: 0 2rem 8rem 2rem;
background-color:#0a0a0a;
background-color: #000000;


}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 2.5rem;
    color: #1f2937; /* var(--dark) */
    color: #fff;
    margin-bottom: 1rem;
}

.header p {
    font-size: 1.1rem;
    color: #4b5563;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
  
    background: white;
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon-container {
    height: 110px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6; /* var(--light) */
    background-color: #181818;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    background-color: #f4a942;
    background-color: #2f2e2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-icon i {
    font-size: 36px;
    color: #4b5563;
    color: #f4f5f8;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #1f2937; /* var(--dark) */
    color: #f4f5f8;
}

.card-description {
    color: #4b5563;
    color: #f4f5f8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.tag {
    background-color: #e5e7eb;
    background-color:#fd4f00;
    color: #374151;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.investment {
    color: #059669; /* var(--secondary) */
    font-weight: 600;
}

.saiba-mais {
    display: inline-block;
    color:#4b5563;
    color: #f4a942;
    color: #f4f5f8;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.2s ease;
}

.saiba-mais:hover {
    color: #d8681d; /* var(--primary-dark) */
    text-decoration: underline;
}


/* Estilo para o botão "Ver mais ideias" */
.ver-mais-container {
    text-align: center;
    margin: 40px 0 0 0;
}

.ver-mais-btn {
    display: inline-block;
    background-color: #2C3E50;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ver-mais-btn:hover {
    background-color: #1A252F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.ver-mais-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.ver-mais-btn:hover i {
    transform: translateX(4px);
}

/* Estilo para mensagem de nenhum resultado */
.no-results {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

/* ========================FAQS======================= */

/* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            color:#ffffffab;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #333;
        }

        .faq-pergunta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
        }

        .faq-pergunta h3 {
            font-size: 1.2rem;
        }

        .faq-icone {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-resposta {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .faq-item.ativo .faq-resposta {
            padding: 20px;
            max-height: 300px;
            color: #878787;
        }

        .faq-item.ativo .faq-icone {
            transform: rotate(45deg);
        }


        .card-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


