        :root {
            --primary-color: #c8242f;
            --secondary-color: #333;
            --light-gray: #f5f5f5;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        a{
                color: #fff;
    text-decoration: none;
        }
        
        /* Header */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imagens/fundo.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 200px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #a41e27;
            border-color: #a41e27;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
        }
        
        .about h2 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }
        
        .about h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
        }
        
        /* Services Section */
        .services {
            /*background-color: var(--light-gray);*/
            padding: 100px 0;
        }
        
        .services h2 {
            text-align: center;
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
        }
        
        .services h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #004564;
        }
        
        .service-card {
            background-color: #004564;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .service-card h4 {
            color: #fff;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Projects Section */
        .projects {
            padding: 100px 0;
        }
        
        .projects h2 {
            text-align: center;
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
        }
        
        .projects h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .project-card {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            border-radius: 10px;
        }
        
        .project-card img {
            width: 100%;
            height: 250px;
            /*object-fit: cover;*/
            transition: transform 0.5s;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;
        }
        
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .project-card:hover .project-overlay {
            transform: translateY(0);
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-overlay h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .project-overlay p {
            color: #ddd;
            margin-bottom: 0;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .counter-box h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-box p {
            font-size: 1.2rem;
            margin-bottom: 0;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--light-gray);
            padding: 100px 0;
        }
        
        .testimonials h2 {
            text-align: center;
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
        }
        
        .testimonials h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            /*margin-bottom: 30px;*/
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            /*margin-bottom: 20px;*/
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .author-info h5 {
            margin-bottom: 5px;
            color: #c8242f;
        }
        
        .author-info p {
            color: #777;
            margin-bottom: 0;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
        }
        
        .contact h2 {
            text-align: center;
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
        }
        
        .contact h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        /*
        .contact-info {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
        }
        */
        .contact-item {
            display: flex;
            align-items: center;
            margin: 13px 0;
           /*margin-bottom: 20px;*/
        }
        
        .contact-icon {
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 50px 0 0;
        }
        
        .footer-widget h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: #444;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
        }
        
        .copyright {
            background-color: #222;
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
        }
        
        .copyright p {
            margin-bottom: 0;
            color: #bbb;
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #a41e27;
        }
        
        /* Animations */
        .animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s;
        }
        
        .animate.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .about, .services, .projects, .testimonials, .contact {
                padding: 70px 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .counter-box h3 {
                font-size: 2.5rem;
            }
        }
        

/* Estiliza��o do carrossel */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

.partner-carousel {
    display: flex;
    align-items: center;
    width: 100%;
}

.carousel-track {
    display: flex;
    white-space: nowrap;
    animation: slide 20s linear infinite;
    align-items: center;

}

.carousel-track img {
    width: 150px; /* Ajuste conforme necess�rio */
    height: auto;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.1);
}

/* Anima��o do carrossel */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@media (min-width: 756px) {
.carousel {
    position: relative;
    width: 50%; /* Metade da largura da tela */
    height: 60vh; /* Metade da altura da tela */
    margin: 20vh auto; /* Centraliza verticalmente sem sair da tela */

}
}
.carousel-inner {
    border-radius: 10px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 1.175) !important;
    border: groove;
}

