@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    margin: 0;
}

.cover {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    margin: 0;
    font-weight: 700;
}

.lead {
    color: #041B36;
    font-size: 20px;
    margin: 0;
}

.card {
    background-color: #F2F2F2;
    border-radius: 30px;
    border: 0;
    min-height: 554px;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 20px;
    color: #041B36;
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-card {
    font-size: 16px;
    color: #041B36;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #00B0D3;
    border-color: #00B0D3;
    border-radius: 0;

    &:hover {
        background-color: rgba(0, 176, 211, 0.8);
        border-color: #00B0D3;
    }

    &:active {
        background-color: #00B0D3 !important;
        border-color: #00B0D3 !important;
    }
}

.bg-green {
    background-color: #CDD847;
}

h2 {
    color: #041B36;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #041B36;
    color: #041B36;
    font-weight: 700;
    border-radius: 0;

    &:hover {
        background-color: #041B36;
        border: 2px solid #041B36;
        color: #ffffff;
    }
}

.bg-blue {
    background-color: #041B36;
}

.text-escala {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.text-footer {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .text-sm-center {
        text-align: center;
    }
    .text-start{
        text-align: center !important;
    }
}