.section-purple h1,
.section-purple h2,
.section-purple h3 {
    color: #ffffff;
}

.section-purple p {
    color: rgba(255, 255, 255, 0.85);
}

.section-purple .text-secondary,
.section-purple .muted {
    color: rgba(255, 255, 255, 0.65);
}

.login-btn {
    margin-top: 2px;
    margin-bottom: -20px;
    transition: transform .3s ease, box-shadow .3s ease, background-color 0.2s ease;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
}

.login-btn:hover {
    box-shadow: 0 12px 25px var(--sombra-card);
    background-color: #e1dfdfff !important;
    transform: translateY(-2px);
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.contact-div {
    width: fit-content;
}

.homePageButton {
    background-color: var(--roxo-claro);
}

.big-logo {
    width: 500px;
}

.feature-icon {
    font-size: 2.6rem;
    color: var(--roxo);
}

.step-number {
    font-size: 1.8rem;
    font-weight: bolder;
    color: var(--roxo-escuro);
}

.plan-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--sombra-card);
}

@media screen and (max-width: 1060px) {
    .big-logo {
        width: 400px !important;
    }
}

@media screen and (max-width: 991px) {
    .big-logo {
        width: 320px !important;
    }
}

@media screen and (max-width: 767px) {
    .hero {
        min-height: 70vh;
    }

    .contact-div {
        width: 100%;
    }
}