body {
    font-family: "Bricolage Grotesque", sans-serif;
    background-image: url(images/background.png);
    text-align: center;
} 


header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 0;
    background-color: #7a7a7a;
    width: 100%;
    z-index: 1000;
    position: fixed; /* Fixa o header no topo */
    top: 0;
    left: 0;
    height: 75px; /* Altura fixa do header */
}

h1 {
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    margin-left: -50px;
    color: #000000;
}

.cabelo {
    margin-top: 120px;
    font-size: 33px;
    font-family: "Bricolage Grotesque", sans-serif;
    color: #0a0a0a;
}

.barba {
    margin-top: -3px;
    font-size: 33px;
    font-family: "Bricolage Grotesque", sans-serif;
    text-decoration: overline;
}

.sobrancelha{
    margin-top: 40px;
    margin: 10px;
    font-size: 33px;
    font-family: "Bricolage Grotesque", sans-serif;
    text-decoration: overline;
}

.skin-care {
    margin-top: 30px;
    margin: 10px;
    font-size: 33px;
    font-family: "Bricolage Grotesque", sans-serif;
    text-decoration: overline;
}

.ctt {
    text-decoration: none;
    color: #4CAF50;
}

.img-logo {
    max-width: 120px;
    height: auto;
    margin-top: -79px;
    align-items: center;
    margin-left: 78%;
}

.img-fundo-main {
    width: 100%;
    height: auto;
    margin-top: 50px;
    filter: brightness(50%); /* Reduzir o espaçamento entre a imagem e o conteúdo */
}

.services-container {
    display: flex;
    flex-direction: column; /* Alinha os elementos em uma coluna */
    align-items: center;
    gap: 1rem; /* Espaçamento uniforme entre os elementos */
    padding: 2rem 1rem; /* Reduz o padding para dispositivos menores */
    margin-top: -25px;; /* Certifica-se de que está abaixo do header */
}

.service-box {
    display: flex; /* Configura como flex para alinhar os elementos horizontalmente */
    justify-content: space-between; /* Espaça o ícone e o botão nas extremidades */
    align-items: center; /* Centraliza verticalmente os elementos */
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco */
    border-radius: 15px; /* Bordas arredondadas */
    padding: 0.5rem 1rem; /* Espaçamento interno */
    width: 100%; /* Ocupa toda a largura disponível */
    max-width: 400px; /* Define uma largura máxima para telas maiores */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma leve sombra */
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: scale(1.02); /* Pequeno efeito de aumento ao passar o mouse */
}

.disc {
    font-size: 13px;
}

.service-box img {
    width: 50px; /* Ajuste do tamanho do ícone */
    height: 50px;
}    

.service-box h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.price {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-agendar {
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}

.btn-agendar:hover {
    background-color: #0a7710;
}

.btn-agendar-app {
    background-color: #3a9beb;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}

.btn-agendar-app:hover {
    background-color: #0a4f77;
}

/* Responsividade para dispositivos menores */
@media (max-width: 768px) {
    .service-box {
        width: 100%; /* Ocupa 100% da largura em telas pequenas */
    }
}

