/* Estilos para a página de detalhe do empreendimento */

/* Hero Section */
.empreendimento-hero {
    padding-top: 130px !important;
    margin-bottom: 50px;
    background: #f9f9f9;
}

.empreendimento-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.empreendimento-gallery {
    flex: 1;
    min-width: 300px;
}

.gallery-main {
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.gallery-navigation, .gallery-thumbnails {
    display: none !important;
}

.empreendimento-info {
    flex: 1;
    min-width: 300px;
}

.empreendimento-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a3c64;
    margin-bottom: 10px;
}

.empreendimento-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-details {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 18px;
    color: #1a3c64;
    width: 30px;
}

.info-item span {
    font-size: 16px;
    color: #555;
}

.cta-container {
    margin-top: 30px;
}

.cta-button {
    background-color: #193A6F;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #122c54;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #888;
}

/* Descrição do Empreendimento */
.empreendimento-descricao {
    padding: 60px 0;
}

.empreendimento-descricao h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a3c64;
    margin-bottom: 30px;
    text-align: center;
}

.descricao-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Mapa do Empreendimento */
.empreendimento-mapa {
    padding: 60px 0;
    background: #f9f9f9;
}

.empreendimento-mapa h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a3c64;
    margin-bottom: 30px;
    text-align: center;
}

.mapa-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
}

/* Outras Propriedades */
.outras-propriedades {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.outras-propriedades h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.propriedades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.propriedade-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.propriedade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.propriedade-image {
    height: 200px;
    overflow: hidden;
}

.propriedade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.propriedade-card:hover .propriedade-image img {
    transform: scale(1.1);
}

.propriedade-info {
    padding: 20px;
}

.propriedade-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a3c64;
    margin-bottom: 10px;
}

.propriedade-info .location {
    display: block;
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.propriedade-info .location i {
    color: #1a3c64;
    margin-right: 5px;
}

/* Contato Rápido */
.contato-rapido {
    padding: 60px 0;
    background-color: #fff;
}

.contato-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contato-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #333;
}

.contato-content p {
    margin-bottom: 30px;
    color: #666;
}

.contato-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contato-buttons a {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contato-buttons a i {
    margin-right: 10px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #1fba58;
}

.phone-button {
    background-color: #007bff;
    color: white;
}

.phone-button:hover {
    background-color: #0069d9;
}

/* Responsividade */
@media (max-width: 991px) {
    .empreendimento-content {
        flex-direction: column;
    }
    
    .empreendimento-gallery,
    .empreendimento-info {
        width: 100%;
    }
    
    .empreendimento-gallery {
        margin-bottom: 30px;
    }
    
    .empreendimento-hero {
        padding-top: 100px !important; 
    }
}

@media (max-width: 768px) {
    .empreendimento-hero {
        padding: 40px 0;
    }
    
    .empreendimento-info h1 {
        font-size: 32px;
    }
    
    .gallery-main img {
        height: 300px;
    }
    
    .propriedades-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .empreendimento-info h1 {
        font-size: 28px;
    }
    
    .gallery-main img {
        height: 250px;
    }
    
    .contato-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-button, .phone-button {
        width: 100%;
    }
}

/* Ajustes para o logo no cabeçalho */
header .logo img {
    display: block;
    width: 150px;
    height: auto;
} 