* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			
        }

        :root {
            --primary: #e67e22;
            --primary-dark: #d35400;
            --secondary: #34495e;
            --light: #ecf0f1;
            --dark: #999999;
			 --dark2: #C0C0C0;
            --white: #ffffff;
            --shadow: rgba(0,0,0,0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--dark);
			overflow: auto;
overflow-x: hidden;
        }
		
#wrapper {
	width: 100%;
	margin: 0 auto;
}

divimgcenter {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain; /* ou cover */
}







        /* Header com efeito de scroll */
        header {
   background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
	
	box-shadow: 0 2px 10px var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
			 backdrop-filter: none;
        }
		




        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            transition: padding 0.3s ease;
        }

        header.scrolled nav {
            padding: 0.7rem 1.5rem;
        }

        /* Logo com transição suave */
        .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
   
    height: 80%;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
 
    height: 80px;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes logoShrink {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.85);
    }
}

header.scrolled .logo {
    animation: logoShrink 0.3s ease forwards;
}



        header.scrolled .logo {
            font-size: 1.2rem;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            color: var(--secondary);
            display: block;
            transition: all 0.3s ease;
            opacity: 1;
            max-height: 20px;
            overflow: hidden;
            margin-top: 2px;
        }

        header.scrolled .logo-subtitle {
            font-size: 0.6rem;
            opacity: 0.7;
            max-height: 15px;
        }

        .menu-toggle {
              background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--light);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
        }

        header.scrolled .menu-toggle {
            font-size: 1.3rem;
        }

        .nav-menu {
              display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
               border-radius: 10px;
            box-shadow: 0 4px 10px var(--shadow);
			   background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
        }

        .nav-menu.active {
            display: block;
        }

        .nav-menu a {
            display: block;
            padding: 1rem 1.5rem;
            text-decoration: none;
            color: var(--secondary);
            border-bottom: 1px solid var(--light);
            transition: all 0.3s;
            font-weight: 500;
        }

        .nav-menu a:hover {
            background: var(--light);
            color: var(--primary);
            padding-left: 2rem;
        }

        /* Hero Fullscreen with Slideshow */
        .hero-fullscreen {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
        }

        /* Hero Content at Bottom */
        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            color: var(--white);
            padding: 3rem 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
        }

        .hero-content h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            text-align: center;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            display: block;
            color: var(--white);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .scroll-arrow {
            font-size: 2rem;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* Stats Section */
        /* evitar overflow global */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 3rem 1.5rem;
    background: var(--light);
    width: 100%;
    margin: 0 auto;
}


.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
	  color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
	  color: var(--secondary);
}

/* responsivo */
@media (max-width: 900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

        /* Services Section */
        .section {
            padding: 4rem 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--dark);
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: var(--secondary);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .services-grid {
            display: grid;
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px var(--shadow);
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .service-card p {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-card li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 0.95rem;
            color: var(--secondary);
        }

        .service-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }



.service-image {
background: var(--white);
border-radius: 15px;
padding: 2.5rem;
box-shadow: 0 4px 20px var(--shadow);
transition: all 0.3s;
border: 1px solid transparent;
overflow: hidden;
}

.service-image:hover {
transform: translateY(-8px);
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
border-color: var(--primary);
}

.service-image img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
border-radius: 15px;
}
        /* Portfolio Preview */
        .portfolio-preview {
            background: var(--light);
        }

        .portfolio-grid {
            display: grid;
            gap: 1.5rem;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            background-size: cover;
            background-position: center;
            cursor: normal;
            transition: transform 0.3s;
        }

        .portfolio-item:hover {
            transform: scale(1.03);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: var(--white);
            padding: 2rem;
            transition: padding 0.3s;
        }

        .portfolio-item:hover .portfolio-overlay {
            padding: 2.5rem;
        }

        .portfolio-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-item p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            background: var(--secondary);
            color: var(--white);
		
    padding: 10px;
    border-left: 10px solid #5f7f99; /* cor da faixa */

        }

        .contact-grid {
            display: grid;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.4rem;
        }

        .contact-item-content {
            flex: 1;
        }

        .contact-item strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--light);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .success-message {
            background: #27ae60;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
        }

        .error-message {
            background: #e74c3c;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
        }

        /* Footer */
        footer {
            background: var(--dark2);
            color: var(--white);
            padding: 3rem 1.5rem;
            text-align: center;
        }
		

        .footer-content {
            max-width: 100%;
            margin: 0 auto;
			 padding: 10px;
    border-left: 10px solid #999999; /* cor da faixa */

        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
			
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 65px;
            height: 65px;
           background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 1000;
            text-decoration: none;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-content p {
                font-size: 1.3rem;
            }

            .cta-buttons {
                flex-direction: row;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stats {
                padding: 4rem 2rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .logo {
                font-size: 1.6rem;
            }

            header.scrolled .logo {
                font-size: 1.3rem;
            }
        }

        @media (min-width: 1024px) {
            .menu-toggle {
                display: none;
            }

            .nav-menu {
                display: flex !important;
                position: static;
                box-shadow: none;
                background: transparent;
            }

            .nav-menu a {
                border: none;
                padding: 0 1.5rem;
            }

            .nav-menu a:hover {
                padding: 0 1.5rem;
                background: transparent;
                color: var(--primary);
            }

            .hero-content {
                padding: 4rem 3rem;
            }

            .hero-content h1 {
                font-size: 3.5rem;
                max-width: 1200px;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .portfolio-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .logo {
                font-size: 1.8rem;
            }

            header.scrolled .logo {
                font-size: 1.4rem;
            }

            .logo-subtitle {
                font-size: 0.8rem;
            }

            header.scrolled .logo-subtitle {
                font-size: 0.65rem;
            }
        }
		
		@media (max-width: 767px) {
    .scroll-indicator {
        display: none;
    }
}