 
/* === CONFIGURAÇÕES GERAIS E CORES === */
:root {
    --primary-color: #2a5672; /* PERSONALIZAR: Cor principal (Azul Urbem) */
    --secondary-color: #f7f3ed; /* PERSONALIZAR: Cor de fundo leve */
    --accent-color: #cda434; /* PERSONALIZAR: Cor de destaque/botões */
    --text-dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: var(--text-dark); }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

/* Container que agrupa imagem e texto */
.logo-container {
    display: flex;
    align-items: center; /* Alinha verticalmente no centro */
    text-decoration: none;
    gap: 12px; /* Espaço entre a imagem e o texto */
}

/* Estilo da imagem da logo */
.logo-img {
    height: 45px; /* Ajuste o tamanho conforme necessário */
    width: auto;
    object-fit: contain;
}

/* Estilização da Logo em Texto */
.logo-text {
    display: flex;
    white-space: nowrap;
    text-decoration: none; /* Remove o sublinhado de link */
    font-family: 'Montserrat', sans-serif; /* PERSONALIZAR: Escolha a fonte aqui */
    font-size: 1.8rem; /* Tamanho da fonte */
    font-weight: 700; /* Grossura da fonte (Bold) */
    letter-spacing: -1px; /* Deixa as letras mais próximas, visual de marca */
}

.word-1 {
    color: #003366; /* PERSONALIZAR: Cor da palavra 'Síndico' (Azul) */
}

.word-2 {
    color: #8d0404; /* PERSONALIZAR: Cor da palavra 'Já' (Dourado/Amarelo) */
        margin-left: 5px; /* Espaço entre as duas palavras */
}

@media (max-width: 480px) {
    .logo-img { height: 35px; }
    .logo-text { font-size: 1.2rem; }
}

/* Efeito ao passar o mouse (Opcional) */
.logo-text:hover {
    opacity: 0.8;
}

/* === HEADER & NAVEGAÇÃO === */
header {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img { height: 50px; } /* PERSONALIZAR: Tamanho da sua logo */

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: var(--primary-color); font-weight: 600; }

/* Responsividade Menu Mobile */
.menu-toggle { display: none; font-size: 1rem; cursor: pointer; }

/* === HERO SECTION (BANNER) === */
.hero {
    background: linear-gradient(rgba(0,51,102,0.5), rgba(0,51,102,0.7)), 
                url('../img/bh-1-860x574.jpg') no-repeat center center/cover;
    /* PERSONALIZAR: Troque a URL acima pela sua imagem de fundo */
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.btn-main {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

/* === SEÇÕES DE CONTEÚDO === */
section { padding: 60px 10%; }
.section-title { text-align: center; margin-bottom: 40px; color: var(--primary-color); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

/* === FORMULÁRIO DE CONTATO === */
.contact-container { max-width: 600px; margin: 0 auto; }
input, textarea { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 4px; }
button { background: var(--primary-color); color: white; border: none; padding: 12px 20px; cursor: pointer; width: 100%; border-radius: 4px; }

/* === RESPONSIVIDADE (TABLETS E CELULARES) === */
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: var(--white); text-align: center; padding: 20px 0; }
    nav ul.active { display: flex; }
    .menu-toggle { display: block !important; }
    .hero h1 { font-size: 1.8rem; }
}

/* Estilização do Botão Flutuante */
.whatsapp-float {
    position: fixed;
width: 60px;
height: 60px;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
z-index: 9999; /* Garante que fique acima de tudo */
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.3s ease;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Efeito de aumento ao passar o mouse */
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Efeito de "Atenção" (Opcional: o botão balança levemente) */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Estilização da Seção Sobre */
.about-section {
    background-color: var(--white);
    padding: 80px 10%;
}

.about-content {
    max-width: 900px; /* Evita que o texto fique muito largo em telas grandes */
    margin: 0 auto;
}

.about-card {
    background: var(--secondary-color); /* Fundo cinza bem claro */
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color); /* Detalhe dourado na lateral */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.highlight-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-body p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify; /* Deixa o bloco de texto mais elegante */
}

.text-body strong {
    color: var(--primary-color);
}

    /* No Mobile */
@media (max-width: 768px) {
    /* 1. O menu começa escondido */
    #nav-list {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
    }

    /* 2. O JS adiciona a classe .active, e o CSS faz isso aqui: */
    /* IMPORTANTE: Use o ID junto com a classe para ganhar força */
    #nav-list.active {
        display: flex !important;
    }

    /* 3. Garante que o ícone do menu apareça para ser clicado */
    .menu-toggle {
        display: block !important;
        cursor: pointer;
    }
}
