 /* Variáveis de Cor */
        :root {
            --syla-blue: #0022ff; 
            --syla-blue-dark: #001a80;
            --syla-dark-text: #212529; 
            --syla-light-gray: #f8f9fa;
        }

.centraliza {
	text-align: center;
}
.espaco10 {
	height: 10px;
}
.espaco50 {
	height: 50px;
}
.texto {
	font-size: 17px;
	white-space: pre-wrap;
	color:var(--cor_segundaria);
}
		html {
    /* Garante que o contÃªiner mais externo tambÃ©m nÃ£o permita o scroll lateral */
    overflow-x: hidden; 
}

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--syla-dark-text);
            background-color: var(--syla-light-gray);
            overflow-x: hidden;
        }
		.texto_azul_index {
			font-size: 36px !important;
		}
		.img-sobre-empresa {
    width: 100%;
    height: 500px; /* Ajuste este valor (ex: 550px ou 600px) até igualar ao texto */
    object-fit: cover;
    object-position: center; /* Garante que o centro da foto seja priorizado */
}

/* Ajuste para mobile: no celular a altura deve ser automática */
@media (max-width: 991px) {
    .img-sobre-empresa {
        height: auto;
    }
}

        h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--syla-dark-text); }
        .text-syla-blue { color: var(--syla-blue) !important; }
        section { padding: 6rem 0; }
        .section-title { font-size: 3.5rem; margin-bottom: 3rem; }

        /* Estilos dos Botões - PADRONIZAÇÃO GERAL */
        .btn-hero-primary, .btn-primary {
            /* Cor Syla Blue como primária */
            background-color: var(--syla-blue);
            border: 2px solid var(--syla-blue);
            color: white;
            font-weight: 700;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            white-space: nowrap; /* Impede quebras de linha em textos curtos */
        }

        .btn-hero-primary:hover, .btn-primary:hover {
            /* Hover: Fundo Azul Escuro, Texto Branco, garantindo visibilidade */
            background-color: var(--syla-blue-dark); 
            border-color: var(--syla-blue-dark);
            color: white; 
            opacity: 0.95;
        }

        /* Botões de Hero e Contato (CTAs Principais) */
        .hero-section-syla .btn-hero-primary,
        .hero-section-syla .btn-hero-secondary,
        #contato .btn-lg {
            padding: 1.1rem 2.5rem !important; /* Tamanho grande uniforme */
            font-size: 1.25rem !important;
        }
        
        /* Botões dos Cards de Produtos (Ações Secundárias) */
        .product-card .btn-primary {
            padding: 0.75rem 1.5rem !important; /* Tamanho médio uniforme */
            font-size: 1rem !important;
        }
        
        /* Estilo do Botão Secundário (Hero) */
        .btn-hero-secondary { 
            background: none; 
            border: 2px solid white; 
            color: white; 
            font-weight: 600; 
            margin-left: 1rem;
        }

        .btn-hero-secondary:hover {
            /* Hover do Botão Secundário (Hero): Fundo Syla Blue, Texto Branco, inverte o contraste */
            background-color: var(--syla-blue);
            border-color: var(--syla-blue);
            color: white;
        }
        
        /* 1. Header Maior e Premium */
		
		.navbar-nav .nav-link {
    font-size: 13px; 
    /* Ou 1rem, se você estiver usando unidades relativas */
}
        .navbar { 
            background-color: white !important; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }
        .navbar-brand { font-weight: 800; color: var(--syla-blue) !important; display: flex; align-items: center; font-size: 1.5rem; }
        .navbar-brand img { max-height: 45px; margin-right: 12px; }
        .nav-link { 
            color: var(--syla-dark-text) !important; 
            font-weight: 700; 
            margin-left: 1.5rem;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background-color: var(--syla-blue);
            transition: width 0.3s ease;
        }
	
        .nav-link:hover::after { width: 100%; }

        /* 2. Hero Section (FULL WIDTH) */
        .hero-section-syla {
            background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://www.sylaengenharia.com.br/imagens/banner_novo.jpg') center center no-repeat;
            background-size: cover;
            padding: 14rem 0;
            color: white;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }
        .hero-section-syla h1 { font-size: 5rem; font-weight: 900; line-height: 1.05; color: white; }
        .hero-section-syla p.lead { font-size: 1.75rem; font-weight: 400; margin-top: 1rem; }
        
        /* 3. Quem Somos / Apresentação */
        .about-image-wrapper { border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        .about-image-wrapper img { border-radius: 12px; width: 100%; height: auto; object-fit: cover; }
        .about-text h2 { font-size: 2.5rem; }

        /* 4. Estilos de Cards (Diferenciais) */
        .values-section { 
            background-color: var(--syla-light-gray);
            padding: 8rem 0;
        }
        .value-card {
            background-color: white;
            border-left: 5px solid var(--syla-blue);
            border-radius: 8px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .value-card i.fa-solid { 
            font-size: 3rem; 
            color: var(--syla-blue); 
            margin-bottom: 1.5rem; 
        }
        .value-card h5 { font-size: 1.5rem; font-weight: 700; }
        
        /* 5. Estilos de Produto com Imagens */
        .product-card { border: none; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
        .product-card img { height: 300px; object-fit: cover; width: 100%; border-top-left-radius: 12px; border-top-right-radius: 12px; }

        /* 6. FAQ (Novo Acordeão) */
        .accordion-item {
            border: none;
            border-bottom: 1px solid #ddd;
            background-color: transparent;
        }
        .accordion-button {
            font-weight: 700;
            color: var(--syla-dark-text);
            background-color: transparent;
            font-size: 1.15rem;
            padding: 1.5rem 1.25rem;
        }
        .accordion-button:not(.collapsed) {
            color: var(--syla-blue);
            background-color: var(--syla-light-gray);
            box-shadow: none;
            border-bottom: 1px solid var(--syla-blue);
        }
        .accordion-body {
            font-size: 1rem;
            padding: 1rem 1.25rem 2rem 1.25rem;
            background-color: white;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 34, 255, 0.25);
            border-color: var(--syla-blue);
        }

        /* 8. Estilos para Galeria de Projetos (NOVO) */
        .project-gallery-section {
            background-color: var(--syla-light-gray);
            padding: 6rem 0;
        }
        .project-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
            transition: transform 0.3s ease;
        }
        .project-item:hover {
            transform: translateY(-5px);
        }
        .project-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .project-item:hover img {
            transform: scale(1.05);
        }
        .project-info {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            color: white;
            padding: 1.5rem;
        }
        .project-info h4 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0;
        }
        .project-info span {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 9. Estilos para Mapa/Localização (NOVO) */
        .map-section {
            padding: 4rem 0;
            background-color: white;
        }
        .map-section h2 {
             font-size: 2.5rem;
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            height: 400px; /* Altura fixa para o mapa */
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* 7. Contato */
        .contact-form-card { border-radius: 12px; }
        
        /* Rodapé */
        .footer { background-color: var(--syla-dark-text); color: rgba(255, 255, 255, 0.7); padding: 5rem 0 1.5rem 0; }
        .footer h5 { color: white; font-weight: 700; margin-bottom: 1.5rem; }
        .footer ul { list-style: none; padding: 0; }
        .footer ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; line-height: 2.2; transition: color 0.3s; }
        .footer ul li a:hover { color: var(--syla-blue); }

        /* Animações */
        .animate__delay-1s { animation-delay: 0.3s !important; }
        .animate__delay-2s { animation-delay: 0.6s !important; }
        .animate__delay-3s { animation-delay: 0.9s !important; }


        @media (max-width: 991.98px) {
            .hero-section-syla h1 { font-size: 3.5rem; }
            .hero-section-syla p.lead { font-size: 1.25rem; }
            .navbar { padding-top: 1rem; padding-bottom: 1rem; }
            .nav-link { margin-left: 0; }
			
			.btn-hero-secondary {
				margin-left: -1px;
			}
			.espacamento_botao {
				margin: 30px;
			}
			.navbar-nav a {
				font-size: 15px !important;
				
				margin-bottom: 10px !important;
			}
			.nav-link {
				text-align: left !important;
			}
        }
		
		
		/* Adicionar esta regra no seu bloco <style> no index.html ou topo.php */
.nav-fixed-offset {
    /* Ajuste esse valor (ex: 80px) para ser ligeiramente maior que a altura do seu navbar */
    padding-top: 200px !important;
	padding-bottom: 100px !important; 	
}
/* EFEITO HOVER PARA CARDS DE PRODUTO */
    .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave */
        overflow: hidden; /* Garante que a imagem não "escape" no zoom */
        cursor: pointer; /* Indica que o card é clicável */
    }
    .product-card:hover {
        transform: translateY(-8px); /* Levanta o card */
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25) !important; /* Aumenta a sombra */
    }
    .product-card .img-fluid {
        transition: transform 0.5s ease;
    }
    .product-card:hover .img-fluid {
        transform: scale(1.05); /* Efeito de Zoom na imagem */
    }
    
    /* EFEITO DE CARREGAMENTO (JÁ ESTÁ NO HTML VIA ANIMATE.CSS) */
    /* Os cards estão com animate__delay-0.1s/0.2s para carregar em sequência */
	
	
	/*
 * Esta classe anula o fundo azul do btn-hero-primary no mobile
 * e força o estilo secundário (transparente/borda branca),
 * mantendo o alinhamento 100% correto.
 */
@media (max-width: 767.98px) {
    .secundario-mobile-fix {
        background-color: transparent !important;
        border: 2px solid #fff !important; /* Cor branca da borda */
        color: #fff !important; /* Cor do texto branca */
        
        /* Garante que o padding e margem sejam idênticos ao btn-hero-primary */
        /* Se o padding for o problema, copie o padding do btn-hero-primary aqui */
    }
}

/* Definição da largura de 80% e quebra de linha para telas pequenas (sm e menores) */
@media (max-width: 575.98px) {
    .w-sm-80 {
        width: 80% !important;
    }
    
    /* Força a quebra de linha dentro dos botões para evitar estouro */
    .btn.text-wrap {
        white-space: normal !important;
    }
}

/* Reduz o tamanho da fonte no mobile (telas menores que 768px) */
@media (max-width: 767.98px) {
    .section-title {
        /* Exemplo: Reduzindo o tamanho da fonte para 1.8rem */
        font-size: 2.8rem !important; 
        
        /* Garante que o texto quebre a linha dentro do h1 */
        white-space: normal !important;
        
        /* Anula qualquer margem negativa que possa estar esticando o elemento */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
	
}

@media (max-width: 767.98px) {
    .hero-section-syla h1 {
        /* Exemplo: Reduzindo para 1.8rem. Ajuste este valor até ficar bom no seu mobile. */
        font-size: 1.8rem !important; 
        
        /* Opcional: Reduz o espaçamento entre linhas (line-height) para que o texto ocupe menos altura */
        line-height: 1.2 !important; 
    }
	.footer {
		padding: 20px;
	}
	.container {
		padding: 20px;
	}
}
.footer a {
	text-decoration: none;
	color:#ffffff !important;
}
.footer a:hover {
	text-decoration: underline;
}
.footer i {
	color:#ffffff !important;
}