* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar Section */

.navbar {
    background: #ffffff;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: #4fbbe1;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 2rem;
}

/*.fa-shark {
    margin-right: 0.5rem;
} Icon*/

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__lightMode--icon button {
    background: none;
    border: none;
    cursor: pointer;
}

.navbar__item {
    height: 80px;
}

.navbar__cart {
    filter: none;
    height: 30px;
    width: 30px;
}

.navbar__lightMode--icon img {
    height: 30px;
    width: 30px;
}

.navbar__links {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 30px;
    color: #fff;
}

.navbar__user {
    filter: none;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
}

.navbar__links:hover {
    color: #ff7d13;
    transition: all 0.3s ease;
}

/* Mobile Responsive */

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5 ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #ffffff;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 90vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #000000;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin-top: 20px;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section CSS*/

.main {
    background-color: #ffffff;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content h1 {
    font-size: 4rem;
    background-color: #4fbbe1;
    background-image: linear-gradient(to top, #b721ff 0%, #4fbbe1 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2 {
    font-size: 4rem;
    background-color: #1cabfd;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.main__btn {
    font-size: 1rem;
    background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4837ff;
    transition: all 0.32s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #fff;
}

.main__btn:hover::after {
    width: 100%;
}

.main__img--container {
    text-align: center;
}

#main__img {
    height: 100%;
    width: 100%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__container p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__container p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* Featured Section CSS */

.featured__products {
    background: #ffffff;/* #feffe9 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%; /* Ou 100vh (estava com erro)*/
}

.featured__products h1 {
    background-color: #ff8177;
    background-image: linear-gradient(to right, 
    #3ad9fd 0%, 
    #1dd4fd 0%, 
    #0ad1fd 21%, 
    #0a88fd 52%, 
    #c342ff 78%, 
    #b721ff 100%);
    background-size: 100%;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.featured__mission {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%; /* Ou 100vh (estava com erro)*/
}

.featured__mission h1 {
    background-color: #ff8177;
    background-image: linear-gradient(to right, 
    #3ad9fd 0%, 
    #1dd4fd 0%, 
    #0ad1fd 21%, 
    #0a88fd 52%, 
    #c342ff 78%, 
    #b721ff 100%);
    background-size: 100%;
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.featured__mission h2 {
    background-color: #4fbbe1;
    background-size: 100%;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-size: 2rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.featured__mission h3 {
    background-color: #4fbbe1;
    background-size: 100%;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-size: 1.7rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.featured__mission p {
    color: #000000;
    margin-left: 10rem;
    margin-right: 10rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.featured__mission p a {
    color: #000000;
    text-decoration: none;
}

.featured__image {
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    height: auto; /* Allow the container to adapt to the image size */
    width: 100%; /* Make the container full width (adjust as needed) */
}

.featured__image img {
    max-width: 100%;
    max-height: 800px;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any extra space below the image */
}

@media screen and (max-width: 960px;) {
    .featured__products {
        height: 1600px;
    }

    .featured__products h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }

    .featured__mission {
        height: 1600px;
    }

    .featured__mission h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }

    .featured__mission h2 {
        font-size: 1.7rem;
    }

    .featured__mission h3 {
        font-size: 1.2rem;
    }

    .featured__mission p {
        font-size: 0.8rem;
        margin-left: 8rem;
        margin-right: 8rem;
    }
}

@media screen and (max-width: 480px) {
    .featured__products {
        height: 100%;
        width: 100%;
    }

    .featured__products h1 {
        font-size: 1.2rem;
    }

    .featured__mission {
        height: 100%;
        width: 100%;
    }

    .featured__mission h1 {
        font-size: 1.2rem;
    }

    .featured__mission h2 {
        font-size: 1rem;
    }

    .featured__mission h3 {
        font-size: 0.8rem;
    }

    .featured__mission p {
        font-size: 0.6rem;
        margin-left: 6rem;
        margin-right: 6rem;
    }
}

/* Footer CSS */

.footer__container {
    background-color: #ffffff;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#footer__logo {
    color: #000000;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__links--wrapper {
    display: flex;
}

.footer__links--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__links--items h2 {
    margin-bottom: 16px;
}

.footer__links--items > h2 {
    color: #000000;
}

.footer__links--items a {
    color: #000000;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer__links--items a:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
}

/* Social Icons */

.social__icon--link {
    color: #fff;
    font-size: 24px;
}

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.social__logo {
    color: #fff;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.website__rights {
    color: #000000;
}

@media screen and (max-width: 820px) {
    .footer__links {
        padding-top: 2rem;
    }

    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__links--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer__links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}

/* Login page*/

.login__container {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-height: 100vh;
}

.login__form {
    background: #eee;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    height: 650px;
    width: 350px;
    padding-top: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login__form h1 {
    color: #000000;
    text-align: center;
    font-size: 50px;
    margin-bottom: 100px;
}

.login__input {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
}

.login__input--user {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.login__input--user input{
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.login__input--password {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.login__input--password input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.login__btn {
    background: #3700ff;
    cursor: pointer;
    border-radius: 4px;
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    margin-bottom: 35px;
}

.login__btn:hover {
    background: #ff7d13;
    transition: all 0.3s ease-in;
}

.login__signup {
    color: #000000;
    text-align: center;
}

.login__signup a {
    text-decoration: none;
    color: #ff7d13;
}

@media screen and (max-height: 620px) {
    .login__form {
        height: 550px;
    }
}

/* Sign Up page */

.signup__container {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-height: 100vh;
}

.signup__form {
    background: #eee;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    height: 650px;
    width: 350px;
    padding-top: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.signup__form h1 {
    color: #000000;
    text-align: center;
    font-size: 50px;
    margin-bottom: 100px;
}

.signup__input {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
}

.signup__input--user {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.signup__input--user input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.signup__input--email {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.signup__input--email input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.signup__input--password {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.signup__input--password input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.signup__btn {
    background: #3700ff;
    cursor: pointer;
    border-radius: 4px;
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    margin-bottom: 35px;
}

.signup__btn:hover {
    background: #ff7d13;
    transition: all 0.3s ease-in;
}

.signup__login {
    color: #000000;
    text-align: center;
}

.signup__login a {
    text-decoration: none;
    color: #ff7d13;
}

@media screen and (max-height: 620px) {
    .signup__form {
        height: 550px;
    }
}

/* Profile page*/

.profile__container {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-height: 100vh;
}

.profile__form {
    background: #eee;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    height: 650px;
    width: 350px;
    padding-top: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.profile__form h1 {
    color: #000000;
    text-align: center;
    font-size: 50px;
    margin-bottom: 100px;
}

.profile__input {
    position: relative;
    margin-left: 50px;
    margin-right: 50px;
}

.profile__input--user {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.profile__input--user input{
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.profile__input--email {
    border-bottom: 2px solid #000000;
    margin: 35px 0;
}

.profile__input--email input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000000;
    font-size: 1rem;
}

.profile__btn {
    background: #3700ff;
    cursor: pointer;
    border-radius: 4px;
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    margin-bottom: 35px;
}

.profile__btn:hover {
    background: #ff7d13;
    transition: all 0.3s ease-in;
}

@media screen and (max-height: 620px) {
    .profile__form {
        height: 550px;
    }
}


/* Detail Page */

.container {
    width: 900px;
    max-width: 90vw;
    margin: auto;
    padding-top: 10px;
    text-align: center;
}

.container a {
    color: unset;
    text-decoration: none;
}

.title {
    font-size: xx-large;
    padding: 20px 0;
}

.listProducts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.listProducts img {
    width: 90%;
    filter: drop-shadow(0 50px 20px #0009);
}

.similar__products {
    background-color: #eeeee6;
    padding: 20px;
    border-radius: 20px;
}

.listProduct .services__card img {
    width: 90%;
    filter: drop-shadow(0 50px 20px #0009);
}

.listProduct {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.listProduct .services__card {
    background-color: #eeeee6;
    padding: 20px;
    border-radius: 20px;
}

.listProduct .services__card h2 {
    font-size: large;
    font-weight: 500;
}

.listProduct .services__card .price{
    letter-spacing:  7px;
    font-size: small;
}

.detail{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: left;
}

.detail .image img {
    width: 100%;
}

.detail .image {
    position: relative;
}
/* Shadow */
.detail .image::before {
    position: absolute;
    width: 200px;
    height: 200px;
    content: '';
    background-color: #94817733;
    z-index: -1;
    border-radius: 190px 100px 170px 180px;
    left: calc(50% - 100px);
    top: 50px;
}

.detail .name {
    font-size: xxx-large;
    padding: 40px 0 0 0;
    margin: 0 0 10px 0;
}

.detail .price {
    font-weight: bold;
    font-size: x-large;
    letter-spacing: 7px;
    margin-bottom: 20px;
}

.detail .details__buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.detail .details__buttons button {
    background-color: #eee;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: large;
}

.detail .details__buttons img {
    filter: invert(100%);
    width: 15px;
    height: 15px;
}

.detail .details__buttons span {
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 20px;
    color: #eee;
}

.detail .details__buttons button:nth-child(2) {
    background-color: #2f2f2f;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px #2f2f2f77;
}

.detail .description {
    font-weight: 300;
}

/* ipad */
@media screen and (max-width: 992px){
    .listProduct {
        grid-template-columns: repeat(3, 1fr);
    }
    .detail {
        grid-template-columns: 40% 1fr;
    }
}

/* mobile */
@media screen and (max-width: 768px){
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .detail .image img{
        justify-content: center;
        align-items: center;
        width: unset;
        height: 30vh;
    }
    .detail .name {
        font-size: x-large;
        margin: 0;
    }
    .detail .buttons button {
        font-size: small;
    }
    .detail .buttons{
        justify-content: center;
    }

}