body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Header/Hero Section */
.hero {
    background-image: url('parque-ecologico1-casa-condominio-terra-nobre.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Sutil escurecimento para contraste do texto */
    padding: 30px;
    border-radius: 10px;
    display: inline-block; /* Para o overlay se ajustar ao conteúdo */
    max-width: 80%;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.3em;
    margin-top: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Container Principal */
.container {
    max-width: 960px;
    margin: 30px auto;
    padding: 25px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Títulos de Seção */
.section-title {
    font-size: 2.2em;
    color: #007bff; /* Azul vibrante */
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

/* Detalhes da Propriedade */
.property-details p {
    margin-bottom: 10px;
}

.property-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.property-details ul li {
    background-color: #f9f9f9;
    margin-bottom: 8px;
    padding: 10px 15px;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.info-grid h3 {
    color: #0056b3;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Galeria de Fotos */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 colunas para desktop */
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px; /* Altura fixa para uniformidade */
    object-fit: cover; /* Recorta a imagem para cobrir a área */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.03); /* Leve zoom ao passar o mouse */
}

/* Vídeo Responsivo */
.video-responsive, .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* Proporção 16:9 para vídeos */
    position: relative;
    height: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe, .map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}

/* Contato */
.contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.whatsapp-button {
    display: inline-flex; /* Alterado para flex para alinhar o ícone e texto */
    align-items: center; /* Alinha verticalmente no centro */
    justify-content: center; /* Centraliza horizontalmente */
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1DA851;
}

.whatsapp-button i { /* Estilo para o ícone Font Awesome */
    margin-right: 8px; /* Espaço entre o ícone e o texto */
    font-size: 1.5em; /* Tamanho do ícone */
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 30px;
    font-size: 0.9em;
}

/* Responsividade para Telas Menores */
@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1em;
    }

    .container {
        padding: 15px;
        margin: 20px auto;
    }

    .section-title {
        font-size: 1.8em;
    }

    .info-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 2 colunas para mobile */
    }

    .gallery-grid img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.5em;
    }
}


/* Estilos para o widget de clima */
#weather-widget {
    background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px; /* Espaço do conteúdo acima */
    font-size: 1em;
    max-width: 300px; /* Limita a largura para não ficar muito grande */
    margin-left: auto;
    margin-right: auto;
}

#weather-widget p {
    margin: 5px 0;
}

/* Responsividade para o widget */
@media (max-width: 480px) {
    #weather-widget {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}
