        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #58c96b;
            color: #1f2937;
            padding-top: 30px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            text-decoration: none;
        }

        .logo img{
            height: 50px;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            color: #064e3b;
            font-weight: bold;
            font-size: 24px;
        }

        .logo-name {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .nav-menu a:hover {
            color: #a7f3d0;
            transform: translateY(-2px);
        }

        .inicio{
            height: 10px;
        }        

        /* Hero Section */
        .hero {
           
            background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
            padding: 60px 40px;
            color: white;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .hero-image {
            width: 50%;
            height: 100%;
            
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }

        .hero-image-inner {
            width: 100%;
            background: linear-gradient(135deg, #6ee7b7, #10b981);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            color: #064e3b;
            font-weight: bold;
        }

        .hero-image-inner img{
            width: 100%;
            border-radius: 100%;
        }

        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content h2 {
            font-size: 28px;
            color: #a7f3d0;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #d1fae5;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: white;
            color: #064e3b;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Section Styles */
        section {
            /*padding: 100px 40px;*/
            max-width: 1200px;
            min-height: 100vh;
            margin: 0 auto;
            scroll-margin-top: 60px;

            padding: 50px 40px;

        }

        .section-title {
            text-align: center;
            font-size: 42px;
            color: #064e3b;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .section-subtitle {
            text-align: center;
            font-size: 20px;
            color: #6b7280;
            margin-bottom: 60px;
        }

        /* Serviços */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(6, 78, 59, 0.2);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(300deg, #ffffff, #035221);
            border-radius: 15px;
            border: 2px outset;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 32px;
            font-weight: bold;
        }

        .service-card h3 {
            font-size: 24px;
            color: #064e3b;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Projetos */
        .carousel-item{
            height: 60vh;
        }

        .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: contain; /* mantém a imagem inteira visível */
        }
        /*.projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(6, 78, 59, 0.2);
        }

        .project-image {
            height: 220px;
            background: linear-gradient(135deg, #064e3b, #10b981);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 64px;
            font-weight: bold;
        }

        .project-content {
            padding: 30px;
        }

        .project-content h3 {
            font-size: 22px;
            color: #064e3b;
            margin-bottom: 15px;
        }

        .project-content p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .project-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: #d1fae5;
            color: #064e3b;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }*/

        /* Parceiros */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .partner-card {
            background: white;
            padding: 2px;
            border-radius: 1px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            
            width: 200px;
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(6, 78, 59, 0.15);
        }

        .partner-name {
            font-size: 24px;
            font-weight: bold;
            color: #064e3b;
            text-align: center;
        }

        /* Contato */
        .contact-container {
            background: linear-gradient(135deg, #064e3b, #065f46);
            padding: 60px;
            border-radius: 30px;
            /*display: grid;
            /*grid-template-columns: 1fr 1fr;
            gap: 60px;*/
            color: white;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 18px;
            color: #d1fae5;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin : 0px;
            font-size: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;            
            
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
            font-family: inherit;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #a7f3d0;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background: white;
            color: #064e3b;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: #064e3b;
            color: white;
            text-align: center;
            padding: 30px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

    .carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
    background-color: rgba(0, 0, 0, 0.3); /* adiciona leve fundo */
    border-radius: 50%;
    padding: 10px;
    }

        /* Elementos decorativos flutuantes */
        .float-element {
            position: fixed;
            border-radius: 50%;
            background: rgba(76, 83, 76, 0.089);
            animation: float 6s ease-in-out infinite;
        }

        .float-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .float-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .float-3 {
            width: 80px;
            height: 80px;
            bottom: 10%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }