@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.header-inner-content {
    max-width: 1300px;
    margin: 0 auto;
}

.navbar {
    background-color: #2c2c2c;
    padding: 1rem;
    position: sticky;
    top: 0;
    box-shadow: 10px 0px 10px #2c2c2c;
    z-index: 99;
}

.navbar>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGOMARCA */
.logo {
    color: #0084ff;
}
.logo > span {
    color: white;
}


/* NAVEGATION BAR */
.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
}
nav ul li {
    color: white;
    margin-right: 1.5rem;
    cursor: pointer;
}
nav ul li:hover {
    transform: translateY(-5px);
    transition: all .2s;
    font-weight: bold;
    text-decoration: underline;
}
.nav-icon-container {
    display: flex;
    align-items: center;
}
.nav-icon-container > img {
    width: 30px;
    cursor: pointer;
}
.nav-icon-container > img:first-child {
    margin-right: 1.5rem;
}
.menu-button {
    display: none;
}



/* SECTION 1 */
header {
    background-image: linear-gradient(white, #c7c7c7);
}
.header-bottom-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.header-bottom-side-left {
    height: 100%;
    flex-basis: 50%;
}
.header-bottom-side-left h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}
.header-bottom-side-left p {
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}
.header-bottom-side-left button {
    background-color: #0084ff;
    border: none;
    border-radius: 9999px;
    padding: .8rem 3.8rem;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all .2s;
}
.header-bottom-side-left button:hover {
    background-color: #004c94;
    cursor: pointer;
}

/* RIGHT */
.header-bottom-side-right {
    height: 100%;
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-bottom-side-right img {
    width: 115%;
}



@media(max-width: 800px) {
    .logo {
        font-size: 1.2rem;
    }

    .header-bottom-side {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }

    nav {
        position: absolute;
        background-color: #2c2c2cf4;
        width: 100%;
        top: 47px;
        display: none;
    }

    .show-menu nav {
        display: block;
    }

    .menu-button {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        text-align: center;
        padding: 0.8rem;
    }
}


/* Main */
main {
    background-color: #ebebeb;
}

.gray-background {
    background-color: #2c2c2c;
}

.page-inner-content {
    max-width: 1280px;
    margin: 0 auto;
}

.cols {
    display: grid;
    padding: 4rem 1rem;
    justify-content: space-evenly;
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.cols-3 img {
    max-width: 100%;
}

/* PRODUCTS */ 
.cols-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cols-4 img {
    max-width: 100%;
}

.cols>*{
    transition: all .2s;
    cursor: pointer;
}

.cols>*:hover{
    transform: translateY(-5px);
}

.section-title {
    text-align: center;
    margin-top: 5rem;
    font-size: 1.8rem;
}

.subtitle-underline {
    width: 100px;
    height: 5px;
    background-color: #0084ff;
    border-radius: 9999px;
    margin: 8px auto 0 auto;
}

.product {
    display: flex;
    flex-direction: column;
    color: #2c2c2c;
    margin-bottom: 1rem;
}
.product-name {
    font-weight: 600;
    margin-top: 0.4rem;
}
.product-price > span {
    font-weight: 600;
}
.rate {
    color: #0084ff;
    font-size: 1.3rem;
}

.exclusive-container {
    color: white;
    flex-direction: row-reverse;
    padding: 5rem 1rem;
}

.exclusive-container img {
    max-width: 500px;
}


/* Media queries*/ 
@media (max-width: 800px) {
    .section-title {
        font-size: 1rem;
    }

    .cols-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .cols-4 {
        grid-template-columns : repeat(2,1fr);
    }

    .product-name, .product-price, .price {
        max-height: 1rem;
        overflow: hidden;
        font-size: 0.8rem;
    }

    .exclusive-container {
        flex-direction: column-reverse;
    }
    .exclusive-container img {
        margin-bottom: 4rem;
    }
}


/* FEEDBACKS */
.feedbacks {
    display: flex;
    padding: 4rem 1rem;
    justify-content: space-evenly;
}

.comment {
    display: flex;
    flex-direction: column;
    flex-basis: 30%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px #afafaf;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.comment:hover {
    transform: translateY(-5px);
}

.comment p {
    margin: 5px 0;
}

.comment p:first-child {
    color: #0084ff;
    font-weight: bold;
    font-size: 5rem;
    line-height: 2rem;
    margin-top: 3rem;
}

.comment p:last-child {
    font-weight: bold;
    font-size: 1.2rem;
}

/* */ 
@media (max-width: 800px) {
    .feedbacks {
        flex-direction: column;
    }

    .comment {
        margin-bottom: 2rem;
    }
}

/* Footer */
.footer-content {
     display: flex;
     align-items: center;
     color: #8f8f8f;
     padding: 4rem 1rem;
     gap: 2rem;
}

.download-options>* {
    margin: 1rem 0;
}

.download-options>p:first-child {
    font-weight: bold;
    color: white;
}

.download-options>div {
    display: flex;
}

.download-options>div img {
    width: 180px;
}

.logo-footer {
    text-align: center;
}

.links-footer h3 {
    color: white;
    margin-bottom: 0.8rem;
}

.links-footer ul {
    list-style: none;
}

.links-footer ul li{
    margin-bottom: 0.5rem;
    cursor: pointer;
}
.links-footer ul li:hover{
    font-weight: bold;
    text-decoration: underline;
}



.copyright {
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* */
@media (max-width: 800px) {
    .footer-content {
        display: inline;
        font-size: 0.8rem;
    }

    .footer-content>div {
        padding: 1rem;
    }

    .download-options>div {
        display: inline;
    }

    .download-options>div img {
        width: 120px;
    }

    .copyright {
        font-size: 0.8rem;
    }
}