
/* Reset de margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cabeçalho e Menu */
header {
    background-color: #1e90ff;
    padding: 20px;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

nav .menu {
    list-style-type: none;
    display: flex;
}

nav .menu li {
    margin: 0 15px;
}

nav .menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

nav .menu a:hover {
    text-decoration: underline;
}

/* Alinhando a imagem do cabeçalho à esquerda */
nav .imagem-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

nav .imagem-header img {
    width: 60px;
    height: auto;
}

/* Corpo da página */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Seção Home */
.home {
    background-color: #e0f7fa; /* Cor suave para o fundo */
    padding: 50px 20px; /* Padding para dar espaçamento */
    text-align: center;
}

.home .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Em telas pequenas, os itens ficam empilhados */
    align-items: center;
    gap: 40px; /* Espaçamento entre a imagem e o texto */
}

/* Alinha a imagem da psicóloga à esquerda e o texto à direita */
.home-content {
    display: flex;
    align-items: center; /* Alinha os itens verticalmente ao centro */
    justify-content: space-between; /* Coloca a imagem e o texto em colunas separadas */
    gap: 40px; /* Espaçamento entre imagem e texto */
}

/* Imagem da psicóloga */
.imagem-psicologa img {
    width: 350px;
    height: 550px;
    object-fit: cover; /* Garantir que a imagem seja redonda e se ajuste corretamente */
    border-radius: 2%; /* Imagem circular */
}

/* Texto e botão */
.home-texto  {
    max-width: 600px; /* Limita  a largura do texto */
}
.abaixofoto {
    margin-top: 20px; /* Cria um espaçamento acima da abaixofoto, se necessário */
}
.home h2 {
    font-size: 2.5rem;
    color: #0277bd;
    margin-bottom: 20px;
}

.home p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #1e90ff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #0077cc;
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
    .home-content {
        flex-direction: column; /* Empilha a imagem e o texto em telas pequenas */
        text-align: center; /* Centraliza o texto */
        gap: 20px; /* Menos espaçamento entre imagem e texto */
    }

    .imagem-psicologa img {
        width: 120px; /* Reduz o tamanho da imagem em telas menores */
        height: 120px;
    }

    .home h2 {
        font-size: 2rem; /* Diminui o tamanho do título */
    }

    .home p {
        font-size: 1rem; /* Diminui o tamanho do parágrafo */
    }
}


.cta-btn {
    background-color: #1e90ff;
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #0077cc;
}

/* Seção Sobre */
.sobre {
    padding: 50px 20px;
    text-align: center;
}

.sobre h2 {
    font-size: 2rem;
    color: #0277bd;
    margin-bottom: 20px;
}

.sobre p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção Serviços */
.servicos {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.servicos h2 {
    font-size: 2rem;
    color: #0277bd;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.servico {
    background-color: #f1f8e9;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;  /* Garantir espaçamento entre os cards */
}

.servico h3 {
    font-size: 1.5rem;
    color: #0288d1;
    margin-bottom: 15px;
}

.servico p {
    color: #555;
}

/* Seção Tratamentos */
.tratamentos {
    padding: 50px 20px;
    text-align: center;
    background-color: #f1f8e9;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;  /* Garantir espaçamento entre os cards */
    
}


.tratamentos h2 {
    font-size: 2rem;
    color: #0277bd;
    margin-bottom: 20px;
}

.tratamentos p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.tratamentos ul {
    list-style-type: none;
    margin-top: 20px;
    padding: 0;
}

.tratamentos ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Seção Resultados */
.resultados {
    padding: 50px 20px;
    text-align: center;
    background-color: #f1f8e9;
}

.resultados h2 {
    font-size: 2rem;
    color: #0277bd;
    margin-bottom: 20px;
}

.resultados p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção Contato */
.contato {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

.contato h2 {
    font-size: 2rem;
    color: #0277bd;
    margin-bottom: 20px;
}

.contato p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Rodapé */
footer {
    background-color: #1e90ff;
    color: white;
    text-align: center;
    padding: 15px;
}

footer p {
    font-size: 1rem;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    .servico {
        width: 100%;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

