@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body{
    min-height: 100vh;
    width: 100%;
    background-image: url(../assets/bg-desk3.png);
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
    background-color: rgb(255, 250, 250);
    background-repeat: no-repeat;
}

body::before{
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    width: 300px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.192);
    top: 200px;
    left: 100px;
    z-index: -1;
}

.container-main{
    min-height: 100vh;
    width: 100%;
}

.navbar{
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left ul{
    list-style: none;
    display: flex;
    gap: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.navbar-left ul li{
    cursor: pointer;
    position: relative;
    color: #000000;
}

.navbar-left ul li a{
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}

.navbar-left ul li::before{
    content: "";
    width: 0%;
    height: 2px;
    background-color: #333333;
    position: absolute;
    bottom: -7px;    
    left: 0;
    transition: 0.3s all ease;
}

.navbar-left ul li:hover::before{
    width: 100%;
}

.navbar-left{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.container-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 109px);
}

.container-body-center{
    display: flex;
    width: 85%;
    justify-content: center;
    /* align-items: center; */
    /* margin: 100px auto 0; */
    margin: 80px 0 0 120px;
    gap: 100px;
}

.img_home img{
    width: 700px;
}

.footer{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;

}

.card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .copy{
    font-size: 13px;
    color: rgba(245, 245, 248, 0.575);
}

.container-body-center-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* align-items: center; */
    margin-top: 100px;
    justify-content: space-between;
    height: 100%;
}

.container-body-center-text h2{
    font-size: 50px;
    color: #333333;
    text-transform: uppercase;
}
.container-body-center-text h3{
    font-size: 30px;
    color: #333333;
    /* text-transform: uppercase; */
}

.container-body-center-text p{
    font-size: 18px;
    text-align: justify;
    color: #333333;
    /* text-transform: uppercase; */
}
 
.button {
    display: inline-block;
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 30px;
    text-align: center;
    border: none;
    width: 250px;
    background-color: #000000;
    background-image: radial-gradient(200% 70% at center 20%, rgba(48,44,45,1) -30%, rgba(50,46,47,1) 49%, rgba(22,18,19,1) 50%, rgba(22,18,19,1) 150%);
    background-repeat: no-repeat;
    transition: background-position-y ease-in-out 250ms;
    margin-top: 20px;
   }
   
   .button:hover {
    background-position-y: -50px;
    cursor: pointer;
   }
   
   .button:active {
    transform: scale(0.99);
   }

   .footer-cards{
    display: flex;
    gap: 20px;
    height: 40px;
    width: 100%;
   }

   .footer-cards div{
    background-color: rgba(0, 0, 0, 0.692);
    transform: skew(-25deg);
    width: 150px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s all ease;
   }

   .footer-cards div:hover{
    background-color: #333333;
   }

   .logo{
    width: 150px;
   }

   .contact{
    font-size: 18px;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
   }

   .contact img{
    width: 25px;

   }

   .modal{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.664);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 999;
   }

   .modal-card{
    background-color: whitesmoke;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 400px;
    gap: 20px;
    position: relative;
   }

   .modal-inputs{
    display: flex;
    flex-direction: column;
    gap: 15px;
   }

   .modal-card h2{
    text-transform: uppercase;
    color: #333333;
   }

   .divider{
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #333333, transparent);
   }

   .modal-inputs input{
    height: 35px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #333333;
    padding: 0 20px;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
   }

   .modal-inputs input::placeholder{
    color: #3333339f;
    font-size: 14px;
   }

   .modal-inputs input:focus{
    border: #cc0c25;
    outline: 2px solid #970216;
   }

   .modal-inputs div{
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
   }

   .modal-inputs div label{
    font-size: 14px;
    font-weight: 600;
    color: #424242;
   }

  .modal-button{
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
  }

  .modal-close{
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 20px;
    font-weight: 600;
    padding: 3px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease-in-out;
    cursor: pointer;
  }

  .modal-close:hover{
    background-color: #333333;
    color: white;
  }

  .aparecer{
    animation: aparecer 0.5s forwards;
  }
  
  .eye-password{
    width: 25px;
    position: absolute;
    right: 15px;
    bottom: 5px;
  }

  @keyframes aparecer {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
  }

  @media only screen and (max-width:1350px){
    .img_home img{
        width: 500px;
    }

    .container-body-center-text h2{
        font-size: 36px;
    }

    .container-body-center-text h3{
        font-size: 20px;
    }

    .container-body-center-text p{
        font-size: 16px;
    }

    .container-body-center {
        gap: 20px;
    }
  }

  @media only screen and (max-width:1000px) {
    body{
        background-image: url(../assets/bg-mobile.png);
    }

    .container-body-center {
        flex-direction: column;
        margin:20px auto;
        align-items: center;
        justify-content: center;
        width: 90%;
        gap: 80px;
        padding-bottom: 60px;
    }

    .container-body-center-text{
        flex-direction: row;
        align-items: center;
    }

    .footer-cards{
        flex-direction: column;
        width: 40%;
        height: fit-content;
        justify-content: center;
        align-items: center;
    }
    .footer-cards div{
        height: 40px;
        width: 90%;
    }
    .card{
        width: 50%;
    }

    
  }

  @media only screen and (max-width:769px) {

    body{
        background-image: url(../assets/mobile-star.png);
    }
    
    body::before{
        left: 0;
        top: 100px;
    }
    .container-body-center-text{
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        height: auto;
    }

    .card{
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .footer-cards{
        width: 100%;
    }

    .navbar ul li{
        font-size: 12px;
        /* color: #fff; */
    }

    .logo{
        width: 90px;
    }

    .navbar-left{
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }

    .navbar{
        padding: 20px 15px;
        justify-content: space-between;
    }

    .contact{
        display: none;
    }
    
    .img_home{
        overflow: hidden;
        position: relative;
        bottom: 10px;
    }
    .img_home img{
        width: 100%;
        position: relative;
        left: 50px;
    }

    .card button{
        margin: 0 auto;
    }

    .footer-cards{
        flex-direction: row;
        display: none;
    }

    .footer-cards div{
        height: 30px;
        font-size: 12px;
        font-weight: 500;
    }

    .container-body-center-text h2{
        font-size: 32px;
    }

    .container-body-center-text h3{
        font-size: 18px;
    }

    .container-body-center-text p{
        font-size: 16px;
    }
    .container-body{
        min-height: calc(100vh - 109px);
        height: fit-content;
        justify-content: center;
    }

    .container-body-center{
        padding-bottom: 0;
    }

    .container-body button{
        margin-top: 30px;
    }

    .footer{
        position: static;
    }

  }