/* ===================================
   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;
	justify-content: center; 
}

/* --- 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;
}

.btno {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.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;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.about-flex a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    width: 100%;
}

.about-flex img {
    display: block;
    margin: 0; 
    max-width: 100%;
    height: auto;
}

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

.about-text h2 { 
    font-size: 1.2rem; 
    margin-bottom: 15px; 
    color: #323E4D; 
}

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

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

/* --- 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: #202536; 
	margin-bottom: 15px; 
	font-weight: bold;
}
.check-list {
	font-size: 1.0rem; 
    line-height: 1.5; 
	text-align: justify; 
	color: #323E4D; 
	display: flex; 
	flex-direction: column; 
	gap: 8px; 
}
.check-list i {
	color: #202536; 
	margin-right: 5px; 
}

.check-list li {
    text-align: justify;
    line-height: 1.5;
}

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

/* ===================================
   4. BARRA DE NAVEGAÇÃO / ATALHOS (MOBILE BASE)
   =================================== */
.icon-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #e2e4e8;
    border-radius: 14px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 360px;
    height: 54px;
    overflow: hidden;
	margin: 50px auto;
}

.icon-item {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2e40;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border-right: 1px solid #dcdcdc;
}

.icon-item:last-child {
    border-right: none;
}

.icon-item .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-item:hover {
    background-color: #f4f6f9;
}

.icon-item:active {
    transform: scale(0.95);
}

/* ===================================
   5. SEÇÃO DE ORÇAMENTO
   =================================== */
.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;
}

/* ===================================
   6. 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;
}

/* ===================================
   7. ANIMAÇÃO DE SCROLL (REVEAL)
   =================================== */
.hidden-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.show-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   8. MEDIA QUERIES (DESKTOP >= 600px)
   =================================== */
@media (min-width: 600px) {
    .icon-bar {
        max-width: 1100px; 
        height: 70px;
        border-radius: 16px;
        margin: 50px auto 0 auto;
    }

    .icon-item .icon {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-icon { 
        display: none; 
    }
    
    .desktop-nav { 
        display: block; 
    }

    .about-flex { 
        flex-direction: column; 
        text-align: center; 
        align-items: center; 
        justify-content: center; 
        gap: 25px; 
    }
    
    .about-text { 
        max-width: 1100px; 
    }
    
    .about-text h2 { 
        font-size: 1.5rem; 
    }
    
    .about-text p, .featured-products p { 
        font-size: 1.0rem;
        text-align: justify; 
    }
    
    .saiba-mais {
        color: #202536;
        font-weight: bold; 
        font-size: 1rem;
        display: block;
        text-align: right; 
        width: 100%;
    }
	
	.feat-info h3 {
		font-size: 1.5rem;
	}
    
    .budget-header { 
        justify-content: flex-start; 
    }
	
    .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; 
	}
    
    .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; 
    }
}