body {
    background-color: #000;
}

main {
    position: relative;
    width: 100%;
}

header.desktop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;

    width: 100%;
    font-family: var(--main-title-font);
    padding: 4rem 0;
    transition: 0.5s ease;
    transition-property: height, background;
    text-transform: uppercase;
}

header.active {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-back);
    padding: 1.5rem 0;
    backdrop-filter: blur(60px);
}

header.active .logo {
    width: 6rem;
}

header .container {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav ul {
    display: flex;
    align-items: center;

    list-style: none;
}

header .logo img {
    position: relative;
    max-width: 100%;
    width: 8rem;
    border-radius: 100%;
}

header nav ul li a {
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 300;
    width: 600;
    color: #fff;

    margin-left: 5rem;
}

header.active nav ul li a {
    color: white;
}

nav#autoNav .close-menu,
nav#autoNav .open-menu {
    display: none;
}

.logo a {
    font-size: 4rem;
    text-decoration: none;
    color: var(--primary-color);
}

main .container-cont {
    max-width: 135rem;

    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 25rem;
    overflow: hidden;

}

.main-text {
    max-width: 60rem;
    margin-top: 5rem;
}

.main-text h1 {
    font-size: 6.4rem;
    font-family: var(--main-title-font);
    font-weight: 500;
    color: #fff;
}

.main-text h1 span {
    color: var(--primary-color);
}

.main-text h2 {
    margin-top: 1rem;
    font-family: var(--main-title-font);
    font-size: var(--subtitle-font);
    font-weight: 500;
    color: white;
}

.image-main {
    position: relative;
    max-width: 100%;
}

.image-main img {
    position: relative;
    max-width: 100%;
}

.luz-main-mobile{
    display: none;
}

.luz-main {
    display: none;
    position: absolute;
    top: -400px;
    right: -200px;
    z-index: -1;
}

.btn {
    margin-top: 2.5rem;
    transition: all 0.3s ease-in-out;
    font-family: "Dosis", sans-serif;
}

.btn {
    padding: 20px 30px;
    border-radius: 10px;
    background-image: linear-gradient(135deg, #FF711C 0%, #FF711C 100%);
    box-shadow: 0 20px 30px -6px rgba(255, 113, 28, 0.5);
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: white;
}

.btn:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.btn:active {
    opacity: 0.5;
}

/* -- Inicio subMain -- */

.subMain {
    position: relative;
    margin: 15rem auto 5rem auto;
}

.subMain .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.subMain .one h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
}

.subMain .one h1 span {
    color: var(--primary-color);
}

.subMain .one .line {
    width: 20rem;
    height: 3px;
    background-color: var(--primary-color);
}

.subMain .two {
    background-color: var(--secondary-color);
    padding: 30px 30px;
    border-radius: 10px;
}

.subMain .two h1 {
    font-family: var(--main-title-font);
    font-size: 3rem;
    color: white;
}

.subMain .two p {
    font-family: var(--main-title-font);
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin-top: 1rem;
}

/* -- FIm subMain -- */

/* -- Inicio Beneficts -- */

.Beneficts {
    position: relative;
    margin: 20rem auto 15rem auto; 
}

.Beneficts .main-text {
    max-width: 80%;
}

.Beneficts .main-text h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
    max-width: 100%;
}

.Beneficts .main-text h1 span {
    color: var(--primary-color);
}

.Beneficts .main-text h2 {
    font-family: var(--main-title-font);
    font-size: var(--subtitle-font);
    color: white;
    font-weight: 300;
}

.Beneficts .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5rem auto;

    color: white;
}

.Beneficts .card{
    text-align: center;
    border: solid 2px var(--primary-color);
    max-width: 36rem;
    background-color: #000;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 30px 30px;
}

.Beneficts .card h2{
    font-family: var(--main-title-font);
    font-size: var(--subtitle-font);
    color: white;
    margin-top: 1rem;
}

.Beneficts .card p{
    font-family: var(--main-title-font);
    font-size: 1.8rem;
    color: white;
    margin-top: 1rem;
    font-weight: 100;
}

/* -- FIm Beneficts -- */

/* -- Inicio CTA -- */

.cta {
    position: relative;
    margin: 5rem auto;
}

.cta .main-text{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.cta .main-text h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
}

.cta .main-text h1 span {
    color: var(--primary-color);
}

.cta .main-text h2 {
    font-family: var(--main-title-font);
    font-size: var(--subtitle-font);
    color: white;
    font-weight: 300;
    max-width: 70%;
    margin: 2rem auto;
}

.cta .main-text h2 span {
    color: var(--primary-color);
    font-weight: 700;
}

.luz-right {
    position: absolute;
    top: -700px;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

/* -- FIm CTA -- */

/* -- Inicio/ Beneficts-two -- */

.Beneficts-two {
    position: relative;
    margin: 20rem auto;
}

.Beneficts-two .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Beneficts-two .main-text{
    max-width: 100%;
    margin-top: 0;
}

.Beneficts-two .main-text h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
}

.Beneficts-two .main-text h1 span {
    color: var(--primary-color);
}

.Beneficts-two .main-text p {
    font-family: var(--main-title-font);
    font-size: 20px;
    line-height: 30px;
    color: white;
    font-weight: 300;
    max-width: 60rem;
    margin-top: 2rem;
}

.Beneficts-two .main-text p span {
    color: var(--primary-color);
    font-weight: 700;
}

/* -- FIm Beneficts-two -- */

/* -- Inicio Beneficts-three -- */

.Beneficts-three {
    position: relative;
    margin: 20rem auto;
}

.Beneficts-three .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Beneficts-three .main-text:first-child{
    display: none;
}

.Beneficts-three .main-text{
    max-width: 100%;
    color: white;
    margin-top: 0;
}

.Beneficts-three .main-text h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
}

.Beneficts-three .main-text h1 span {
    color: var(--primary-color);
}

.Beneficts-three .main-text p {
    font-family: var(--main-title-font);
    font-size: 20px;
    line-height: 30px;
    color: white;
    font-weight: 300;
    max-width: 60rem;
    margin-top: 2rem;
}

.Beneficts-three .main-text p span {
    color: var(--primary-color);
    font-weight: 700;
}

.luz-left {
    position: absolute;
    top: -800px;
    left: 0;
    z-index: -1;
}

/* -- FIm Beneficts-three -- */

/* -- Inicio about -- */

.about {
    position: relative;
    margin: 20rem auto;
}

.about .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .main-text{
    max-width: 100%;
    color: white;
    margin-top: 0;
}

.about .main-text h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
}

.about .main-text h1 span {
    color: var(--primary-color);
}

.about .main-text p {
    font-family: var(--main-title-font);
    font-size: 20px;
    line-height: 30px;
    color: white;
    font-weight: 300;
    max-width: 60rem;
    margin-top: 2rem;
}

.about .main-text p span {
    color: var(--primary-color);
    font-weight: 700;
}

.about .pontos {
    display: flex; 
    flex-direction: column;
    margin-top: 1rem;
    gap: 10px;
}

.about .ponto {
    display: flex; 
    align-items: center;
    gap: 15px;
}

.about .ponto h2{
    margin-top: 0;
}

/* -- FIm about -- */

/* -- Inicio iphone -- */

.iphone {
    position: relative;
    margin: 20rem auto 15rem auto;
}

.iphone .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iphone .image-main {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.iphone .image-main img {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.luz-left {
    position: absolute;
    top: -800px;
    left: 0;
    z-index: -1;
}

/* -- FIm iphone -- */

/* -- Inicio CTA 2 -- */

.cta-two {
    position: relative;
    margin: 5rem auto;
}

.cta-two .main-text{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.cta-two .main-text h1 {
    font-family: var(--main-title-font);
    font-size: var(--title-font);
    color: white;
}

.cta-two .main-text h1 span {
    color: var(--primary-color);
}

.cta-two .main-text h2 {
    font-family: var(--main-title-font);
    font-size: var(--subtitle-font);
    color: white;
    font-weight: 300;
    max-width: 70%;
    margin: 2rem auto;
}

.cta-two .main-text h2 span {
    color: var(--primary-color);
    font-weight: 700;
}

/* -- FIm CTA 2 -- */

/* -- FOOTER -- */

footer {
    background-color: var(--background-dark-color);

    text-align: center;
    

    padding: 4rem 0 2rem;
}

footer img {
    width: 15rem;

    border-radius: 50%;
}

footer h1 {
    font-size: 5.5rem;
    font-weight: 400;
    color: var(--primary-color);

    max-width: 50rem;

    margin: 1.5rem auto 2rem auto;
}

.perinSistemas {
    margin-top: 1.2rem;

    font-size: 1.4rem;
    font-family: var(--main-title-font);
    font-size: 1.5rem;
    color: var(--primary-light-text-color);
}

.perinSistemas a {
    color: var(--triobyte-color);
    text-decoration: none;
    font-size: 2rem;

    margin: 0 .5rem 0;
}

.perinSistemas a:hover {
    text-decoration: underline;
}