/* Global */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap');

:root {
    --primary-color: #003AFE;
    --secondary-color: #FF7330;
    --blue-color: #2F5AEB;
    --dark-color: #333333;
    --border-color: #707070;
}

body, p, div {
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}
p.lead {
    font-size: 18px;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-dark {
    color: var(--dark-color) !important;
}
.points {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 99;
    padding: 20px 5px;
    border-radius: 20px;
    background-color: var(--blue-color);
}
.points .circle {
    width: 12px;
    height: 12px;
    background-color: #fff;
    margin-bottom: 25px;
    border-radius: 50%;
    cursor: pointer;
}
.points .circle:last-child {
    margin-bottom: 0;
}
.points .circle.active {
    width: 24px;
    height: 24px;
    background-color: var(--blue-color);
    border: 6px solid #fff;
}
.custom-btn {
    background-color: var(--secondary-color);
    padding: 10px 45px;
    border-radius: 20px;
    text-decoration: none;
}
.custom-btn:hover {
    color: #fff;
}

/* Menu */
.navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
.navbar #register {
    border-radius: 16px;
    border: 2px solid #fff;
}
.navbar #register:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.navbar #login {
    padding: 10px;
    background-color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 680px;
    max-height: 100vh;
    background-image: url("../images/landing/hero-hd.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero .text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    z-index: 1;
}
.hero .arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F5F2F2;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 15px 20px 0 20px;
    cursor: pointer;
}

/* Services */
.services {
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url("../images/landing/services-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.services .service {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    box-shadow: rgba(0,0,0,.16) 0 3px 6px;
    width: 240px;
    height: 210px;
    margin-right: 40px;
}
.services .service:nth-child(4),.services .service:last-child  {
    margin-right: 0;
}
.services .service .content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.services .service img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

/* Process */
.process .step1 {
    position: relative;
    left: -70px;
    top: -40px;
}
.process .step2 {
    position: relative;
    left: 60px;
    top: -10px;
}
.process .step3 {
    position: relative;
    left: 240px;
    top: -50px;
}
.process .step4 {
    position: relative;
    left: 390px;
    top: -10px;
}

/* Ads */
.ads {
    position: relative;
}
.ads .header {
    position: relative;
    background-image: url("../images/landing/ads-bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 530px;
}
.ads .content {
    position: absolute;
    height: 300px;
    top: 190px;
    width: 100%;
}
.ads .steps {
    background-color: #fff;
    max-width: 900px;
    box-shadow: 0 0 6px rgba(0,0,0,.16);
}
.ads .steps .step {
    box-shadow: 0 0 6px rgba(0,0,0,.16);
    padding-left: 20px;
    border-radius: 10px;
    cursor: pointer;
    width: 570px;
    padding-right: 10px;
}
.ads .steps .step .circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
}
.ads .steps .step.active {
    font-weight: bold;
}
.ads .steps .step.active .circle {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
.ads img {
    position: absolute;
    width: 500px;
    height: 500px;
    object-fit: contain;
    object-position: center;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Packages */
.packages {
    padding-top: 260px;
    padding-bottom: 100px;
}
.packages .package {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(0,0,0,.16);
    padding: 40px 10px;
    width: 300px;
    border-radius: 20px;
    z-index: 5;
}
.packages .package::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    display: block;
    background-color: #F6F6F6;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: -1;
}
.packages .package .title {
    font-weight: 500;
}
.packages .package .number {
    color: #b3b3b3;
}
.packages .package.jofogas {
    background-color: #F6F6F6;
    width: 100%;
    padding-top: 0;
    max-width: 540px;
}
.packages .package.jofogas::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    display: block;
    background-color: #fff;
    width: 120%;
    height: 120%;
    border-radius: 0;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}
.packages .package.jofogas .tag {
    background-color: #F6F6F6;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 7px 10px;
}

/* fotter */
footer {
    background-color: #404040;
    padding: 20px 0;
}

/* responsive */
@media screen and (max-width: 1199px) {
    .ads .header {
        background-size: cover;
        height: auto;
    }
    .ads .content {
        position: relative;
        height: unset;
        top: 0;
    }
    .ads .content .step {
        width: auto;
    }
    .ads .steps .step .circle {
        width: 25px;
        height: 25px;
        min-width: 25px;
        min-height: 25px;
        line-height: 25px;
    }
    .ads img {
        position: relative;
        width: 350px;
        height: 350px;
        max-width: 100%;
    }
    .packages {
        padding-top: 0;
    }
    .hero {
        min-height: 300px;
    }
    .hero .text-content {
        margin-top: 20px;
    }
}
@media screen and (max-width: 1199px) {
    .hero {
        height: 500px;
    }
}
@media screen and (max-width: 991px) {
    .navbar {
        background-color: var(--primary-color);
        z-index: 99;
    }
    .hero {
        min-height: 400px;
        height: unset;
        background-image: none;
        background-color: var(--primary-color);
    }
    .hero .text-content {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        transform: translateY(0);
        padding: 0 15px;
        padding-top: 70px;
    }
}
@media screen and (max-width: 767px) {
    
    .hero h1 {
        font-size: 25px;
    }
    .hero p {
        font-size: 14px;
    }
    .packages .package {
        transform: translateX(-50%);
        left: 50%;
    }
    .services .service {
        margin-right: 0;
    }
    .points {
        right: 10px;
    }
}
@media screen and (max-width: 575px) {
    .packages .package.jofogas::after {
        top: -280px;
        width: 160%;
        height: 160%;
    }
}

@media screen and (min-width: 575px) and (max-width: 991px) {
    .hero {
        min-height: 400px;
        height: unset;
        background-image: url("../images/landing/hero-small.jpg") !important;
    }
}