 /* Estilos gerais */
 body {
    font-family: 'Garet', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8e8e3;
    color: #30503a;
    line-height: 1.6;
   }
  
   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
    font-family: 'Versailles', serif;
    color: #26422f;
    margin-bottom: 0.5em;
   }
  
   a {
    color: #30503a;
    text-decoration: none;
    transition: color 0.3s ease;
   }
  
   a:hover {
    color: #26422f;
   }
  
   img {
    max-width: 100%;
    height: auto;
   }
  
   section {
    padding: 60px 0;
   }
  
   .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   }
  
   .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #30503a;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
   }
  
   .btn:hover {
    background-color: #e8e8e3;
    color: #30503a;
   }
  
   /* Cabeçalho */
   header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
   }
  
   nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
   }
  
   .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #26422f;
    display: flex;
    align-items: center;
   }
  
   header .logo img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
   }
  
   header .logo img:hover {
    transform: scale(1.05);
   }
  
   nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
   }
  
   nav a {
    padding: 10px 15px;
    border-radius: 5px;
   }
  
   nav a:hover {
    background-color: #e8e8e3;
    color: #26422f;
   }
   
   

   /* Sobre */
   #sobre {
    position: relative;
    background-image: url('imagens/fundo-folhas.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
   }
  
   #sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
   }
  
   .sobre-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
   }
  
   .sobre-imagem {
    flex: 0 0 400px;
    text-align: center;
   }
  
   .imagem-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 470px;
   }
  
   .imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
   }
  
   .imagem-wrapper img:hover {
    transform: scale(1.1);
   }
  
   .sobre-info,
   .local-atendimento {
    background-color: #e8e8e3;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #30503a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }
  
   .local-atendimento h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #26422f;
   }
  
   .sobre-conteudo {
    flex: 1;
   }
  
   .sobre-conteudo h2 {
    font-size: 2.5em;
    color: #26422f;
    margin-bottom: 1em;
   }
  
   .sobre-conteudo h3 {
    font-size: 1.8em;
    color: #30503a;
    margin-bottom: 1.5em;
   }
  
   .sobre-descricao p {
    font-size: 1.2em;
    line-height: 1.8;
   }
  
   .especialidades,
   .local-atendimento {
    margin-top: 2em;
    padding: 20px;
    border-radius: 10px;
    background-color: #e8e8e3;
   }
  
   .especialidades h4,
   .local-atendimento h4 {
    font-size: 1.5em;
    color: #26422f;
    margin-bottom: 1em;
   }
  
   .especialidades ul {
    list-style: none;
    padding: 0;
   }
  
   .especialidades li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8em;
    font-size: 1.1em;
   }
  
   .especialidades li::before {
    content: "•";
    color: #30503a;
    position: absolute;
    left: 0;
   }
  
   /* Serviços */
   #servicos {
    background-color: #455648;
    padding: 80px 0;
   }
  
   #servicos h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 32px;
   }
  
   .servicos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
   }
  
   .servico-card {
    background-color: #e8e8e3;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
   }
  
   .servico-card:hover {
    transform: translateY(-5px);
   }
  
   .servico-card h3 {
    font-size: 1.5em;
    color: #26422f;
    margin-bottom: 15px;
   }
  
   .servico-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #30503a;
   }
  
   /* Media Query para responsividade */
   @media (max-width: 768px) {
    .servicos-container {
     grid-template-columns: 1fr;
     padding: 0 20px;
    }
  
    .servico-card {
     margin-bottom: 20px;
    }
   }
  
   /* Avaliações */
   .avaliacoes-section {
    position: relative;
    background-image: url('imagens/fundo-folhas.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
   }
  
   .avaliacoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
   }
  
   .avaliacoes-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   }
  
   .avaliacoes-header {
    text-align: center;
    margin-bottom: 40px;
   }
  
   .avaliacoes-header h2 {
    font-size: 2.5em;
    color: #26422f;
    margin-bottom: 10px;
   }
  
   .avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
   }
  
   .avaliacao-card {
    background-color: #e8e8e3;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
   }
  
   .avaliacao-card:hover {
    transform: translateY(-5px);
   }
  
   .avaliacao-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
   }
  
   .avaliacao-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
   }
  
   .avaliacao-info h4 {
    font-size: 1.2em;
    color: #26422f;
    margin-bottom: 5px;
   }
  
   .avaliacao-info .stars {
    color: #FFC107;
    font-size: 1em;
   }
  
   .avaliacao-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #30503a;
   }
  
   .google-review-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #30503a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
   }
  
   .google-review-link:hover {
    color: #26422f;
   }
  
   /* Contato */
   #contato {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e3 100%);
    padding: 80px 0;
   }
  
   .contato-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 0 20px;
   }
  
   .contato-form {
    flex: 1;
   }
  
   .contato-form h2 {
    font-size: 2.5em;
    color: #26422f;
    margin-bottom: 30px;
    text-align: left;
   }
  
   .form-group {
    margin-bottom: 20px;
   }
  
   .form-group label {
    display: block;
    font-size: 1.1em;
    color: #30503a;
    margin-bottom: 5px;
   }
  
   .form-group input,
   .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #30503a;
    font-family: 'Garet', sans-serif;
    transition: border-color 0.3s ease;
   }
  
   .form-group input:hover,
   .form-group textarea:hover {
    border-color: #26422f;
   }
  
   .form-group textarea {
    height: 150px;
   }
  
   .contato-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }
  
   .contato-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
   }
  
   /* Rodapé */
   footer {
    background-color: #26422f;
    color: #ffffff;
    padding: 60px 0 0 0;
    text-align: left;
   }
  
   .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
   }
  
   .footer-column h3 {
    color: #e8e8e3;
    margin-bottom: 20px;
    font-size: 1.2em;
   }
  
   .footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
   }
  
   .footer-desc {
    font-size: 1em;
    line-height: 1.6;
    color: #e8e8e3;
   }
  
   .footer-column ul {
    list-style: none;
    padding: 0;
   }
  
   .footer-column ul li {
    margin-bottom: 10px;
   }
  
   .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
   }
  
   .footer-column ul li a:hover {
    color: #e8e8e3;
   }
  
   .contato-info li,
   .horario-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e8e8e3;
   }
  
   .contato-info i {
    margin-right: 10px;
    color: #e8e8e3;
   }
  
   .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
   }
  
   .footer-bottom p {
    color: #e8e8e3;
   }
  
   .social-media {
    margin-top: 15px;
   }
  
   .social-media a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.2em;
    transition: color 0.3s;
   }
  
   .social-media a:hover {
    color: #e8e8e3;
   }
  
   /* WhatsApp Button */
   .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
   }
  
   .whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    text-decoration: none;
    transition: background-color 0.3s ease;
   }
  
   .whatsapp-button a:hover {
    background-color: #128c7e;
   }
  
   /* Botões de Ação */
   .action-buttons {
    text-align: center;
    margin-top: 40px;
   }
  
   /* Media Queries */
   @media (max-width: 768px) {
    .sobre-container {
     flex-direction: column;
    }
  
    .sobre-imagem {
     max-width: 300px;
     margin: 0 auto;
    }
  
    .contato-container {
     flex-direction: column;
    }
  
    .contato-map iframe {
     height: 300px;
    }
  
    .footer-container {
     grid-template-columns: 1fr;
     text-align: center;
    }
   }
  
   /* Ajuste os estilos do logo no cabeçalho */
   header .logo {
    display: flex;
    align-items: center;
   }
  
   header .logo img {
    max-height: 50px;
    /* Ajuste este valor conforme o tamanho da sua logo */
    width: auto;
    transition: transform 0.3s ease;
   }
  
   header .logo img:hover {
    transform: scale(1.05);
   }
  
   /* Ajuste o padding do nav para acomodar melhor a logo */
   nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
   }
  
   /* Media query para responsividade da logo */
   @media (max-width: 1768px) {
    header .logo img {
     max-height: 80px;
     /* Logo um pouco menor em telas menores */
    }
   }
  
   
  
   /* Sobre */
   #sobre {
    position: relative;
    /* Garante que o posicionamento absoluto funcione */
    background-image: url('imagens/fundo-folhas.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* Evita que o pseudo-elemento vaze */
   }
  
   #sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* Cor de fundo branca com 30% de transparência */
    z-index: 1;
    /* Coloca o overlay atrás do conteúdo */
   }
  
   .sobre-container {
    position: relative;
    /* Garante que o conteúdo fique acima do overlay */
    z-index: 2;
    /* Seus outros estilos para .sobre-container aqui */
   }
  
   /* Agendamento */
   #agendamento {
    position: relative;
    /* Necessário para o posicionamento do pseudo-elemento */
    background-image: url('imagens/fundo-folhas.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    /* Espaçamento para o conteúdo interno */
    color: #30503a;
    /* Cor padrão do texto para garantir contraste */
   }
  
   /* Camada de transparência */
   #agendamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* Cor branca com 30% de transparência */
    z-index: 1;
    /* Garante que a camada fique atrás do conteúdo */
   }
  
   /* Estilos do conteúdo dentro da seção */
   #agendamento .container {
    position: relative;
    /* Para que o conteúdo fique na frente da camada de transparência */
    z-index: 2;
   }
  
   #agendamento h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #26422f;
    /* Cor do título */
   }
  
   #agendamento p {
    font-size: 1.2em;
    margin: 20px 0;
   }
  
   .cta-buttons {
    text-align: center;
   }
  
   .btn-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #30503a;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
   }
  
   .btn-cta:hover {
    background-color: #26422f;
    transform: translateY(-3px);
   }
  
   /* Avaliações */
   .avaliacoes-section {
    position: relative;
    background-image: url('imagens/fundo-folhas.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
   }
  
   .avaliacoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* Cor de fundo branca com 30% de transparência */
    z-index: 1;
   }
  
   .avaliacoes-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   }
  
   /* Mantenha os outros estilos das avaliações, apenas certifique-se que os elementos dentro 
   da .avaliacoes-container estejam visíveis sobre o fundo */
   .avaliacoes-header {
    position: relative;
    z-index: 2;
   }
  
   .avaliacoes-grid {
    position: relative;
    z-index: 2;
   }
  
   .google-review-link {
    position: relative;
    z-index: 2;
   }
  
   /* Estilo para seções com fundo e transparência */
   .section-with-bg {
    background-image: url('imagens/fundo-folhas.jpg');
    background-size: cover;
    background-position: center;
    color: #30503a;
   }
  
   .section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
   }
  
   /* Estilo para descrições de seções */
   .section-description {
    font-size: 1.2em;
    text-align: center;
    margin: 20px 0 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
   }
  
   /* Estilo atualizado para botões CTA */
   .cta-buttons {
    text-align: center;
    margin-top: 40px;
   }
  
   .btn-cta {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #30503a;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   }
  
   .btn-cta:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
   }
  
   /* Serviços */
   .servicos-cta {
    text-align: center;
    /* Centraliza o botão na seção */
    margin-top: 40px;
    /* Espaçamento acima do botão */
   }
  
   .btn-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #30503a;
    /* Cor do texto em verde */
    background-color: #e8e8e3;
    /* Fundo do botão em off-white */
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
   }
  
   .btn-cta:hover {
    background-color: #526658;
    /* Cor mais escura no hover */
    color: #e8e8e3;
    /* Muda a cor do texto para verde mais escuro no hover */
    transform: translateY(-3px);
    /* Elevação sutil no hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
   }
  
   /* Sobre Imagem */
   .sobre-imagem {
    text-align: center;
    /* Centraliza os elementos da coluna */
   }
  
   .sobre-info,
   .local-atendimento {
    background-color: #e8e8e3;
    /* Fundo dos blocos */
    padding: 20px;
    margin-top: 20px;
    /* Adiciona espaçamento entre os blocos */
    border-radius: 10px;
    font-size: 1.1em;
    color: #30503a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Sombra suave */
   }
  
   .local-atendimento h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #26422f;
   }
  
   .sobre-imagem .imagem-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   }
  
   /* Media Queries */
   @media (max-width: 768px) {
    section {
     padding: 60px 0;
    }
  
    section h2 {
     font-size: 2em;
    }
  
    .section-description {
     font-size: 1.1em;
     padding: 0 20px;
    }
  
    .btn-cta {
     padding: 12px 30px;
     font-size: 1.1em;
    }
   }
  
   @media (max-width: 1768px) {
    header .logo img {
     max-height: 80px;
     /* Logo um pouco menor em telas menores */
    }
   }
  