:root {
    --color-primary-light: #dfdde8;
    --color-primary: #2d006d;
    --color-primary-dark: #4b01b3;
    --color-secondary: #88b433;
    --color-secondary-dark: #87c40e;
    --color-font-light: #b7b8ba;
    --color-font: #2b292d;
    --color-base-light: #ffffff;
    --color-base-inter: #f4f5f7;
    --color-base-dark: #000000;
    --padding-left-right: 130px;
    --padding-left-right--movile: 20px;
}
@font-face {
    font-family: WorkSans;
    src: url(../assets/fonts/work-sans/WorkSans-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: WorkSans;
    src: url(../assets/fonts/work-sans/WorkSans-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: WorkSans;
    src: url(../assets/fonts/work-sans/WorkSans-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: WorkSans;
    src: url(../assets/fonts/work-sans/WorkSans-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}
body{
    background-color: var(--color-base-inter);
}
.movile {
    display: block;
}
.desktop {
    display: none;
}
h1 {
    font-size: 35px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
h2 {
    font-size: 25px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}
h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}
h5 {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0 0 0;
}
h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}
.p1 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-font);
    margin-top: 1rem;
}
.p2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-font);
}
.p3 {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-font-light);
}
.stand-out {
    color: var(--color-primary);
    font-weight: 500;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-align-justify {
    text-align: justify;
}
.element-center {
    margin: 0 auto;
    display: block;
}
.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.d-flex {
    display: flex;
    flex-wrap: wrap;
}
.d-inline {
    display: inline;
}
.d-inline-block {
    display: inline-block;
}
.w-40 {
    width: 40%;
}
.w-50 {
    width: 50%;
}
.w-60 {
    width: 60%;
}
.p-1 {
    padding: 1rem;
}
.mt-1 {
    margin-top: 1rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.zi-2 {
    z-index: 2;
}
.mw-600-px {
    max-width: 600px;
}
a {
    text-decoration: none;
    color: var(--color-font-light);
}
a:hover {
    color: var(--color-primary);
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.btn-velpay,
.calculator-button,
input:active,
input:focus {
    outline: 0 !important;
}
.velpay-form-input,
.calculator-label {
    background-color: #fff;
    border: 1px solid rgba(43, 41, 45, 0.2);
    border-radius: 8px;
    height: 45px;
    width: 100%;
    max-width: 450px;
    padding: 0 15px;
    margin: 5px 0;
}
.subs-form-container {
  display: flex;
  justify-content: center;
}
.subs-form {
  display: grid;
  grid-template-columns: minmax(250px, 250px);
}

.velpay-form-input:focus {
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 3px var(--color-primary-dark);
    color: var(--color-primary);
}
.calculator-label:focus-within {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-velpay:hover,
.calculator-button:hover {
    background: var(--color-secondary-dark) radial-gradient(circle, transparent 1%, var(--color-secondary-dark) 1%)
        center/15000%;
}
.btn-velpay:active,
.calculator-button:active {
    background-color: var(--color-primary-dark);
    background-size: 100%;
    transition: background 0s;
}
.btn-velpay,
.calculator-button {
    font-size: 16px;
    font-weight: 700;
    height: 45px;
    cursor: pointer;
    background-color: #88b433;
    padding: 10px 50px;
    border-radius: 7.31px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    border: unset;
    background-position: center;
    transition: background 0.8s;
}
.btn-velpay-primary,
.calculator-button {
    color: var(--color-base-light);
    background-color: var(--color-secondary);
}
.btn-velpay-lg {
    height: 55px;
}
.comision {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    width: 60px;
    line-height: 60px;
}
.carousel .carousel-indicators li {
    background-color: var(--color-primary);
    border-radius: 100%;
    opacity: 0.2974795386904762;
    width: 14.63px;
    height: 14.63px;
}
.carousel .carousel-indicators li.active {
    opacity: 1;
}

.subscription-detail {
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subscription-detail-image {
    max-height: 200px;
}

@media (min-width: 1024px) {
    .movile {
        display: none;
    }
    .desktop {
        display: block;
    }
    h1 {
        font-size: 60px;
        font-weight: 400;
        color: var(--color-base-light);
        margin-bottom: 1rem;
    }
    h2 {
        font-size: 40px;
        font-weight: 400;
        color: var(--color-base-light);
        margin-bottom: 1rem;
    }
    h3 {
        font-size: 30px;
        font-weight: 700;
        color: var(--color-primary);
        margin: 0 0 0.5rem;
    }
    h5 {
        font-size: 26px;
        font-weight: 400;
        color: var(--color-primary);
        margin: 0 0 0;
    }
    .p1 {
        font-size: 20px;
    }
    ul.horizontal {
        display: flex;
        flex-wrap: wrap;
    }
    .links-apps {
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 1rem;
        justify-content: center;
    }
    .links-apps li {
        flex: 0 0 33%;
    }
    .image-scale {
        width: 100%;
        max-width: 500px;
    }
    .carousel {
        margin: 0 -120px;
    }
    .carousel .carousel-indicators {
        bottom: -50px;
    }

    .subscription-detail {
        margin-top: 60px;
        padding: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .subscription-detail-image {
        max-height: 300px;
    }
    .subs-form {
      display: grid;
      grid-template-columns: minmax(100px,450px);
    }
    .app-store {
        margin: 16px;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

