@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

/* Custom Styles */
body {
    font-family: "Ubuntu", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.bg-image {
    background-image: url(../images/Bandeira.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#hero {
    display: flex;
    flex-direction: column;
    background: url('../images/bg_hero.png') no-repeat center center, #197e19;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
}

.module-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.testimonial-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../images/testmonial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

[x-cloak] {
    display: none !important;
}
