/* Configurações Gerais */
body {
    font-family: 'Contrail One', sans-serif;
    background-color: black;
    color: #f6c74f;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

/* Seção de Serviços */
#servicos {
    padding: 50px;
    background-color: #1a1a1a;
    color: #f6c74f;
}

/* Estilo do título e subtítulo */
.servicos-header {
    text-align: center;
    margin-bottom: 40px;
}

.servicos-titulo {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f6c74f;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.7);
}

.servicos-subtitulo {
    font-size: 22px;
    color: rgba(246, 199, 79, 0.8);
    font-style: italic;
}

/* Container e Cards de Serviços */
.servico-container {
    display: flex;
    flex-wrap: wrap; /* Ajusta em múltiplas linhas */
    justify-content: center; /* Centraliza os cards */
    gap: 20px; /* Espaço entre os cards */
}

.servico-item {
    background-color: black;
    border: 2px solid rgba(246, 199, 79, 0.8);
    border-radius: 10px;
    padding: 20px;
    width: 400px; /* Largura maior para acomodar o texto */
    height: auto; /* Altura ajustável conforme necessário */
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.servico-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(246, 199, 79, 0.8); /* Sombra mais intensa no hover */
}

.servico-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f6c74f;
}

.servico-item p {
    font-size: 16px;
    line-height: 1.6; /* Melhor espaçamento entre linhas */
    margin-bottom: 10px;
}
.servico-item li {
    list-style: none;
}

/* Responsividade dos Cards */
@media screen and (max-width: 768px) {
    .servico-container {
        flex-direction: column; /* Empilha os cards no mobile */
        align-items: center;
    }

    .servico-item {
        width: 90%; /* Cards ocupam quase toda a largura no mobile */
    }
}

/* Estilo para a Galeria */
#galeria {
    padding: 50px;
    background-color: #000;
    text-align: center;
}

.galeria-titulo {
    font-size: 36px;
    font-weight: bold;
    color: #f6c74f;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.galeria-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.galeria-container img {
    width: 350px; /* Largura maior para destacar as imagens */
    height: auto; /* Mantém proporções */
    border-radius: 10px;
    border: 2px solid #f6c74f;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Sombra leve */
    transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.galeria-container img:hover {
    transform: scale(1.1);
    border-color: rgb(252, 147, 10); /* Altera a cor da borda no hover */
    box-shadow: 0px 6px 15px rgba(246, 199, 79, 0.6);
}
