body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.bg-primary {
    background-color: #f0f0f0;
}

.bg-secondary {
    background-color: #15AFA7;
}

.btn {
    padding: 1rem 1rem;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    width: 260px;
    height: auto;
    align-items: center;

}

.btn-primary {
    background-color: #f0f0f0;
}

.btn-secondary {
    background-color: #0b7c77;
}

.btn-dark-primary {
    background-color: #0b5f5b;
}

.btn-primary:hover {
    background-color: #d2d2d2;
}

.btn-secondary:hover {
    background-color: #12948d;
}

.btn-dark-primary:hover {
    background-color: #0f7974;
}

.tc-black {
    color: #161616;
}

.tc-white {
    color: #ffffff;
}

.tc-primary {
    color: #1bded5;
}

.tc-center {
    text-align: center;
}

.tc-justify {
    text-align: justify;

}

.tc-bold {
    font-weight: bold;
}

.m-0 {
    margin: 0;
}

.m-0-5 {
    margin: 0.5rem;
}

.m-1 {
    margin: 1rem;
}

.m-1-5 {
    margin: 1.5rem;
}

.m-2 {
    margin: 3rem;
}

.mb-1-5r {
    margin-bottom: 1.5rem;
}

.mt-1-5r {
    margin-top: 1.5rem;
}

.mr-2r {
    margin-right: 2rem;
}

.ml-2r {
    margin-left: 8rem;
}

.my-2r {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3r {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.p-1r {
    padding: 1rem;
}

.p-2r {
    padding: 2rem;
}

.p-3r {
    padding: 3rem;
}

.px-1r {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2r {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1r {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3r {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.gap-1r {
    gap: 2rem;
}

.max-w-600 {
    max-width: 600px;
}

.d-sticky {
    position: sticky;
    top: 0;
}

.d-flex {
    display: flex;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.col {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.img-700-500 {
    width: 100%;
    max-width: 700px;
    height: auto;
}


.img-300-450 {
    width: 300px;
    height: 450px;
}

.img-150-40 {
    width: 150px;
    height: 40px;
}


.img-50-75 {
    width: 50vh;
    height: 75vh;
}

.img-50 {
    width: 50vh;
    height: 50vh;
}

.img-35 {
    width: 35vh;

}

.img-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/background-s1.png);
    background-size: cover;
    background-position: center;
    width: auto;
    height: 70vh;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    width: 80%;
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 50%;
}

.texto {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.img-box {
    position: relative;
    display: inline-block;
}

.img-styled {
    display: block;
    position: relative;
    z-index: 2;
}

.img-box::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: 1.5rem;
    left: 1.5rem;
    width: 100%;
    height: 100%;
    border: 12px solid #EAE9E9;
    z-index: 1;
}

.z-i-10 {
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .img-150-40 {
        width: 150px;
        height: 35px;
    }


    .row {
        flex-direction: column;
    }

    .title {
        font-size: 2rem;
        width: 100%;
    }

    .subtitle {
        font-size: 1.5rem;
        width: 100%;
    }

    .texto {
        font-size: 1.2rem;
    }

    .img-700-500,
    .img-300-450 {
        width: 100%;
        height: auto;
    }

    .btn {
        height: 70px;
        width: 150px;
        height: auto;
        font-size: 1.2rem;
    }

    .ml-2r {
        margin-left: 0;

    }

    .mt-2r {
        margin-top: 1rem;
    }

    .img-box::before {

        top: 0.8rem;
        left: 0.8rem;
        border: 4px solid #EAE9E9;
    }
}