* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f8;
}

/* Força o conteúdo a ocupar pelo menos 100% da altura da tela */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #000000;
    padding: 10px;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo img {
    height: 80px;
}

.navbar {
    display: flex;
    justify-content: flex-end;
}

.navbar a {
    color: white;
    margin-left: 20px;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #4d255f;
}
.navbar .nav-link {
    color: #4d255f !important; /* Define a cor padrão dos links */
    transition: color 0.3s ease; /* Suaviza a transição da cor */
}

.navbar .nav-link:hover {
    color: #3b1d49 !important; /* Define a cor ao passar o mouse */
}
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    flex-grow: 1; /* Força essa seção a crescer e preencher o espaço disponível */
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0 40px;
}

.hero .cta-btn {
    padding: 15px 30px;
    background-color: #000000;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .cta-btn:hover {
    background-color: #4d255f;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #f4f6f8;
}

.features .feature-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.features .feature-box i {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 20px;
}

.features .feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}


.features .feature-box p {
    font-size: 1rem;
    color: #666;
}

/* Rodapé no fundo */
.footer {
    padding: 10px;
    background-color: #000000;
    color: white;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .features .feature-box {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* Estilo padrão do botão */
.btn-primary {
    background-color: #4d255f !important;
    border-color: #4d255f !important;
    color: white !important;
}

/* Estado ao passar o mouse (hover) */
.btn-primary:hover {
    background-color: #3b1e4b !important;
    border-color: #3b1e4b !important;
}

/* Estado ao focar */
.btn-primary:focus {
    background-color: #3b1e4b !important;
    border-color: #3b1e4b !important;
    box-shadow: none !important;
}

/* Estado ao pressionar o botão */
.btn-primary:active {
    background-color: #2f1539 !important;
    border-color: #2f1539 !important;
}

/* Estado ao pressionar o botão, sem sombra */
.btn-primary:active:focus {
    box-shadow: none !important;
}