        /* Estilos gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
            font-family: Arial, sans-serif;
        }

        body {
            color: #333;
            overflow-x: hidden; /* Evita rolagem horizontal */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Navbar */
        nav {
            background-color: #0077b6;
            color: #fff;
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
        }

        nav a {
            color: #fff;
            margin: 0 1rem;
            font-weight: bold;
        }
        #map {
            width: 600px;
            height: 400px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
        }

        .nav-links a:hover {
            color: #90e0ef;
        }

        /* Hero Section com Carrossel */
        #hero {
            position: relative;
            height: 100vh;
            color: #fff;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .carousel {
            position: absolute;
            display: flex;
            width: 300%; /* A largura ajustada para evitar que o espaço extra à direita */
            height: 100%;
            top: 0;
            left: 0;
            transition: transform 1s ease;
        }

        .carousel img {
            width: 100vw; /* Cada imagem ocupa 100% da largura da tela */
            height: 100%;
            object-fit: cover;
        }

        /* Texto do Hero */
        .header-text {
            position: relative;
            z-index: 1;
        }

        #hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        #hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        #hero .cta-button {
            background-color: #47DE92;
            color: #fff;
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            transition: background 0.3s;
        }

        #hero .cta-button:hover {
            background-color: #68DE47;
            color: #fff;
        }
        .galery {
            margin: 0;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f4f4;
            overflow: hidden; /* Remove barras de rolagem */
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #0077b6;
            text-align: center;
        }

        .img-list {
            display: flex;
            align-items: center;
            align-content: center;
            gap:10px;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .img-list video {
            height: 300px;
            width: 250px;
        }

        /* Seção de Benefícios e Serviços */
        .content-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }
                /* Seção de Contato e Mapa */
                .contact-wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .content-image {
            width: 500px;
            height: 520px;
            background-color: #ddd; /* Placeholder para a imagem */
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }

        .benefits-image {
            background-image: url('../imgs/produto2.jpg');
        }

        .services-image {
            background-image: url('../imgs/produto1.jpg'); /* Coloque o URL da imagem desejada */
        }

        .content-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .benefit, .service {
            background-color: #f0f0f0;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit:hover, .service:hover {
            transform: translateY(-5px);
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
        }

        .benefit h3, .service h3 {
            margin-bottom: 0.5rem;
            color: #0077b6;
        }

        /* Formulário */
        form {
            display: flex;
            flex-direction: column;
            max-width: 400px;
            margin: 0 auto;
            gap: 1rem;
            padding: 2rem;
            background: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        form input,
        form textarea {
            padding: 0.8rem;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        form button {
            padding: 0.8rem;
            background-color: #0077b6;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        form button:hover {
            background-color: #005f8b;
        }
/* Footer */
footer {
    background-color: #0077b6;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Estilo para o bloco de redes sociais */
.social-networks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Espaço entre os itens */
}

/* Estilo para cada ícone e link das redes sociais */
.social-networks a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffff;
    font-size: 14px;
    width: auto;
    margin: 5px 0; /* Espaçamento entre os links */
}

/* Estilo para as imagens das redes sociais */
.social-networks a img {
    margin-right: 8px;
    width: 30px;
    height: 30px;
}


        /* Responsividade */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .content-image {
                width: 100%;
                height: auto;
            }

        }

        .carousel1 {
            align-self:center;
            position: relative;
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
        }

        .video-container {
            display: flex;
            transition: transform 0.3s ease-in-out;
            gap:10px;
        }

        video {
            flex: 0 0 auto; /* Evita que os vídeos cresçam ou encolham */
            width: 100%;
            max-width: 33.33%; /* Mostra até 3 vídeos no desktop */
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            cursor: pointer;
            z-index: 1;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .arrow-left {
            left: 10px;
        }

        .arrow-right {
            right: 10px;
        }

        @media screen and (max-width: 768px) {
            video {
                max-width: 100%; /* Mostra apenas 1 vídeo no mobile */
            }
            .video-container{
                gap:0px;
            }
        }