/* Importando a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Fonte moderna e elegante */
    background-color: #f4f4f9; /* Cor de fundo neutra */
    color: #333; /* Texto em cor escura */
}

header {
    background-color: #393737;
    color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para profundidade */
}

header .logo-home {
    max-width: 200px;
    margin-bottom: 10px;
}

header nav a {
    color: #b6a784;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #f2f2f2;
    border-bottom: 2px solid #f2f2f2; /* Efeito hover */
}

/* Seção de busca */
.search-section {
    background-color: #393737;
    padding: 30px;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
}

.search-section h2 {
    color: #b6a784;
    margin-bottom: 15px;
    font-weight: 600;
}

.search-section form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.search-section input,
.search-section select {
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 200px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.search-section input:focus,
.search-section select:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.search-section button {
    padding: 12px 20px;
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.search-section button:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

/* Imóveis em Destaque */
.featured-properties {
    text-align: center;
    padding: 0px 20px;
}

.featured-properties h2 {
    color: #393737;
    margin-bottom: 20px;
    font-weight: 600;
}



/* Estilo dos Cards com Efeito de Hover */
.property-card .view-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.property-card .view-more:hover {
    background-color: #a29072;
}

/* Estilos para o modal de imagem */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.property-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    overflow: hidden;
}

.property-card:hover {
    transform: scale(1.03); /* Leve ampliação */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.property-card img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.property-card:hover img {
    transform: scale(1.1); /* Zoom na imagem ao passar o mouse */
}

.property-card h3 {
    margin-top: 15px;
    font-weight: bold;
    color: #393737;
}

.property-card p {
    color: #666;
    margin-top: 5px;
}

.property-card p.price {
    font-size: 1.1em;
    color: #b6a784;
    font-weight: bold;
    margin-top: 10px;
}

/* Barra Lateral de Busca */
.search-sidebar {
    background-color: #f4f4f9;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    max-width: 280px;
}

.search-sidebar h2 {
    margin-bottom: 15px;
    color: #393737;
    font-weight: 600;
}

.search-sidebar form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-sidebar input,
.search-sidebar select,
.search-sidebar button {
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.search-sidebar button {
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.search-sidebar button:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

/* Rodapé */
footer {
    background-color: #393737;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    margin-top: 20px;
    position: relative;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a.whatsapp:hover {
    background-color: #25D366;
    transform: scale(1.1);
}

.social-links a.instagram:hover {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
    transform: scale(1.1);
}

.social-links a.facebook:hover {
    background-color: #4267B2;
    transform: scale(1.1);
}

.social-links a.linkedin:hover {
    background-color: #0077b5;
    transform: scale(1.1);
}

.social-icon.blog {
    color: #b6a784;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icon.blog:hover {
    color: #393737;
}


.results-page {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(to bottom right, #f4f4f9, #e0e0e5);
}

.search-sidebar {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    width: 280px;
}

.search-sidebar h2 {
    color: #393737;
    margin-bottom: 15px;
    font-weight: 600;
}

.search-sidebar form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-sidebar input,
.search-sidebar select,
.search-sidebar button {
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.search-sidebar button {
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.search-sidebar button:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

.results-section {
    flex-grow: 1;
}

.results-section h2 {
    color: #393737;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Estilo dos Cards de Imóveis */
.property-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.property-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    overflow: hidden;
}

.property-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.property-card img {
    width: 80%; /* Define um tamanho reduzido para a imagem */
    max-width: 150px; /* Define a largura máxima */
    height: auto;
    border-radius: 8px;
    cursor: pointer; /* Cursor em forma de mão para indicar que é clicável */
    transition: transform 0.3s ease; /* Transição suave ao passar o mouse */
}

.property-card img:hover {
    transform: scale(1.05); /* Efeito de leve zoom ao passar o mouse */
}


/* Grid de Imóveis */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Estilo dos Itens de Imóvel */
.property-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.property-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.property-item:hover img {
    transform: scale(1.05);
}

/* Descrição com Sobreposição */
.property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.property-item:hover .property-info {
    opacity: 1;
    transform: translateY(0);
}

.property-info h3 {
    font-size: 1.1em;
    margin: 0 0 5px;
    font-weight: bold;
}

.property-info p {
    font-size: 0.9em;
    margin: 0;
}


.carousel {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide img {
    width: 100%; /* Define a largura de cada imagem */
    max-width: 300px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: #b6a784;
    background: rgba(57, 55, 55, 0.8);
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Item do Imóvel */
.property-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    min-width: 100%; /* Ocupa toda a largura disponível no carrossel */
}

.property-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.property-item:hover img {
    transform: scale(1.1); /* Zoom na imagem ao passar o mouse */
}


.property-item:hover .property-info {
    opacity: 1;
    transform: translateY(0);
}


/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
}


/* Estilo do formulário de contato/reserva */
.contact-form {
    margin-top: 30px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form h2 {
    color: #393737;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form label {
    font-weight: bold;
    color: #393737;
    margin-top: 10px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    margin-top: 5px;
}

.contact-form button.btn-submit {
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 15px;
}

.contact-form button.btn-submit:hover {
    background-color: #a29072;
}

/* Estilo para a página de Regularização */
.regularizacao {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Seção de Introdução */
.intro h1 {
    font-size: 2em;
    color: #393737;
    text-align: center;
    margin-bottom: 15px;
}

.intro p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Seção de Serviços */
.servicos h2 {
    font-size: 1.8em;
    color: #393737;
    text-align: center;
    margin-bottom: 20px;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.servico {
    width: 200px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.servico i {
    font-size: 2em;
    color: #b6a784;
    margin-bottom: 10px;
}

.servico h3 {
    font-size: 1.2em;
    color: #393737;
    margin-bottom: 8px;
}

.servico p {
    font-size: 0.9em;
    color: #666;
}

/* Perguntas Frequentes */
.faq h2 {
    font-size: 1.8em;
    color: #393737;
    text-align: center;
    margin-bottom: 20px;
}

.perguntas {
    max-width: 700px;
    margin: 0 auto;
}

.pergunta {
    margin-bottom: 20px;
    background-color: #f4f4f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pergunta h3 {
    font-size: 1.1em;
    color: #393737;
    margin-bottom: 5px;
}

.pergunta p {
    color: #555;
    line-height: 1.6;
}

/* Formulário de Contato */
.formulario-contato {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 30px;
    text-align: center;
}

.formulario-contato h2 {
    font-size: 1.8em;
    color: #393737;
    margin-bottom: 20px;
}

.formulario-contato form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.formulario-contato input, .formulario-contato textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    width: 100%;
}

.formulario-contato button {
    padding: 12px;
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.formulario-contato button:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

/* Estilo Geral para a Página de Cadastro de Imóvel */
.cadastro-imovel {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho da Página */
.cadastro-imovel h1 {
    font-size: 2em;
    color: #393737;
    text-align: center;
    margin-bottom: 15px;
}

.cadastro-imovel p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Estilos para as Seções do Formulário */
section h2 {
    font-size: 1.5em;
    color: #393737;
    border-bottom: 2px solid #b6a784;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-weight: 600;
}

section {
    margin-bottom: 25px;
}

/* Estilo dos Campos do Formulário */
label {
    display: block;
    font-weight: bold;
    color: #555;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: box-shadow 0.3s, transform 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

/* Botão de Envio */
button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #393737;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #b6a784;
    transform: scale(1.05);
}

/* Sombra e Zoom nos Campos */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

/* Resumo de Detalhes da Página */
fieldset {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

fieldset legend {
    font-weight: bold;
    color: #393737;
    font-size: 1.2em;
    padding: 0 10px;
}

/* Banner de Boas-vindas */
.banner {
    background: url('assets/img/banner.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: auto;
}

.banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.banner p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.banner .btn {
    padding: 10px 20px;
    background-color: #b6a784;
    color: #393737;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.banner .btn:hover {
    background-color: #393737;
    color: #fff;
}

/* Formulário de Busca */
.search-section {
    background-color: #393737;
    padding: 30px 20px;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
}

.search-section h2 {
    color: #b6a784;
    margin-bottom: 15px;
    font-weight: 600;
}

.search-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.search-form input, .search-form select {
    padding: 10px;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 200px;
}

.search-form button {
    padding: 12px 20px;
    background-color: #b6a784;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #a29072;
}


.property-link {
    text-decoration: none;
    color: inherit;
}

.property-link:hover .property-item img {
    transform: scale(1.05); /* Manter o efeito de zoom no hover */
}

/* Seção Bem-vindo */
.welcome-section {
    background-color: #f4f4f9;
    padding: 60px 20px;
    text-align: center;
    color: #393737;
}

.welcome-content {
    max-width: 700px;
    margin: 0 auto;
}

.welcome-content h1 {
    font-size: 2.5em;
    color: #b6a784;
    margin-bottom: 15px;
    font-weight: 600;
}

.welcome-content p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.welcome-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #b6a784;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.welcome-btn:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

/* Galeria */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.modal {
    display: none; /* Oculta o modal por padrão */
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
}
.paginacao {
    text-align: center;
    margin: 20px 0;
}

.paginacao a {
    color: #393737;
    text-decoration: none;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #b6a784;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.paginacao a:hover {
    background-color: #b6a784;
    color: #fff;
}

.paginacao .pagina-ativa {
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    border: none;
}

* Estilo para a página de Administração */
.administracao {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Seção de Introdução */
.intro h1 {
    font-size: 2em;
    color: #393737;
    text-align: center;
    margin-bottom: 15px;
}

.intro p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Seção de Serviços */
.servicos h2 {
    font-size: 1.8em;
    color: #393737;
    text-align: center;
    margin-bottom: 20px;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.servico {
    width: 200px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.servico i {
    font-size: 2em;
    color: #b6a784;
    margin-bottom: 10px;
}

.servico h3 {
    font-size: 1.2em;
    color: #393737;
    margin-bottom: 8px;
}

.servico p {
    font-size: 0.9em;
    color: #666;
}

/* Perguntas Frequentes */
.faq h2 {
    font-size: 1.8em;
    color: #393737;
    text-align: center;
    margin-bottom: 20px;
}

.perguntas {
    max-width: 700px;
    margin: 0 auto;
}

.pergunta {
    margin-bottom: 20px;
    background-color: #f4f4f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pergunta h3 {
    font-size: 1.1em;
    color: #393737;
    margin-bottom: 5px;
}

.pergunta p {
    color: #555;
    line-height: 1.6;
}

/* Formulário de Contato */
.formulario-contato {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 30px;
    text-align: center;
}

.formulario-contato h2 {
    font-size: 1.8em;
    color: #393737;
    margin-bottom: 20px;
}

.formulario-contato form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.formulario-contato input, .formulario-contato textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    width: 100%;
}

.formulario-contato button {
    padding: 12px;
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.formulario-contato button:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

/* Garantir que a estrutura principal não seja alterada */
.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.main-content {
    width: 75%; /* Ajuste o tamanho conforme necessário */
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.owner-photo {
    width: 20%; /* Ajuste o tamanho da barra lateral */
    padding: 15px;
    text-align: center;
    background-color: #264653; /* Cor de fundo da lateral */
    color: #f4f4f4;
    border-left: 2px solid #b6a784;
    margin-left: 20px;
}

.owner-photo img {
    width: 100%;
    height: auto;
    max-width: 100px; /* Ajuste o tamanho da foto */
    border-radius: 50%;
    margin-bottom: 15px;
}

.owner-photo p {
    font-size: 16px;
    color: #393737;
}

/* Adaptação para dispositivos móveis */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .owner-photo {
        width: 100%;
        margin-left: 0;
    }
}

Estilo para a página de Avaliação */
.avaliacao {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Seção de Introdução */
.intro h1 {
    font-size: 2em;
    color: #393737;
    text-align: center;
    margin-bottom: 15px;
}

.intro p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Seção de Serviços */
.servicos h2 {
    font-size: 1.8em;
    color: #393737;
    text-align: center;
    margin-bottom: 20px;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.servico {
    width: 200px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.servico i {
    font-size: 2em;
    color: #b6a784;
    margin-bottom: 10px;
}

.servico h3 {
    font-size: 1.2em;
    color: #393737;
    margin-bottom: 8px;
}

.servico p {
    font-size: 0.9em;
    color: #666;
}

/* Perguntas Frequentes */
.faq h2 {
    font-size: 1.8em;
    color: #393737;
    text-align: center;
    margin-bottom: 20px;
}

.perguntas {
    max-width: 700px;
    margin: 0 auto;
}

.pergunta {
    margin-bottom: 20px;
    background-color: #f4f4f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pergunta h3 {
    font-size: 1.1em;
    color: #393737;
    margin-bottom: 5px;
}

.pergunta p {
    color: #555;
    line-height: 1.6;
}

/* Formulário de Contato */
.formulario-contato {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 30px;
    text-align: center;
}

.formulario-contato h2 {
    font-size: 1.8em;
    color: #393737;
    margin-bottom: 20px;
}

.formulario-contato form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.formulario-contato input, .formulario-contato textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    width: 100%;
}

.formulario-contato button {
    padding: 12px;
    background-color: #b6a784;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.formulario-contato button:hover {
    background-color: #a29072;
    transform: scale(1.05);
}

/* Garantir que a estrutura principal não seja alterada */
.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.main-content {
    width: 75%; /* Ajuste o tamanho conforme necessário */
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.owner-photo {
    width: 20%; /* Ajuste o tamanho da barra lateral */
    padding: 15px;
    text-align: center;
    background-color: #fff; /* Cor de fundo da lateral */
    color: #fff;
    border-left: 2px solid #b6a784;
    margin-left: 20px;
}

.owner-photo img {
    width: 100%;
    height: auto;
    max-width: 150px; /* Ajuste o tamanho da foto */
    border-radius: 50%;
    margin-bottom: 15px;
}

.owner-photo p {
    font-size: 16px;
    color: #e9c46a;
}

/* Adaptação para dispositivos móveis */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .owner-photo {
        width: 100%;
        margin-left: 0;
    }
}

