/* Estilos globais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header fixo no topo */
header {
    background-color: #327435;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-logo {
    height: 50px; /* Ajustar a altura do logo */
    width: auto;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    color: white;
    display: none; /* Escondido em telas grandes */
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Sempre visível em telas grandes */
}

header ul li {
    margin: 0 10px;
}

header ul li a {
    color: white;
    text-decoration: none;
}

#nav-menu ul li a:hover {
    text-decoration: underline;
}

/* Banner destacado */
.banner-container {
    width: 100%;
    height: 100vh; /* Altura ajustada para cobrir a altura da tela */
    background-image: url('img/baner.png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Garante que a imagem cubra toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    display: flex;
    justify-content: flex-end; /* Alinha o conteúdo à direita */
    align-items: flex-start; /* Alinha o conteúdo mais para cima */
    padding-top: 50px; /* Espaço do topo */
    text-align: center;
}

.banner-conteudo {
     /* Azul claro */
    padding: 20px;
    border-radius: 10px; /* Bordas arredondadas para a caixa */
    color: #7d7d7d; /* Cor do texto */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidade */
    max-width: 40%; /* Limita a largura máxima da caixa */
    margin-right: 40px; /* Espaçamento da borda direita (traz mais para a esquerda) */
    top: 10%; /* Alinha o texto à esquerda */
    right: 15%;
    z-index: 2; /* Garante que o conteúdo apareça sobre o fundo */
}

@media (max-width:1024px) {

    .banner-conteudo {
        right: 3%;
    }
}

@media (max-width: 768px) {
    .banner-conteudo {
        max-width: 80%; /* Ajusta a largura para telas menores */
        margin-right: 20px; /* Reduz o espaçamento à direita */
        padding: 15px; /* Ajusta o preenchimento para telas menores */
        top: 50%;
        right: 0%;
    }

    .banner-container {
        padding-top: 20px; /* Reduz o espaço do topo em telas menores */
    }
}

.banner-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:  /* Fundo semitransparente */
    z-index 1;
}

.banner-conteudo {
    position: relative;
    z-index: 2;
}


/* Sobre Mim */
section {
    padding: 50px 20px;
    text-align: center;
}

.sobre-container {
    background-color: #a5c4dd; /* Cor de fundo da seção */
    padding: 50px 20px; /* Espaçamento ao redor */
    display: flex;
    justify-content: center;
}

.sobre-content {
    display: flex;
    max-width: 1200px;
    align-items: stretch; /* Garante que os itens tenham a mesma altura */
}

.sobre-foto {
    flex: 1;
    margin-right: 20px;
    display: flex;
    align-items: stretch; /* Faz com que a imagem se estenda para toda a altura disponível */
}

.foto-sobre {
    width: 100%; /* Permite que a largura seja ajustada proporcionalmente */
    height: 100%; /* Garante que a imagem ocupe toda a altura do contêiner */
    border-radius: 40% 40% 0% 40%; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ao redor da foto */
    object-fit: cover; /* Garante que a imagem seja cortada para se ajustar ao contêiner */
}

.sobre-texto {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Garante que os textos se distribuam igualmente na altura */
}

.nome-crp {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.nome-crp strong {
    font-size: 40px;
}

.descricao {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}


.servicos-container {
    background-color: #5d86a8; /* Cor de fundo da seção */
    padding: 50px 20px; /* Espaçamento ao redor */
    text-align: center; /* Centraliza o conteúdo */
}

.titulo-servicos {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333; /* Cor do título */
}

.servicos-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Permite que os itens se ajustem em telas menores */
    max-width: 1200px;
    margin: auto;
}

.servico-item {
    width: 300px;
    margin: 20px;
    text-align: center;
}

.icone-servico img {
    width: 65px;
    height: 65px;
}

.titulo-servico {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000; /* Cor do título do serviço */
}

.descricao-servico {
    font-size: 16px;
    color: #000000; /* Cor do texto da descrição */
    line-height: 1.5;
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
    .servicos-content {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }

    .servico-item {
        width: 100%;
        max-width: 400px; /* Limita o tamanho máximo de cada item */
    }
}


/* Estilo para o carrossel de Avaliações */
.avaliacoes-section {
    background-color: #ffffff; /* Fundo branco */
    padding: 40px 20px; /* Espaçamento interno */
    text-align: center;
}

.avaliacoes-title {
    font-size: 32px; /* Tamanho grande para o título */
    font-weight: bold; /* Negrito */
    color: #333; /* Cor escura para contraste */
    margin-bottom: 30px; /* Espaçamento abaixo do título */
    font-family: 'Georgia', serif; /* Fonte bonita para o título */
}

.carousel-container {
    overflow: hidden;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    
    position: relative;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 40%; /* Ocupa 50% da largura do contêiner */
    box-sizing: border-box;
    padding: 20px;
    text-align: left;
    border: 1px solid #ddd; /* Borda ao redor de cada item */
    border-radius: 8px;
    background-color: #f9f9f9; /* Fundo claro */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombreamento */
    margin: 0 10px; /* Espaçamento entre as caixas */
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.profile-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.profile-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

.profile-info div {
    display: flex;
    flex-direction: column;
}

.profile-p {
    margin: 0;
}

.testimonial-text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: #333;
}


/* Estilo para a seção de Dúvidas */
/* Estilo para a seção Perguntas Frequentes */
.faq-section {
    background-color: #c4c4c4;
    padding: 40px 20px;
    text-align: center;
}

.faq-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #5d86a8;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
}



/* Botão de Ação */
.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Botão fixo do WhatsApp no canto inferior direito */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-fixed img {
    width: 24px;
    height: 24px;
}

.whatsapp-fixed a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-fixed:hover {
    background-color: #1ebd56;
}

/* Fundo azul claro na área de contato */
.contato-area {
    background-color: #5d86a8;
    padding: 40px 20px;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-left,
.contato-right {
    flex: 1;
    margin: 20px;
}

.perfil-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.foto-perfil {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.info-pessoal h3 {
    margin: 0;
}

.info-pessoal p {
    margin: 5px 0;
}

.informacoes-adicionais {
    margin-top: 20px;
}

.informacoes-adicionais h1 {
    margin: 0;
}

.informacoes-adicionais p {
    margin: 10px 0;
    display: flex;
    gap: 7px;
    align-items: center;
}

.informacoes-adicionais p img {
    width: 25px;
}

.instagram-icon {
    width: 24px; /* Ajuste o tamanho conforme necessário */
    height: 24px;
    vertical-align: middle; /* Alinha o ícone verticalmente */
}


.instagram-link {
    display: inline-block;
    margin-top: 10px;
    color: #E1306C;
    text-decoration: none;
    font-weight: bold;
}

.instagram-link:hover {
    color: #d6249f;
}

/* Estilo da seção direita */
.contato-right h3 {
    margin-bottom: 10px;
}

.contato-right p {
    margin: 5px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
    }

    .contato-left,
    .contato-right {
        margin: 10px 0;
    }

    .contato-right {
        width: 100%;
    }

    .perfil-info {
        gap: 15px;
        align-items: center;
    }

    .foto-perfil {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Rodapé */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .logo {
        display: none;
    }

    .header-content {
        display: contents;
    }

    header ul {
        display: none; /* Escondido em telas menores, controlado pelo JS */
        flex-direction: column;
        width: 100%;
        background-color: #4CAF50;
    }

    header ul li {
        margin: 10px 0;
        text-align: center;
    }

    .banner {
        padding: 80px 10px;
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 30px;
    }

    section {
        padding: 30px 10px;
    }

    .sobre-content {
        flex-direction: column; /* Empilha os elementos em telas menores */
        align-items: center; /* Centraliza os itens no eixo horizontal */
    }

    .sobre-foto {
        margin-right: 0;
        margin-bottom: 20px; /* Adiciona espaço abaixo da foto */
        align-items: center; /* Centraliza a foto */
        height: auto; /* Ajusta a altura da imagem automaticamente */
    }

    .foto-perfil {
        width: 40%; /* Faz com que a imagem ocupe toda a largura em telas menores */
        height: auto; /* Ajusta a altura automaticamente */
        max-width: 300px; /* Define um tamanho máximo para a imagem */
    }

    .sobre-texto {
        text-align: center; /* Centraliza o texto em telas menores */
        justify-content: center;
        align-items: center;
    }

    .nome-crp {
        font-size: 20px;
    }

    .descricao {
        font-size: 14px;
    }
}

    .servico {
        margin: 15px 0;
    }


@media (max-width: 480px) {
    .banner {
        padding: 70px 10px;
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        padding: 15px;
    }

    section {
        padding: 20px 5px;
    }

    .servico {
        margin: 10px 0;
    }
}
