/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Global Background */
body {
    background: url('/assets/images/fundo_dourado.avif') no-repeat center center/cover;
    color: #fff;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    background-attachment: fixed; /* Fixa a imagem ao rolar a página */
}


/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 130px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: #daa520;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #fff;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.menu-toggle .bar {
    background-color: #daa520;
    height: 4px;
    width: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
/* Adjusting the responsive menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 130px; /* Ajusta a altura da logomarca */
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        padding: 1rem 0; /* Espaçamento interno para os links */
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Home Section */
.home {
    position: relative;
    height: 100vh; /* Altura total da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Garante que nada ultrapasse os limites */
}

.home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/casa_moderna.jpg') no-repeat center center/cover;
    opacity: 0.4; /* Controle do nível de transparência */
    z-index: -1; /* Certifica-se de que a imagem esteja atrás do conteúdo */
}

.home-content {
    position: relative;
    z-index: 1; /* Coloca o texto acima da transparência */
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.home-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #daa520; /* Dourado */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.home-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.home-content .btn {
    display: inline-block;
    background-color: #daa520; /* Dourado */
    color: #000;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-content .btn:hover {
    background-color: #fff;
    color: #daa520;
    transform: scale(1.05);
}

/* About Us Section */
.about {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-box {
    background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro com transparência */
    color: #daa520; /* Texto dourado */
    flex: 1;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(218, 165, 32, 0.8); /* Realce dourado */
}

.about-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff; /* Título branco */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.about-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-box {
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo escuro */
    text-align: center;
    color: #fff;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #daa520; /* Dourado */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(218, 165, 32, 0.8); /* Destaque dourado */
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #daa520; /* Títulos dourados */
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo escuro */
    text-align: center;
    color: #fff;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #daa520; /* Dourado */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(218, 165, 32, 0.8); /* Destaque dourado */
}

.review p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review span {
    display: block;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #daa520; /* Nome em dourado */
}

.stars {
    font-size: 1.2rem;
    color: #fbc02d; /* Estrelas douradas */
    margin-top: 0.5rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo preto com transparência */
    text-align: center;
    color: #fff;
}

.appointment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #daa520; /* Dourado */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn {
    background-color: #daa520; /* Dourado */
    color: #000;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #daa520;
    transform: translateY(-2px);
}

.appointment-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.appointment-form label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.appointment-form .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.appointment-form .btn-submit {
    background-color: #daa520; /* Dourado */
    color: #000;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.appointment-form .btn-submit:hover {
    background-color: #fff;
    color: #daa520;
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .appointment-section h2 {
        font-size: 2rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }
}

.checkbox-group {
    display: flex;
    flex-direction: column;
}

.checkbox-group label {
    margin-bottom: 10px;
}

.residential-options label {
    display: flex;
    align-items: center; /* Alinha o checkbox e o texto no centro verticalmente */
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.residential-options input[type="checkbox"] {
    margin-right: 10px; /* Espaçamento entre o checkbox e o texto */
}

.commercial-options label {
    display: flex;
    align-items: center; /* Alinha o checkbox e o texto no centro verticalmente */
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.commercial-options input[type="checkbox"] {
    margin-right: 10px; /* Espaçamento entre o checkbox e o texto */
}

.airbnb-options label {
    display: flex;
    align-items: center; /* Alinha o checkbox e o texto no centro verticalmente */
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.airbnb-options input[type="checkbox"] {
    margin-right: 10px; /* Espaçamento entre o checkbox e o texto */
}

.construction-options label {
    display: flex;
    align-items: center; /* Alinha o checkbox e o texto no centro verticalmente */
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.construction-options input[type="checkbox"] {
    margin-right: 10px; /* Espaçamento entre o checkbox e o texto */
}

/* Contacts Section */
#contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; /* Espaço entre os itens */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo preto translúcido */
    border: 2px solid #daa520; /* Borda dourada */
    border-radius: 12px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.5); /* Realce dourado */
    text-align: center;
}

/* Individual Contact Item */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(218, 165, 32, 0.8); /* Destaque dourado */
}

/* Ícones */
.contact-item i {
    font-size: 32px;
    color: #daa520; /* Dourado */
    margin-bottom: 10px; /* Espaçamento entre ícone e texto */
}

/* Texto */
.contact-item p {
    font-size: 16px;
    color: #fff; /* Texto branco */
    margin: 0;
    word-wrap: break-word;
}

/* Links */
.contact-item a {
    text-decoration: none;
    color: #fff; /* Links brancos */
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #daa520; /* Link dourado ao hover */
}

/* Botão Compartilhar */
.share-button {
    background-color: #1d1c1b; /* Dourado */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-button:hover {
    background-color: #fff;
    color: #daa520;
    transform: translateY(-3px);
}

/* Footer Section */
#site-footer {
    background-color: rgba(0, 0, 0, 0.9); /* Fundo preto translúcido */
    padding: 20px 10px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-top: 2px solid #daa520; /* Linha dourada no topo */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ajusta para telas menores */
}

/* Footer Logo */
.footer-logo img {
    width: 130px;
    height: auto;
    margin-right: 20px;
}

/* Footer Text */
.footer-text {
    text-align: right;
    flex: 1;
}

.footer-text p {
    margin: 5px 0;
}

.footer-text a {
    color: #daa520; /* Links dourados */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #fff; /* Branco no hover */
}

/* Responsividade */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-text {
        text-align: center;
        margin-top: 10px;
    }
}


