.no-scroll {
    overflow: hidden;
    height: 100vh; 
    touch-action: none; 
}

:root {
    --primary-color: #e87c2b;
    --secondary-color: #70a430;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --bg-dark: #222;
    --font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave ao clicar nos links */
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; 
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #00e0b9; 
    color: white;
}

.btn-primary:hover {
    background-color: #00ccaa; 
}

.btn-hero {
    background-color: #00e0b9; 
    color: white;
    font-size: 1.1em;
    padding: 15px 30px;
    border-radius: 3px;
}

.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 40px;    
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 2000;    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.whatsapp-float img {
    width: 100%;
    height: 100%;
}

/* Header Desktop (Fixo) */
.header {
    background-color: rgba(34, 34, 34, 0.95); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);             
    padding: 8px 0;
    position: fixed;          
    width: 100%;                 
    top: 0;
    z-index: 1010; 
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
    border: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    display: flex; 
    align-items: center;
}

.nav-list li {
    margin-left: 25px; 
}

.nav-list a {
    text-decoration: none;
    color: white; 
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color); 
}

.nav-cta a {
    padding: 8px 20px;
    margin-left: 10px;
    font-size: 0.9em;
}

/* Estilos das Seções */

.section-black-cta {
    background-color: black;
    color: white;
    padding: 100px 0; 
    overflow: hidden; 
    padding-top: 120px; 
}

.black-cta-layout {
    display: flex;
    align-items: flex-start; 
    gap: 40px; 
    width: 100%; 
}

.black-cta-content {
    flex: 1; 
    max-width: 600px; 
    text-align: left;
    padding-left: 40px; 
}

.black-cta-gallery {
    flex: 1; 
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    background-color: black; 
    padding-right: 40px;
}

.section-black-cta h2 {
    color: white; 
    font-size: 3em; 
    font-weight: 700;
    line-height: 1.1;
    text-align: left; 
    margin-bottom: 30px;
}

.section-black-cta p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.btn-green-cta {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    background-color: #00e0b9; 
    color: black; 
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-green-cta:hover {
    background-color: #00ccaa;
}

.black-cta-gallery > div {
    border-radius: 8px;    
    background-size: cover;
    background-position: center;
    background-color: #444;
}

.gallery-item-1{ grid-column: span 2; height: 250px; background-image: url('imge/001.jpg'); }
.gallery-item-2{ grid-column: span 1; height: 180px; background-image: url('imge/002.jpg'); }
.gallery-item-3{ grid-column: span 1; height: 180px; background-image: url('imge/003.jpg'); }
.gallery-item-4{ grid-column: span 1; height: 180px; background-image: url('imge/004.jpg'); }
.gallery-item-5{ grid-column: span 1; height: 180px; background-image: url('imge/005.jpg'); }

.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: white; }
.bg-dark h2, .bg-dark p { color: white; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card h3 { color: var(--secondary-color); margin-bottom: 15px; }

.diff-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}

.diff-item { flex-basis: 30%; }
.diff-item .icon { font-size: 3em; display: block; margin-bottom: 10px; }

.portfolio { background-color: black; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-intro-text {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: rgb(255, 255, 255);
}

.portfolio-item {
    background-color: transparent; 
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img { transform: scale(1.05); }

.section.about { text-align: center; }
.section.about .container { max-width: 800px; margin-left: auto; margin-right: auto; }

.contact-info-map {
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 40px; 
    align-items: flex-start; 
}

.map-container {
    grid-column: 1 / 2; 
    height: 400px; 
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
}

.map-container iframe { width: 100%; height: 100%; border: 0; }
.contact-info { grid-column: 2 / 3; }

.contact-form {
    grid-column: 3 / 4; 
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #444;
    color: white;
}

.contact-form textarea { resize: vertical; min-height: 150px; }

.social-links a {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.social-links i { font-size: 1.8em; margin-right: 8px; color: #E1306C; }

.footer {
    background-color: #111;
    color: #bbb;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer a { color: white; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* --- RESPONSIVIDADE (MOBILE SEM MENU TOGGLE) --- */
@media (max-width: 992px) {
    
    /* O Header perde o 'fixed' no mobile para não ocupar a tela toda */
    .header {
        position: relative; 
        background-color: var(--bg-dark);
        padding: 20px 0;
    }

    .header .container {
        flex-direction: column; 
        gap: 20px;
    }

    /* Ajuste da lista de links */
    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    
    .nav-list li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: inline-block;
        padding: 10px 0;
        font-size: 1.1em;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Divisória sutil */
    }
    
    .nav-cta a {
        width: auto;
        margin-left: 0;
        margin-top: 10px;
    }

    /* Ajustes de Layout Mobile */
    .section-black-cta {
        padding-top: 40px; /* Reduzido pois o header não é mais fixo */
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .black-cta-layout { flex-direction: column; gap: 30px; }
    .black-cta-content { padding-left: 0; padding-right: 0; text-align: center; }
    
    .black-cta-gallery { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
    .gallery-item-1, .gallery-item-2, .gallery-item-3, .gallery-item-4, .gallery-item-5 { 
        grid-column: span 1; 
        height: 200px; 
    }

    .section-black-cta h2 { font-size: 2.5em; }
    .diff-grid, .contact-info-map { flex-direction: column; }
    .map-container { width: 100%; height: 300px; }
}