* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: roboto, sans-serif;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #29a849;
    padding: 10px;
    display: flex;
    align-items: center;
}
.logo img {
    height: 80px;
    margin-right: 50px;
}
nav {
    flex-grow: 1;
}
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.menu > li {
    position: relative;
}
.menu > li > a {
    color: rgb(27, 18, 70);
    text-decoration: none;
    padding: 10px 20px;
}
.menu > li > a:hover {
    background-color: #0b883b;
}
.menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #68a086;
    padding: 0;
    list-style-type: none;
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}
.menu li.show > ul {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.menu li ul li {
    width: 200px;
}
.menu li ul li ul {
    display: none;
    letter-spacing: 3px; /* Adiciona espaço entre as letras */
    word-spacing: 20px;   /* Adiciona espaço entre as palavras */
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #eceaea;
    transform: translateX(-20px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}
.menu li ul li.show > ul {
    display: block;
    transform: translateX(0);
    opacity: 1;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu {
        flex-direction: column;
        width: 100%;
    }
    .menu > li {
        width: 100%;
    }
    .menu li ul {
        position: static;
        transform: none;
        opacity: 1;
    }
    .menu li ul li ul {
        position: static;
        transform: none;
        opacity: 1;
    }
}

        .navigation {
            position: absolute;
            bottom: 20px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .navigation label {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            border-radius: 50%;
            background: #d1f2f7;
            cursor: pointer;
        }

        .text-section {
            padding: 20px;
            background: #fff;
            margin: 20px 0;
        }

        .text-section h2 {
            margin-top: 0;
            color: #007134;
            font-size: 45px;
            font-weight: 90;
            line-height: 1.2;
            text-align: center;
            text-transform: uppercase;
        }

        .text-section p {
            margin-bottom: 0;
            color: #888b8b;
            font-size: 16px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 20px;
        }

        .card {
            width: 30%;
            border: 3px solid #007134;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(98, 233, 204, 0.15);
            background: #eaecec;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            animation: fadeIn 0.5s ease-in-out;
            margin: 10px;
        }

        .card:hover {
            transform: scale(1.05);
        }

        .card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .card-content {
            padding: 15px;
            text-align: center;
        }

        .card-content h3 {
            margin: 10px 0;
        }

        .card-content p {
            color: #1e0774;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .card img {
                height: auto;
            }
            .slide img {
                height: auto;
            }
            .card {
                width: 45%;
            }
        }

        @media (max-width: 480px) {
            .card img {
                height: auto;
            }
            .slide img {
                height: auto;
            }
            .card {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .menu {
                display: none;
                flex-direction: row;
                width: 100%;
                text-align: center;
                background: #7caf9b;
                position: absolute;
                top: 60px;
                left: 0;
                z-index: 1000;
            }
            .menu.active {
                display: flex;
            }
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 32px;
            margin-left: auto;
            background: none;
            border: none;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
        }
   .footer {
            background: #e0eeec;
            color: #160577;
            padding: 20px 0;
            text-align: center;
            list-style: none;
        }

         .footer p {
                    margin: 0;
                }
         .footer ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }
         .footer li {
                    list-style: none;
                }
        .footer-logo img {
            width: 200px; /* Ajuste o valor conforme necessário */
            height: auto; /* Mantém a proporção da imagem */
            text-align: end;
        }
    .footer-col {
            display: flex;
            flex-direction: row;
            align-items: flex-end;
            justify-content: center;
        }
        .footer-col h3 {
            margin-bottom: 10px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 5px;
        }
        .footer-col a {
            color: #160577;
            text-decoration: none;
        }
        .footer-col a:hover {
            text-decoration: underline;
        }
        .text-section {
    background: linear-gradient(135deg, #adabb4 0%, #4d8d74 100%);
    color: rgb(17, 16, 16);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.text-section h2, .text-section h3 {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.text-section ul {
    list-style: none;
    padding: 0;
}

.text-section ul li {
    background: rgba(245, 244, 244, 0.1);
    margin: 10px 0;
    padding: 10px;
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
}

.text-section ul li:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.text-section input[type="button"] {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #ff4081;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.text-section input[type="button"]:hover {
    background: #e91e63;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
    padding: 20px 0;
}

.carousel-slide {
    display: flex;
    width: max-content;
    animation: slide 20s linear infinite;
    gap: 40px;
    align-items: center;
    padding-left: 100%;
}

.carousel-slide img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


