/* Global Styles */
html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    scroll-behavior: smooth;
    text-align: center;
}
.w-100 {
    width: 100%;
}

/* Header Styles */
header {
    background: #fff;
    color: #333;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: #543585;
}

.nav-link {
    color: #543585;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #D8D1E1;
}

.nav-link-login {
    color: #543585;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-link-login:hover {
    background-color: #D8D1E1;
}


/* Hero Section Styles */
.hero {
    height: 76vh;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 65vh;
    object-fit: contain;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    filter: invert(0) brightness(0); /* Altera a cor das setas para preto */
}



/* Section Styles */
section {
    padding: 2rem 5%;
    margin: 2rem 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(90deg, #543585, #D8D1E1);
    -webkit-background-clip: text;
    color: transparent; */
}

.service-item, .mission-item {
    background: #D8D1E1;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s;
    color: #333;
}

.service-item:hover, .mission-item:hover {
    background: #543585;
    color: #fff;
    transform: translateY(-5px);
}

.mission {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer Styles */
footer {
    background: #543585;
    color: #fff;
    padding: 1rem 0;
}

footer p {
    margin-bottom: 0;
}




@media (max-width: 768px) {
    .navbar-toggler {
        display: block; /* Mostrar o botão em telas pequenas */
    }

    .nav {
        flex-direction: column;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-collapse {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .navbar-collapse {
        display: flex !important; /* Mostrar o menu em telas grandes */
    }
}

/* Banner de consentimento  */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}
.cookie-consent-banner button {
    background-color: #7048b2;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}
.cookie-consent-banner button:hover {
    background-color: #543585;
}