 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #048ac0;
            --secondary-color: #fc7a08;
            --text-color: #333;
            --light-bg: #f4f4f4;
            --white: #ffffff;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--white);
        }
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}
        /* Header & Nav */
        header {
            background: var(--white);
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            width: 100px;
        }

         .logo img {
            /* height: 60px; */
            /* width: auto; */
            object-fit: contain;
        } 

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        /* Hero Section - Estilo Ciro Silva */
             .hero {
            padding-top: 100px;
            min-height: 100vh;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            position: relative;
            z-index: 3;
        }

        .hero-content {
            flex: 1;
            color: var(--white);
            padding-right: 50px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }


        .hero-image img {
            max-width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
            margin-bottom: -10px; /* Alinha com a base */
        }

        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--white);
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 800;
            text-transform: uppercase;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
            background: #f0c000;
        }
        /* Outras Seções */
      .section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto;
}

.bg-light {
    background: var(--light-bg);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: translateY 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--white);
    background: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
}

.mt-2 {
    margin-top: 2rem;
    text-align: center;
    font-weight: 500;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

        @media screen and (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0px;
                height: 92vh;
                top: 8vh;
                background-color: var(--white);
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 70%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                padding-top: 50px;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .burger {
                display: block;
            }

            .hero .container {
                flex-direction: column;
                text-align: center;
                padding-top: 40px;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .hero-image {
                justify-content: center;
                width: 100%;
            }

            .hero-image img {
                max-width: 90%;
                margin-bottom: -50px;
            }

            .logo img {
                height: 50px;
            }
        }

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}