/* --- HIDDEN / MODERN SCROLLBAR --- */
html {
    scrollbar-width: thin;
    scrollbar-color: #202536 #fff;
}
html::-webkit-scrollbar {
    width: 8px;
}
html::-webkit-scrollbar-track {
    background: #fff;
}
html::-webkit-scrollbar-thumb {
    background-color: #202536;
    border-radius: 4px;
}

/* --- 1. BASE & RESET --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333; 
    background-color: #fff; 
    overflow-x: hidden; 
}

/* --- MENU MOBILE NO TOPO --- */
.desktop-nav.active {
    display: block;
    position: absolute;
    top: 96px; 
    left: 0;
    width: 100%;
    background-color: #000000; 
    padding: 20px 0;
    z-index: 1000;
    opacity: 0.8;
}

.desktop-nav.active ul {
    flex-direction: column; 
    gap: 15px;
    align-items: center;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* --- 2. HEADER & HERO --- */
.header-bg {
    background-image: url(fundoempresa.png);
    min-height: 40px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #fff;
}

.logo-container {
    margin-left: 15px;
}

.desktop-nav { display: none; }

.desktop-nav ul {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.mobile-menu-icon { 
    font-size: 1.8rem; 
    cursor: pointer; 
    color: #fff; 
    margin-right: 15px; 
    position: relative;
    top: -5px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 32px;
    visibility: visible;
    opacity: 1;
}

/* Força os ícones do Font Awesome a aparecerem com cor branca e sem sublinhado */
.social-icon-btn i,
.social-icon-btn span {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

/* --- 3. SOBRE A EMPRESA --- */
.about-space-blue { width: 100%; height: 4px; background-color: #202536; }
.about-space-with { width: 100%; height: 4px; }
.about-section { background-image: url(fundoempresa.png); min-height: 180px; background-size: 10px 10px; padding: 40px 0; color: #fff; }

.about-flex { 
    display: flex; 
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
    gap: 20px; 
    margin-top: 50px; 
}

.about-logo {
    display: flex;
    justify-content: center; 
    width: 100%;
}

.about-text {
	max-width: 1100px;
	width: 100%;
	text-align: center;     
}

/* --- PRODUTOS DESTAQUE --- */

.featured-products {
	padding: 40px 20px; 
}

.feat-item {
	display: flex;
	flex-direction: column; 
	align-items: center; 
	text-align: center; 
	gap: 20px; 
	margin: 30px 0; 
}

.feat-info h3 {
	font-size: 1.1rem; 
	color: #4C4C4D; 
	margin-bottom: 15px; 
	font-weight: bold; 
}

.check-list {
	text-align: justify;
	align-items: center;
	font-size: 1.0rem; 
	color: #323E4D; 
	display: flex; 
	flex-direction: column; 
	gap: 8px; 
}
.check-list i {
	color: #202536; 
	margin-right: 5px;

}

.about-text p, .featured-products p { 
    font-size: 1.0rem; 
    line-height: 1.5; 
    color: #323E4D; 
    text-align: justify; 
}

.feat-divider {
	border: 0; 
	height: 1px; 
	background: #e0e0e0; 
	margin: 20px 0; 
}

/* --- 4. ORÇAMENTO & FORMULÁRIOS --- */
.budget-section { padding: 50px 20px; }
.budget-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; justify-content: center; }
.budget-icon { font-size: 2rem; color: #555; }
.budget-header h2 { font-size: 1.3rem; color: #333; }

.budget-form input[type="text"], 
.budget-form input[type="email"], 
.budget-form input[type="tel"], 
.budget-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.checkbox-col { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    font-size: 0.85rem; 
    color: #444; 
    margin-bottom: 20px; 
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
}

.btn-submit {
    background: #333; color: #fff; padding: 10px 30px; border: none; border-radius: 4px;
    cursor: pointer; font-weight: bold; float: right;
}

/* --- 5. FOOTER --- */
.site-footer { 
    background: #eaeaea; 
    padding-top: 40px; 
    color: #333;
    display: flex;          
    flex-direction: column; 
    flex-grow: 1;
}

.footer-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    padding-bottom: 30px; 
}

.footer-col h4 { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    font-size: 0.9rem; 
    margin-bottom: 15px; 
    font-weight: bold; 
}

.footer-col h4 i { font-size: 1.2rem; color: #666; margin-top: 3px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; font-size: 0.8rem; color: #555; }

.footer-bottom { 
    background: #333; 
    color: #999; 
    text-align: center; 
    padding: 15px; 
    font-size: 0.75rem; 
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 6. MEDIA QUERIES (DESKTOP) --- */
@media (min-width: 600px) {
    .mobile-menu-icon { display: none; }
    .desktop-nav { display: block; }

    .feat-item { flex-direction: row; text-align: left; justify-content: space-between; align-items: center; padding: 0 50px; }
    
    .feat-item.left-img { flex-direction: row; }
    .feat-item.right-img { flex-direction: row-reverse; }
    .feat-info { flex: 1; }
    .feat-img { flex: 1; text-align: center; }
	.check-list { text-align: justify; align-items: flex-start; }
	.about-text p, .featured-products p { font-size: 1.0rem; text-align: justify; }

	.budget-header { justify-content: flex-start; }
    .form-row-3 { display: flex; gap: 20px; }
    .form-row-3 input { flex: 1; }
    .form-row-2 { display: flex; gap: 40px; margin-top: 10px; }
    .checkbox-col { flex: 1; }
    .textarea-col { flex: 2; display: flex; flex-direction: column; }
    .textarea-col textarea { flex-grow: 1; }
    
    .footer-grid { flex-direction: row; justify-content: space-between; }
    .footer-col { flex: 1; }
}