*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    list-style: none;
}

html
{
    scroll-behavior: smooth;
}

:root
{
    --color--primary: #74c0ff;
}

.containerHeader
{
    width: 100%;
    height: auto;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.containerNavBar
{
    width: 100%;
    height: 60px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.imageLinkLogo
{
    width: 120px;
}

#checkNavBar
{
    display: none;
}

.labelNavBar
{
    display: none;
}

.containerListNavBar
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.itemListNavBar
{
    margin: 7px 13px;
}

.linkListNavBar
{
    color: #444;
    font-weight: 700;
    transition: .3s ease-in-out;
}

.linkListNavBar:hover
{
    color: #000;
}

.buttonWsp
{
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: green;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    animation: buttonMove 1s ease-in-out infinite alternate-reverse;
    z-index: 9;
}

.containerMain
{
    width: 100%;
    height: auto;
    margin: auto;
    background: linear-gradient(to bottom, #fff 0%, var(--color--primary) 70% );
}

.containerInfo
{
    width: 100%;
    height: 90vh;
    margin: auto;
    padding: 40px;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.textDisable
{
    width: fit-content;
    font-weight: 600;
    font-size: 20px;
    position: relative;
}

.textDisable::before
{
    content: "";
    width: 100%;
    top: 14px;
    height: 2px;
    background-color: red;
    position: absolute;
}

.textGray
{
    color: #222;
}


.containerInfoSystem
{
    width: 90%;
    height: 500px;
    margin: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 10px 20px rgb(66, 66, 66);
}

.containerSubtitleIcon
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.containerStepSystem
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.containerTextStepSystem
{
    width: 100%;
    height: auto;
    margin: auto;
}

.containerSliderSystem
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 20px;   
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container 
{
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 500px;
    margin: auto;
    overflow: hidden;
}

.slider 
{
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform .5s ease;
}

.slide 
{
    width: 100%;
    height: 100%;
}

.imageSlide
{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.buttonSlider
{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

button:hover 
{
    background-color: rgba(0, 0, 0, 0.8);
}

.prev 
{
    left: 20px;
}

.next 
{
    right: 0px;
}

@keyframes buttonMove 
{

    from
    {
        transform: translateY(-15px);
    }
    to
    {
        transform: translateY(0px);
    }
    
}

.iconWsp
{
    color: #fff;
    background-color: transparent;
}

.containerHero
{
    width: 100%;
    height: 100dvh;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    background: linear-gradient(to top, #fff 30%, var(--color--primary) 70%);
}

.containerInfoHero
{
    width: 90%;
    height: 100%;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.titleHero
{
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
}

.subtitleHero
{
    font-size: 18px;
    text-align: center;
    color: #222;
}

.textPrice
{
    font-size: 25px;
    font-weight: 800;
}


.imageHeroLogin
{
    width: 500px;
    height: 250px;
    object-fit: cover;
}

.textStep
{
    color: #222;
}

.containerSubtitleNameBusiness
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 30px;
    text-align: center;
    position: relative;
    display: grid;
    place-items: center;
    gap: 20px;
}

.nameBusiness
{
    width: fit-content;
    color: #000;
    position: relative;
    font-weight: 600;
}

.nameBusiness::after
{
    content: "";
    width: 100%;
    background-color: #000;
    height: 1px;
    position: absolute;
    top: 25px;
    left: 0;
}

.subtitleBusiness
{
    font-size: 30px;
}

.containerFeatures
{
    width: 90%;
    height: 90vh;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 40px 10px;
}

.cardFeature 
{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    color: #000;
    overflow: hidden; 
    transition: color .9s ease;
    border-radius: 10px;
}

.cardFeature::before 
{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #000;
    border-radius: 100%;
    transform: translateY(50%) scale(0);
    transition: transform .9s ease;
    z-index: 0;
}

.cardFeature:hover::before 
{
    transform: translateY(50%) scale(6);
}

.cardFeature * 
{
    position: relative;
    z-index: 1;
}

.cardFeature:hover 
{
    color: #fff;
}

.cardFeature:hover > .iconFeature
{
    background-color: #fff;
    color: #000;
}

.subtitleFeature
{
    font-size: 22px;
}

.iconFeature
{
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 100%;
    transition: .6s ease-in-out;
}

.containerFooter
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.containerInfoFooter
{
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.subtitleFooter
{
    font-size: 20px;
}

.imageLogoFooter
{
    width: 90%;
}

.containerListFooter
{
    display: grid;
}

.containerListSocialMediaFooter
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.itemListFooter
{
    margin: 5px;
}

.linkListFooter
{
    color: #fff;
    padding: 5px;
}

.containerSuccess
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 70px;
    text-align: center;
    display: grid;
    place-items: center;
    gap: 10px;
    background-color: #fff;
}

.titleSuccess
{
    font-size: 30px;
}

.button
{
    width: fit-content;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.button:hover
{
    background-color: #000;
    color: #fff;
}

.containerMessageError
{
    width: 100%;
    height: 100dvh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerCardMessageError
{
    max-width: 400px;
    max-height: 400px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px gray;
    border-radius: 10px;
    padding: 20px;
}

.titleMessageError
{
    font-size: 80px;
    color: var(--color--primary);
}

.subtitleMessageError
{
    font-size: 20px;
}

@media screen and (max-width:768px)
{

.labelNavBar
{
    display: block;
    cursor: pointer;
}

.containerListNavBar
{
    width: 100%;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
    right: -100vw;
    background: linear-gradient(to bottom, #fff 30%, var(--color--primary) 70%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 70px;
    transition: .3s ease-in-out;
}

.linkListNavBar
{
    color: #000;
    font-weight: 700;
    transition: .3s ease-in-out;
    font-size: 16px;
}

#checkNavBar:checked ~ .containerListNavBar
{
    right: 0;
} 

.containerHero
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.containerInfoHero
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 100px 25px 25px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.imageHeroLogin
{
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.containerFeatures
{
    width: 90%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.containerInfo
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px;
    display: grid;
    gap: 20px;
    place-items: center;
    grid-template-columns: repeat(1, 1fr);
}

.cardFeature
{
    width: 100%;
    height: 200px;
    margin: auto;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
}

.containerSuccess
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 40px;
    text-align: center;
    display: grid;
    place-items: center;
    gap: 10px;
    background-color: #fff;
}

.titleSuccess
{
    font-size: 30px;
}
   
.containerFooter
{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: #000;
    color: #fff;
}

.containerInfoFooter
{
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 20px;
    text-align: start;
}

.containerInfoSystem
{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 10px 20px rgb(66, 66, 66);
}

.imageLogoFooter
{
    width: 90%;
}

.containerListSocialMediaFooter
{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 5px;
}
}

@media screen and (max-width:550px)
{
.containerInfoHero
{
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 100px 25px 25px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.imageHeroLogin
{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.titleHero
{
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.subtitleHero
{
    font-size: 20px;
    text-align: center;
}

.containerFeatures
{
    width: 90%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 10px;
}

.cardFeature
{
    width: 100%;
    height: 200px;
    margin: auto;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
} 

.containerSuccess
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
}

.titleSuccess
{
    font-size: 20px;
}
}