      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --black: #000000;
            --white: #ffffff;
            --orange: #FF6B35;
            --gray-dark: #1a1a1a;
            --gray-medium: #2d2d2d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            padding-top: 90px; /* ou o valor que encaixar melhor */
        }

        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        p {
            font-size: 1.1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding-top: 110px;
            padding-bottom: 90px;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--black);
            z-index: 1000;
            border-bottom: 1px solid var(--orange);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo img {
    height: 70px; 
    width: auto;
    display: block;
    }
        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--orange);
        }

        .hero {
            min-height: 100vh;
            height: auto;
            display: flex;
            align-items: center;
            background: linear-gradient(to bottom, var(--black), var(--gray-dark));
        }

        .hero-content {
            max-width: 650px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ccc;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--orange);
            color: var(--black);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn:hover {
            background-color: #e55a2b;
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
        }

        .btn-whatsapp svg {
            margin-right: 0.5rem;
        }

        .about {
            background-color: var(--gray-dark);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            margin-bottom: 1.5rem;
        }

        .about-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

        .about-description {
            margin-bottom: 1.5rem;
            color: #ccc;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background-color: var(--gray-medium);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #404040;
        }

        .service-icon {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-description {
            color: #ccc;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .info-item {
            display: flex;
            align-items: center;
        }

        .info-icon {
            font-size: 1.5rem;
            color: var(--orange);
            margin-right: 1rem;
        }

        footer {
    background: #0d0d0d;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo h2 {
    color: #e55a2b;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
    max-width: 250px;
}

.footer-social h3 {
    margin-bottom: 15px;

}

.info-item {
    margin-bottom: 10px;
}

.info-item h4 {
    font-size: 14px;
    color: orange;
    margin-bottom: 3px;
}

.info-item p,
.info-item a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.info-item a:hover {
    color: orange;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link img {
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

.social-link img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}

        .social-link:hover {
            color: var(--orange);
        }

        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #404040;
            color: #aaa;
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 3rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            h1 {
                font-size: 2.5rem;
            }

            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 2rem;
                margin-top: 50px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                margin-bottom: 1rem;
            }
        }

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--orange);
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--black);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        border-top: 1px solid var(--orange);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        text-align: center;
        margin: 10px 0;
    }
}