        /* --- Configurações Gerais --- */
        :root {
            --primary-color: #2c3e50; 
            --accent-color: #e67e22;  
            --light-bg: #f4f4f4;
            --text-color: #333;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-color); }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- Header / Logo --- */
        header {
            background: #f4f4f4;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
            z-index: 100;
        }

        .logo img {
            height: 125px; /* Bem grande */
            display: block;
            position: absolute; /* Solta a logo da barra */
            top: 10px; 
            background: #fff; 
            padding: 5px; 
            border-radius: 0 0 10px 10px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.2); 
        }


        /* --- Hero Section (Frase de Impacto) --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('imgs/capa.jpg');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }
        .hero h1 { font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
        .hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; }
        
        /* Botões */
        .cta-button {
            background-color: var(--accent-color);
            color: #fff;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .cta-button:hover { background-color: #d35400; }

        /* Container geral dos botões Hero */
        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;   
            gap: 20px;             
            margin-top: 25px;
        }

        /* Linha dos botões secundários */
        .secondary-row {
            display: flex;
            gap: 20px;             
            flex-wrap: wrap;       
            justify-content: center;
        }

        /* Estilo dos botões secundários (Outline) */
        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: #fff;
            padding: 13px 25px;
            font-size: 1rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,0,0,0.2);
        }
        
        .btn-outline:hover {
            background-color: #fff;
            color: var(--primary-color);
            border-color: #fff;
        }

        /* --- Títulos de Seção Genéricos --- */
        .section-title { text-align: center; margin-bottom: 3rem; color: var(--primary-color); }

        /* --- Rodapé e Sociais --- */
        footer {
            background: var(--primary-color);
            color: #fff;
            padding: 4rem 5%;
            text-align: center;
        }
        .social-links {
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap; 
            gap: 15px;
        }
        .social-btn {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.3s;
            display: inline-flex; 
            align-items: center;
            gap: 8px;
        }
        .social-btn:hover { background: var(--accent-color); }
        
        /* --- Responsividade Geral --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .social-links { flex-direction: column; align-items: center; }
            .social-btn { width: 100%; justify-content: center; max-width: 300px; }
            .divider { display: none; }
			.logo img {
                height: 50px; /* Reduz de 100px para 50px */
                
                /* Ajustes opcionais para manter a proporção visual no mobile */
                top: 5px; 
                padding: 3px;
                border-radius: 0 0 5px 5px;
            }
        }


        /* --- CLIENTES: GRADE DE FOTOS (ESTÁTICO) --- */
        .clients-section { padding: 4rem 5%; background-color: #fff; }
        
        .client-block { margin-bottom: 50px; }
        .client-header { 
            display: flex; align-items: center; gap: 10px; margin-bottom: 20px; 
            border-bottom: 2px solid #eee; padding-bottom: 10px;
        }


        /* Descrição do Condomínio */
        .client-description {
            margin-bottom: 25px; /* Espaço entre o texto e as fotos */
            color: #555;         /* Cor cinza escura para leitura */
            font-size: 1rem;     /* Tamanho da fonte */
            line-height: 1.6;    /* Espaçamento entre linhas */
            max-width: 1200px;    /* Para o texto não ficar muito "comprido" em telas grandes */
        }
        .client-icon { color: var(--accent-color); font-size: 1.5rem; }

        .photos-grid {
            display: grid;
            /* Cria thumbnails quadrados que se ajustam */
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .grid-item {
            height: 180px; /* Altura fixa para alinhar */
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .grid-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: opacity 0.3s;
        }
        
        .grid-caption {
            position: absolute; bottom: 0; left: 0; width: 100%;
            background: rgba(0,0,0,0.6); color: #fff;
            font-size: 0.8rem; padding: 5px; text-align: center;
        }

        /* Ajuste Mobile */
        @media (max-width: 768px) {
            .portfolio-grid { grid-template-columns: 1fr; } /* 1 por linha */
            .comparison-wrapper { height: 200px; }

        }