body .landing {
    font-family: Lato;
}

.landing .header {
    background: #2C2933 url(../images/landing-bg-header.png) no-repeat -390px -500px;
    min-height: 273px;
}

.landing .header .title {
    color: #FFF;
    font-size: 48px;
    font-weight: 900;
    line-height: normal;
}

.landing .header .subtitle {
    color: #FFF;
    font-size: 26px;
    font-weight: 700;
}

.landing article .intro {
    color: #333;
    font-size: 22px;
    font-weight: 400;
}

.landing article .title {
    color: #2C2933;
    font-size: 42px;
    font-weight: 700;
}

.landing .caracteristicas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.landing .card {
    border-radius: 38px;
    border: 1px dashed #B4B4B4;
    background: rgba(180, 180, 180, 0.05);
    padding: 51px 50px 60px 59px;
    color: #2C2933;
}

.landing .card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 38px;
}

.landing .card-text {
    font-size: 16px;
    font-weight: 400;
    padding-left: 16px;
}

.landing .card.gold {
    border-color: #877900;
    background: rgba(135, 121, 0, 0.05);
    color: #877900;
}

.landing .card-footer {
    padding: 0;
    background: transparent;
    border: none;
    margin-bottom: -94px;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.landing .btn.btn-susc {
    width: 381px;
    height: 70px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    border-radius: 50px;
    border-width: 3px;
    border-style: solid;
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.06);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.06);
}

.landing .btn.btn-susc.basico {
    border-color: #B6B6B6;
    background: linear-gradient(180deg, #CCC 0%, #908F8F 96.15%);
}

.landing .btn.btn-susc.avanzado {
    border-color: #BCB04F;
    background: linear-gradient(180deg, #ADA34D 0%, #D6C851 100%);
}

.landing-form {
    background: #F8F8F8;
    padding: 100px 0;
}

.landing-form .title {
    color: #333;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: normal;
}

.landing-form .intro {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

@media (min-width:992px) {
    .landing article .row {
        margin-right: -25px;
        margin-left: -25px;
    }

    .landing article .col {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media (max-width:1199px) {
    .landing .caracteristicas br {
        display: none;
    }
}

@media (max-width:991px) {
    .landing .header .title {
        font-size: 38px;
    }

    .landing .header .subtitle {
        font-size: 18px;
    }

    .landing article .intro {
        font-size: 18px;
    }

    .landing article .title {
        font-size: 30px;
    }

    .landing .caracteristicas {
        grid-template-columns: auto;
    }

    .landing .caracteristicas img {
        max-width: 60px;
        max-height: 40px;
        flex-basis: 90px;
        object-fit: contain;
    }

    .landing .caracteristicas p {
        font-size: 14px;
        line-height: normal;
    }

    .landing .card {
        border-radius: 26px;
        padding: 30px 20px 50px 30px;
    }

    .landing .card-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .landing .card-text {
        font-size: 14px;
    }

    .landing .card-footer {
        margin-bottom: -74px;
        padding-top: 30px;
    }

    .landing .btn.btn-susc {
        height: 50px;
        border-width: 1px;
        font-size: 16px;
    }

    .landing-form .title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .landing-form .intro {
        font-size: 16px;
    }
}

@media (max-width:575px) {}