    .nav-menu .close-menu-btn {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: #fff;
        font-size: 2.2rem;
        cursor: pointer;
        z-index: 100000;
        padding: 0;
    }
/* Variáveis CSS Globais */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --color-primary: #C46A16;
    --color-primary-light: #B8935A;
    --color-primary-dark: #B85A0D;
    --color-text: #333;
    --color-text-light: #666;
    --color-white: #fff;
    --color-black: #1a1a1a;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    background: transparent !important;
    padding: 0 40px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 3rem;
    color: var(--color-black);
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 400;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    background: transparent;
    overflow: hidden;
    min-width: 200px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1a1a1a;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    color: white;
    border-color: #1a1a1a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
}

.header.scrolled {
    position: fixed;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.navbar {
    padding: 0.5rem 0;
    background: transparent !important;
    pointer-events: auto;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent !important;
    pointer-events: auto;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    pointer-events: auto;
    z-index: 10000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    z-index: 10000;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after {
    width: 20px;
}

/* Garantir transparência total do header no hero */
.header:not(.scrolled) .navbar {
    background: transparent !important;
}

.header:not(.scrolled) .container {
    background: transparent !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
    margin-bottom: 0;
}

.hero-slider {
    position: relative;
    background-color: #f8f9fa;
    width: 100%;
    height: 100%;
}

/* Slider: transição apenas no fundo, conteúdo troca sem animação */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Fundo com fade/zoom suave */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 800ms ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg {
    opacity: 1;
    transform: scale(1);
}

/* Conteúdo sem transições herdadas; só mostra no slide ativo */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    z-index: 10;
}

.slide:not(.active) .slide-content { 
    display: none; 
    pointer-events: none;
}

.slide.active .slide-content {
    pointer-events: auto;
    z-index: 15;
}

.slide-content .container {
    text-align: center;
    color: white;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 0;
    max-width: 480px;
    transition: none;
    position: relative;
    z-index: 20;
}

.slide-content h1 {
    font-size: 2.45rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-content .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.63rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 25;
    pointer-events: auto;
}

.slide-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.slide-content .btn:hover::before {
    left: 0;
}

.slide-content .btn:hover {
    color: white;
    border-color: white;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 30;
    pointer-events: none;
}

.hero-navigation button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 35;
    pointer-events: auto;
}

.hero-navigation button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hero-navigation button:hover::before {
    left: 0;
}

.hero-navigation button:hover {
    color: #1a1a1a;
    border-color: white;
}

/* Hero navigation simplified - indicators removed for cleaner design */

/* Seções Gerais */
section {
    padding: 120px 0;
    position: relative;
}

/* Design minimalista - removendo decorações desnecessárias */

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.1rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Sobre Section */
.about {
    background: #f8f9fa;
}

.about .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #C4A464;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: #C4A464;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* Serviços Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 4rem 2.5rem;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f5f5f5;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon {
    border-color: #1a1a1a;
}

.service-icon i {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon i {
    color: #1a1a1a;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-link {
    color: #C4A464;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Projetos Section */
.projects {
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.project-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    background: #fafafa;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-btn {
    color: #C4A464;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Blog Section */
.blog {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #666;
}

.blog-category {
    color: #C4A464;
    font-weight: 500;
}

.blog-link {
    color: #C4A464;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 1rem;
}

/* Contato Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-map {
    min-height:320px;
}

.contact-info h3 {
    color: #C4A464;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #C4A464;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-form {
    background: #fafafa;
    padding: 4rem 3rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #f0f0f0;
}

.contact-form h3 {
    color: #C4A464;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #C4A464;
    color: #fff;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    min-height: 48px;
}

.footer-content ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-content ul li a:hover {
    color: #333;
}

.footer-bottom {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    align-self: center;
}

@media (max-width: 600px) {
    .footer-content ul {
        gap: 1rem;
        font-size: 0.95rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #1a1a1a;
        color: #fff;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 0;
        z-index: 200000;
    }
    .nav-menu .close-menu-btn {
        display: block !important;
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: #fff;
        font-size: 2.2rem;
        cursor: pointer;
        z-index: 210000;
        padding: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        color: #fff !important;
        font-size: 1.3rem;
        margin: 1.2rem 0;
        text-shadow: none;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        display: block;
        gap: 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-navigation {
        padding: 0 1rem;
    }
    
    .hero-navigation button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .slide-content .container {
        padding: 1.5rem 3.5rem;
        max-width: calc(100% - 3rem);
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
    }
    
    .slide-content p {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.56rem;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem;
    }
    
    .projects-grid,
    .blog-grid {
        gap: 1.5rem;
    }
}

/* Ajuste para remover espaço extra entre slider e parallax */
.hero {
    margin-bottom: 0;
}
.parallax-section {
    margin-top: 0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Estados de foco para acessibilidade */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #C4A464;
    outline-offset: 2px;
}

/* Loader (opcional) */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #C4A464;
    border-radius: 0;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Parallax Sections */
.parallax-section {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.parallax-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.parallax-content p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .parallax-section {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1.1rem;
    }
}

/* Factory Section */
.factory-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.factory-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.factory-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.factory-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.factory-features .feature i {
    font-size: 2rem;
    color: #C4A464;
    margin-top: 2px;
}

.factory-features .feature h4 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #333;
}

.factory-features .feature p {
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .factory-content {
        grid-template-columns: 1fr;
    }
    .factory-image {
        margin-bottom: 2rem;
    }
}

/* Gallery Section */
.gallery-grid {
    margin-top: 2rem;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
}
.gallery-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s;
}
.gallery-thumb:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

/* Project Categories */
.project-category {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.project-category:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(196, 106, 22, 0.3);
}

.category-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.category-info p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.category-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.category-gallery::-webkit-scrollbar {
    height: 6px;
}

.category-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0;
}

.category-gallery::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 0;
}

.category-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

.category-gallery .gallery-thumb {
    width: 200px;
    height: 150px;
    border-radius: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    object-fit: cover;
    cursor: pointer;
}

.category-gallery .gallery-thumb:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Responsive adjustments for categories */
@media (max-width: 768px) {
    .category-header {
        gap: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 0;
    }
    
    .category-info h3 {
        font-size: 1.4rem;
    }
    
    .category-gallery {
        gap: 0.8rem;
    }
    
    .category-gallery .gallery-thumb {
        width: 150px;
        height: 112px;
    }
    
    .project-category {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
}

/* Fullscreen modal */
.gallery-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.gallery-modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.gallery-modal .close-btn {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}
.gallery-modal .gallery-prev,
.gallery-modal .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    z-index: 10001;
    border-radius: 0;
    transition: background 0.2s;
}
.gallery-modal .gallery-prev:hover,
.gallery-modal .gallery-next:hover {
    background: rgba(0,0,0,0.6);
}
.gallery-modal .gallery-prev {
    left: 32px;
}
.gallery-modal .gallery-next {
    right: 32px;
}
@media (max-width: 600px) {
    .gallery-modal .gallery-prev {
        left: 8px;
        font-size: 1.7rem;
    }
    .gallery-modal .gallery-next {
        right: 8px;
        font-size: 1.7rem;
    }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    font-size: 2.3rem;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    transform: scale(1.08);
    background: #128c7e;
}