/* Cores do Logo */
:root {
    --primary-custom: #FE8C00; /* Laranja do logo (para CTAs e destaque) */
    --secondary-custom: #5D437D; /* Roxo escuro do logo (para fundos secundários) */
    --green-custom: #3A7B39; /* Verde do logo (para ícones de check/diferenciais) */
    --text-dark: #333;
    --text-muted: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

html {
    /* Garante que o contêiner mais externo também não permita o scroll lateral */
    overflow-x: hidden; 
	font-size: 16px !important; /* Trava a base de cálculo do navegador */
    -webkit-text-size-adjust: 100%; /* Impede iPhones/Safari de aumentarem a fonte sozinhos */
}

/* Ajuste para monitores de 1366px e notebooks */
@media (max-width: 1400px) {
    /* 1. Reduz o logo para ganhar área útil horizontal */
  

    /* 2. Comprime os itens do menu para caberem em uma única linha */
    .navbar-nav .nav-link {
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-left: 12px !important; /* Redução drástica do espaçamento lateral */
        font-size: 16px !important;   /* Fonte menor para evitar a quebra */
        white-space: nowrap !important; /* IMPEDE que 'Tabela de Cores' quebre em duas linhas */
    }

    /* 3. Ajusta o botão de Orçamentos para o novo alinhamento */
    .navbar .btn {
        padding: 6px 10px !important;
        font-size: 13px !important;
        margin-left: 10px !important;
    }
}



a {
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}

.espaco1 {
	height: 10px;
}
.texto {
	font-size: 17px;
	white-space: pre-wrap;
	color:var(--cor_segundaria);
}
/* Estilos gerais */
body {
    font-family: 'Montserrat', sans-serif; /* Fonte principal */
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden; /* Evita scroll horizontal indesejado */

	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
i {
	color:#E47D00 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'Open Sans', sans-serif; /* Fonte para parágrafos, mais legível */
}

/* Classes de Cores e Botões Personalizados */
.text-primary-custom {
    color: var(--primary-custom) !important;
}

.bg-primary-custom {
    background-color: var(--primary-custom) !important;
}

.btn-primary-custom {
    background-color: var(--primary-custom);
    border-color: var(--primary-custom);
    color: var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #e47d00; /* Laranja um pouco mais escuro */
    border-color: #e47d00;
    color: var(--white);
    transform: translateY(-2px); /* Efeito sutil de elevação */
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-custom);
    transform: translateY(-2px);
}

.bg-secondary-custom {
    background-color: var(--secondary-custom) !important;
}

.text-green-custom {
    color: var(--green-custom) !important;
}

/* Navbar */
.navbar {
    background-color: var(--white) !important;
    padding: 0.75rem 0; /* Padding ajustado para o logo de 55px */
}
.navbar a {
	text-decoration:none;
	font-size: 16px;
}

.navbar-brand img {
    height: 95px; /* Altura do logo adaptado */
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
	font-size: 16px; 
    margin-left: 25px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-custom) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-custom) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: var(--primary-custom);
    border-radius: 5px;
}

/* Hero Section */
#hero {
    /* Imagem de fundo deve ser a que foi gerada, ajustada com um overlay escuro */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../imagens/banner2.jpg') no-repeat center center/cover;
    position: relative;
    padding: 250px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white);
}

#hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Sombra para o texto */
}

#hero p.lead {
    font-size: 1.6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

section h2 {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--primary-custom);
    border-radius: 5px;
}

#sobre h2::after {
    left: 0;
    transform: translateX(0);
}

/* Cards de Serviço */
#servicos .card {
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

#servicos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

#servicos .card-body i {
    color: var(--primary-custom);
    font-size: 4.5rem;
}

/* Diferenciais */
#diferenciais .d-flex {
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    transition: background-color 0.3s ease;
}

#diferenciais .d-flex:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Portfólio */
.portfolio-item {
    position: relative;
    cursor: pointer;
}

.portfolio-item img {
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 140, 0, 0.7); /* Laranja do logo com 70% de opacidade */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0.25rem;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item h5 {
    font-weight: 600;
    font-size: 1.5rem;
}

/* Contato */
#contato input, #contato textarea {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contato input:focus, #contato textarea:focus {
    border-color: var(--primary-custom);
    box-shadow: 0 0 0 0.25rem rgba(254, 140, 0, 0.25); /* Sombra suave com a cor primária */
}

/* Footer */
footer {
    background-color: var(--text-dark) !important;
    color: var(--white);
    padding: 40px 0;
}

footer a.footer-social-icon {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a.footer-social-icon:hover {
    color: var(--primary-custom);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    /* Aplica um padding lateral (respiro) a todas as seções e containers */
    section,
    .container,
    .container-fluid {
        /* Garante 15px de padding lateral mínimo (padrão Bootstrap) */
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Aumenta o padding para um valor mais confortável, ex: 20px */
    .container,
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
/* Responsividade - Ajustes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
        border: 1px solid rgba(0,0,0,0.05);
    }

	.navbar-brand img {
 height: 80px;
}
	
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    /* Ajuste para o botão de orçamento no mobile */
    .navbar-nav .nav-item.ms-lg-3 {
        margin-left: 0 !important;
    }
    .navbar-nav .nav-link.active::after {
        left: 0;
        width: 40px;
        bottom: 0px;
    }
    #hero {
        padding: 120px 0 80px 0;
    }
    #hero h1 {
        font-size: 2.8rem;
    }
    #hero p.lead {
        font-size: 1.3rem;
    }
    section {
        padding: 60px 0;
    }
    section h2 {
        font-size: 2.5rem;
    }
    .portfolio-item .overlay {
        opacity: 1; /* Mostrar overlay sempre no mobile para visibilidade */
        background: rgba(254, 140, 0, 0.85);
    }
}

@media (max-width: 767.98px) {
    #hero h1 {
        font-size: 2rem;
    }
    #hero p.lead {
        font-size: 1rem;
    }
    section h2 {
        font-size: 2rem;
    }
}


/* --- SEÇÃO INTERNA DE BANNER (PAGE HERO) --- */
        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(1, 125, 185, 0.4)), url('../imagens/fundo_pagina.jpg'); /* Imagem de fundo para páginas internas */
            background-size: cover;
            background-position: center;
            height: 350px; /* Altura menor que o banner da home */
            display: flex;
			margin-top: 80px;
            align-items: center;
            color: white;
				
		
            position: relative;
        }
        .page-hero h1 {
			padding-top:50px;
            font-size: 3.5rem;
            font-weight: 700;
        }
        .breadcrumb-custom {
            background: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 5px;
        }
        .breadcrumb-custom .breadcrumb-item a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }
        .breadcrumb-custom .breadcrumb-item a:hover {
            color: var(--primary-color);
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
            color: #ccc;
        }
		
		
		
		
		
		
		
		
		/* --- SEÇÃO DE CONTEÚDO PRINCIPAL --- */
        .section-content {
         padding: 20px 0; /* Vertical: 20px, Horizontal: 0 */

            background-color: var(--light-bg); /* Fundo claro para o conteúdo */
        }
        .sidebar {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar h5 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
        }
        .sidebar h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40px;
            height: 3px;
            background-color: #eee;
        }
        .sidebar-menu .list-group-item {
            border: none;
            padding: 12px 0;
            font-weight: 500;
            color: #555;
            transition: all 0.3s ease;
        }
        .sidebar-menu .list-group-item:hover,
        .sidebar-menu .list-group-item.active {
            color: var(--primary-color);
            background-color: transparent;
            padding-left: 10px;
        }
        .sidebar-menu .list-group-item.active {
            border-left: 3px solid var(--primary-color);
        }


.negrito {
	font-weight: bold
}


/* ============================================== */
/* 3. ESTILO DO CTA FINAL (USADO EM TODAS AS PÁGINAS) */
/* ============================================== */
.cta-final-box {
    background: linear-gradient(135deg, var(--dark-custom), #343a40); 
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-final-box h3 {
    color: var(--primary-color) !important; 
    font-size: 2.5rem;
}
.cta-final-box .btn {
    background-color: var(--primary-color);
    border: none;
}
.cta-final-box .btn:hover {
    background-color: #ff6a3c; /* Um pouco mais escuro que o primary */
}


/* ============================================== */
/* 2. CSS ESPECÍFICO DA PÁGINA EMPRESA (A-EMPRESA.HTML) */
/* (CORRIGIDO: Margem para separar imagem do texto) */
/* ============================================== */

/* [MANTENHA OS ESTILOS ANTERIORES AQUI...] */

/* Estilo para as imagens no texto (Flutuantes e limpas) */
.img-float-right {
    max-width: 45%;
    float: right;
    /* CORREÇÃO: Aumenta o espaçamento à esquerda e na parte inferior */
    margin: 0 0 25px 40px; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
}
.img-float-left {
    max-width: 45%;
    float: left;
    /* CORREÇÃO: Aumenta o espaçamento à direita e na parte inferior */
    margin: 0 40px 25px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* MEIO 3 - PRODUTOS CARD - Versão Aprimorada */
.product-card {
    /* Base */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Adiciona uma borda sutil para definição */
    border-radius: 18px; /* Levemente mais arredondado */
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    
    /* Sombras e Transições */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Sombra mais contida */
    transition: transform 0.4s ease, 
                box-shadow 0.4s ease, 
                border-color 0.4s ease; /* Transição para todas as propriedades */
}

/* Efeito de Hover */
.product-card:hover {
    transform: translateY(-8px); /* Levantamento sutil */
    /* Destaque usando a cor primária da sua marca */
    box-shadow: 0 16px 32px rgba(var(--primary-custom-rgb, 1, 125, 185), 0.3); /* Usa RGB para melhor controle da opacidade */
    border-color: var(--primary-custom, #017db9); /* Realça a borda com a cor primária */
}

/* Wrapper da Imagem */
.product-img-wrapper {
    height: 250px; /* Mantém a altura definida */
    overflow: hidden;
    /* Adiciona um efeito "sutíl" de borda para destacar a imagem */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Transição mais suave (ease-out-quad) */
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1); /* Zoom padrão */
}

/* **NOVO:** Estilo para o Corpo do Card (se você usa .card-body) */
.product-card .card-body {
    padding: 20px 25px; /* Mais preenchimento lateral para respiro */
}
.product-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

    /* Estilos específicos para a página de detalhes do produto */
    .detalhes_produtos {
        padding: -40px 0;
        background-color: var(--light-bg);
    }
    
    /* Imagem Principal */
    .product-main-image {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        cursor: zoom-in;
    }
    .product-main-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Miniaturas */
    .thumbnail-gallery .thumbnail {
        border: 2px solid transparent;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        transition: border-color 0.3s ease;
        opacity: 0.7;
    }
    .thumbnail-gallery .thumbnail:hover,
    .thumbnail-gallery .thumbnail.active {
        border-color: var(--primary-color);
        opacity: 1;
    }
    .thumbnail-gallery img {
        width: 100%;
        height: 80px;
        object-fit: cover;
    }

    /* Modal Lightbox */
    .modal-content-custom {
        background-color: transparent;
        border: none;
		
    }
    .modal-body-custom {
        padding: 20;
    }
    .modal-body-custom img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .btn-close-white {
        filter: invert(1); /* Deixa o X branco para fundos escuros */
    }

    /* Detalhes e Descrição */
    .product-details {
        padding-left: 20px;
    }
    .product-details h1 {
        font-weight: 700;
        color: var(--text-dark);
    }
    /* Estilo para a linha sob os títulos, se não estiver no seu CSS principal */
    .content-title-line {
        position: relative;
        padding-bottom: 10px;
    }
    .content-title-line::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary-color);
    }
	
.espaco_grande {
	height: 100px;
}

.centraliza {
	text-align: center !important;
}


  /* --- ESTILOS DO CARTÃO DE COR COM BRILHO METÁLICO (REVERSÃO) --- */

        #paleta-cores .color-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: default;
            border: 1px solid rgba(0,0,0,0.05);
            background-color: var(--white);
        }

        #paleta-cores .color-card:hover {
            transform: translateY(-8px); 
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important; 
        }

        .color-piece-display {
            width: 80px; 
            height: 80px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.6); 
            /* Sombra para profundidade e brilho */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(0,0,0,0.2); 
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        /* Brilho METÁLICO COMPLEXO - Múltiplos gradientes para textura de luz */
        .color-piece-display::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            /* Combinação de reflexos lineares e radiais para simular metal polido */
            background: 
                linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
            mix-blend-mode: overlay; 
            opacity: 0.9;
        }

        #paleta-cores .color-card:hover .color-piece-display {
            transform: scale(1.1);
            border-color: var(--primary-custom);
        }

        /* As classes de cor de fundo (incluindo o Dourado aprimorado) */
        .bg-verde-musgo { background-color: #3C451F; }
        .bg-verde-bandeira { background-color: #006400; }
        .bg-azul-claro { background-color: #00BFFF; } 
        .bg-vermelho { background-color: #DC143C; }
        .bg-lilas { background-color: #9932CC; } 
        .bg-amarelo { background-color: #FFD700; }
        /* DOURADO: Cor de ouro real (Dawn Gold) */
        .bg-dourado { background-color: #B8860B; } 
        .bg-fume { background-color: #696969; }
        .bg-preto { background-color: #1A1A1A; }
        .bg-cinza { background-color: #708090; }
        .bg-azul-escuro { background-color: #000080; }
        .bg-rosa { background-color: #FF1493; } 
        .bg-amarelo-fluorescente { background-color: #CCFF00; }
        .bg-laranja { background-color: #FF8C00; }
		
		
		
/* --- ESTILIZAÇÃO DA PÁGINA DE CONTATO --- */


/* Estilo para as caixas de informação (ícone + texto) */
.info-item {
    display: flex;
    align-items: flex-start;
}

.info-item i {
    /* Cor do seu tema principal (usando uma cor padrão do Bootstrap/Font Awesome) */
    color: #007bff; /* Exemplo de cor azul primária */
    min-width: 40px; 
    text-align: center;
    margin-top: 5px; /* Alinha o ícone com o texto */
}

.info-item h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Estilo para o formulário */
.form-control:focus {
    border-color: #007bff; /* Usa a cor principal no foco (Ajuste para sua cor primária) */
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}



/* --- ESTILIZAÇÃO DA PÁGINA DE ORÇAMENTO --- */

.orcamento-section {

    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Título e subtítulo */
.orcamento-section h2 {
    color: var(--primary-color, #007bff); /* Usa cor primária, ajuste conforme seu tema */
}

/* Estilo para o formulário */
.form-control:focus {
    border-color: var(--primary-color, #007bff); 
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25); /* Ajuste a cor do shadow */
}
		