@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* Estilo da imagem do banner */
.banner {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
}

/* SESSÃO SERVIÇOS */
#servicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background-color: #121212;
    color: #fff;
}

/* Estilo de Cada Serviço */
.servico {
    width: 15%;
    background-color: #1c1c1c;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Ícone no Topo */
.servico i {
    font-size: 45px;
    margin-bottom: 10px;
    color: #F48034;
}

/* Título do Serviço */
.servico h1 {
    font-size: 1rem;
    margin: 8px 0;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* Separador Suave */
.servico hr {
    width: 60%;
    border: none;
    border-top: 1px solid rgba(244, 128, 52, 0.7);
    margin: 12px 0;
}

/* Texto Descritivo */
.servico p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

/* Efeito de Hover */
.servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.texto-servicos{
    width: 90%;
}

.texto-servicos p{
    color: #fff;
    text-align: justify;
}

.botao-servicos {
    width: 25%;
    background-color: #F48034;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.botao-servicos:hover {
    background-color: #f45034;
    color: #fff;
}

/*TABELA SERVIÇOS*/
table {
    width: 90%;
    border-collapse: collapse;
    color: white;
    background-color: #222;
}

thead th {
    text-align: left;
    padding: 1%;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #F48034;
    border-bottom: 2px solid #F48034;
}

tbody tr {
    border-bottom: 1px solid #333;
}

tbody tr:hover {
    background-color: #333;
}

tbody td {
    padding: 2% 1%;
    font-size: 1rem;
    font-weight: 300;
}

tbody td:first-child {
    font-weight: bold;
}

tbody td:last-child {
    text-align: left;
}

tbody td span.small-text {
    font-size: 1rem;
    color: #F48034;
}

tbody td span.price {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

/* Para dar destaque à palavra "a partir de" */
tbody td span.small-text::before {
    font-weight: normal;
    color: #F48034;
    font-size: .7rem;
}

/*DEPOIMENTOS DE CLIENTES*/
/* Estilo geral para a seção de depoimentos */
.depoimentos {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

/* Estilo para cada depoimento do cliente */
.estrelas {
    color: #f48034;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.texto-depoimento {
    font-size: 0.9rem;
    color: #fff;
    overflow-wrap: break-word;
    white-space: normal;
}

.foto {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.depoimento {
    display: inline-block; /* Manter o display inline-block para alinhar lado a lado */
    width: 18%;
    margin: 0 1%;
    vertical-align: top;
    padding: 1%;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 33vh;
    position: relative; /* Permite posicionar os filhos em relação a essa div */
}

.autor {
    position: absolute; /* Coloca o autor em posição absoluta */
    bottom: 0%; /* Alinha 3% da base da div */
    left: 0; /* Alinha à esquerda */
    right: 0; /* Alinha à direita */
    display: flex; /* Flexbox para alinhar a foto e o nome */
    align-items: center; /* Alinha verticalmente */
    margin-left: 10%;
}

.nome {
    font-weight: bold; /* Negrito para o nome */
    margin-bottom: 0%; /* Margem inferior de 3% */
}

.twitter {
    display: block; /* Faz com que a linha do twitter fique sempre abaixo do nome */
    font-size: 0.9rem; /* Tamanho menor para o Twitter */
    color: #f48034; /* Cor do texto do Twitter */
}

/* Estilo do cabeçalho dentro de depoimentos */
.depoimentos h1 {
    text-align: left;
}

/* Estilo para a barra de rolagem */
.depoimentos::-webkit-scrollbar {
    height: 8px;
}

.depoimentos::-webkit-scrollbar-track {
    background: #444;
}

.depoimentos::-webkit-scrollbar-thumb {
    background: #F48034;
    border-radius: 10px;
}

.depoimentos::-webkit-scrollbar-thumb:hover {
    background: #F39C12;
}