@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;600&family=Roboto:wght@500&display=swap');


*{
    margin: 0;
}

@keyframes entering{ /* animação do ínicio do site */
    from {
        opacity: 0;
        transform: translateY(-200px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
    }
}

body{
    background: rgb(0,0,0);
    background: linear-gradient(293deg, rgba(0,0,0,1) 0%, rgba(18,18,18,1) 33%, rgba(25,25,25,1) 50%, rgba(18,18,18,1) 72%, rgba(0,0,0,1) 100%);
    height: 100vh; /* preencher 100% da tela e não ter barra de rolagem */
    overflow: hidden; 
    margin-top: 50px;
}

.topo{
    text-align: center;
    margin-top: 40px; 
    animation: entering 1s ease-in-out;
}

.cliente{
    width: 150px;
    transition: transform 0.3s ease; 
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.txtName{ /* texto do Título */
    font-size: 20px;
    background: rgb(0,0,0);
    background: linear-gradient(293deg, rgba(0,0,0,1) 0%, rgba(18,18,18,1) 33%, rgba(25,25,25,1) 50%, rgba(18,18,18,1) 72%, rgba(0,0,0,1) 100%);
background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 4px;
    margin-bottom: 6px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.cota{ /* Foi necessário criar uma class somente para esse estilo para retirar a distância do T para a segunda letra*/
    font-size: 40px;
    margin-right: 0px; /* Distância para a 2 letra */
    background: rgb(255, 255, 255);
background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.facil{ /* Foi necessário criar uma class somente para esse estilo para retirar a distância do T para a segunda letra*/
    font-size: 40px;
    margin-right: 0px; /* Distância para a 2 letra */
    background: rgb(255, 255, 255);
background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.especialidade { /* Subtítulo */
    font-size: 28px;
    color: #e9e9e9;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.especialidade::after { /* barra underline em gradient abaixo do subtítulo */
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to top, #d6ad76 0%, #e0a147 100%);
    z-index: -1;
}

.botões {  /* centralizar os botões */
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: entering 1s ease-in-out;
}

.btn {
/* estilização dos botões */
    background-color: #eeeeee;
    border-radius: 38px; 
    border: 1.8px solid #d8a159;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 4.0); /* sombra nos botões */ 
    height: 80px;
    cursor: pointer;
    width: 50vh; 
/* estilização texto dos botões */
    display: flex;
    align-items: center;
    justify-content:left;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 16px;
    white-space: nowrap;
    transition: transform 0.3s ease;
    
}

.textbtn{
    text-decoration: none;
    color: inherit;
}

.btn img { /* icons */
    width: 45px;
    margin-right: 15px;
    margin-left: 15px;
}

.text-container {
    display: flex;
    flex-direction: column; /* Ajuste para posicionar elementos em coluna */
}

.titulos {
    /* Estilo específico para o texto "Consórcios, financiamentos" */
    font-size: 22px;
    font-weight: bold;
}

.descricao {
    /* Estilo específico para o "oi" */
    font-size: 16px; /* Ajuste conforme necessário */
    color: #000000; /* Cor de exemplo */
    margin-top: 2px; /* Espaço superior entre "Consórcios, financiamentos" e "oi" */
    font-weight: bold;
}

.mapa img{ /* icon mapa, alteração para padronizar de acordo com os outros icons */
    width: 35px;
    margin-left: 10px;
}

.rodape { /* créditos for me :) */
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #e9e9e9;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}

.logo {
    width: 15px;
    vertical-align: middle; /* alinhar imagem e texto */
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.paulinho{
    margin-left: 2px;
    text-decoration: none;
    color: inherit;
    font-size: 8px;
    color: #e9e9e9;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}


@media (max-width: 4000px) { /* responsividade para aparelhos movéis, ponto alvo da criação do site. */
    .btn {
    width: calc(30vw - 10px);
    transform: scale(0.8);
    margin-bottom: -10px;
    height: 100px;
    border-radius: 50px;
    font-size: 20px;
    } 
  }


@media (max-width: 1460px) { /* responsividade para aparelhos movéis, ponto alvo da criação do site. */
    .btn {
    width: calc(50vw - 10px);
    transform: scale(0.8);
    margin-bottom: -10px;
    height: 100px;
    border-radius: 50px;
    font-size: 20px;
    } 
  }
  
  @media (max-width: 890px) { /* responsividade para aparelhos movéis, ponto alvo da criação do site. */
    .btn {
    width: calc(80vw - 10px);
    transform: scale(0.8);
    } 
  }

  @media (max-width: 580px) { /* responsividade para aparelhos movéis, ponto alvo da criação do site. */
   
    
   
    .btn {
    width: calc(100vw - 10px);
    transform: scale(0.8);
    margin-bottom: -10px;
    font-size: 20px;
    } 
  }

 
@media (max-width: 410px) {
    .cliente {
        width: 100px;
        height: 100px;
        margin-bottom: 0px;
    }

    .txtName{
        font-size: 18px;
    }

    .trança{
        font-size: 22px;
    }

    .destaque{
        font-size: 22px;
    }

    .especialidade{
        font-size: 18px;
    }
    .btn {
        height: 90px;
    }

    .titulos {
        white-space: normal; /* Permite que o texto quebre para a próxima linha */
        height: auto;
}

.descricao {
    white-space: normal; 
    height: auto;
}

}
  

@media (max-width: 300px) { /* responsividade para aparelhos movéis, ponto alvo da criação do site. */ 
    .btn {
    width: calc(100vw - 5px);
    transform: scale(0.7);
    margin-bottom: -20px;
    border-radius: 30px;
    font-size: 20px;
    height: 110px;
    } 

    .especialidade {
        font-size: 16px;
    }
  }

  
  @media (max-width: 480px) {
    .btn {
        margin-bottom: -25px;
        height: 100px;
        border-radius: 60px;
        padding-top: -40px;
    }

    .cliente{
        width: 80px;
        transition: transform 0.3s ease; 
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
    }

    .titulos {
        /* Estilo específico para o texto "Consórcios, financiamentos" */
        font-size: 18px;
        font-weight: bold;
    }
    
    .descricao {
        /* Estilo específico para o "oi" */
        font-size: 14px; /* Ajuste conforme necessário */
        color: #000000; /* Cor de exemplo */
        margin-top: 2px; /* Espaço superior entre "Consórcios, financiamentos" e "oi" */
        font-weight: bold;

    }
    
    .botões {
        gap: 30px;
    }
}


@media (max-width: 365px) {

    .txtName{
        font-size: 10px;
    }

    .trança{
        font-size: 14px;
    }

    .btn {
        height: 60px;
        border-radius: 20px;
        padding-top: -80px;
    }

    .titulos {
        /* Estilo específico para o texto "Consórcios, financiamentos" */
        font-size: 16px;
        font-weight: bold;
    }
    
    .descricao {
        /* Estilo específico para o "oi" */
        font-size: 10px; /* Ajuste conforme necessário */
        color: #000000; /* Cor de exemplo */
        margin-top: 2px; /* Espaço superior entre "Consórcios, financiamentos" e "oi" */
        font-weight: bold;
}

}



@media (max-width: 290px) {
    
    .botões {
        gap: 10px;
    }

    .btn {
        margin-bottom: -25px;
        height: 100px;
        width: 350px;
        border-radius: 70px;
        padding-top: -40px;
    }

    .titulos {
            white-space: normal; /* Permite que o texto quebre para a próxima linha */
            height: auto;
    }

    .descricao {
        white-space: normal; 
        height: auto;
    }

}
