:root {
    --main-color: #EE2C2C;
    --bg: #fff;
    --border: 0.1rem solid rgba(0,0,0,0.1);
    font-size: 20px;
}

/* ================================= */
/* RESET */
/* ================================= */

*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
    box-sizing: border-box;
    list-style: none;
    font-family: "Roboto", sans-serif;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body{
    overflow-x: hidden;
    width: 100%;
    background: #fff;
    color: #000;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================= */
/* HEADER */
/* ================================= */

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: var(--border);
    z-index: 999;
}

.header section{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 40px;
}

/* LOGO */

.logo{
    position: absolute;
    left: 30px;
}

.logo img{
    height: 60px;
}

/* ================================= */
/* NAVBAR */
/* ================================= */

.navbar{
    display: flex;
    align-items: center;
}

.navbar a{
    margin: 0 1rem;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.navbar a:hover{
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
}

/* ================================= */
/* MENU MOBILE */
/* ================================= */

.menu-mobile{
    display: none;
    font-size: 2rem;
    color: #EE2C2C;
    cursor: pointer;
}

/* ================================= */
/* SLIDER */
/* ================================= */

.list{
    width: 100%;
    max-width: 1250px;

    margin: 90px auto 0;

    position: relative;

    overflow: hidden;

    min-height: 620px;
}
.item{
    display: none;

    align-items: center;
    justify-content: center;

    gap: 60px;

    width: 100%;

    padding: 40px 80px 100px;

     min-height: 620px;
}

.item.active{
    display: flex;
}

.product-img{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img{
    width: 100%;
    max-width: 600px;
    max-height: 600px;

    object-fit: contain;
}

.content{
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-tag{
    font-size: 2rem;
    color: #000080;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-name{
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #EE2C2C;
    margin-bottom: 20px;
    line-height: 1.1;
}

.description{
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0,0,0,0.7);
    margin-bottom: 25px;
}

/* BOTÃO */

.btn{
    padding: 14px 28px;
    border-radius: 40px;
    background: linear-gradient(90deg, blue, red);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.btn:hover{
    transform: scale(1.05);
}

/* SETAS */

.arrows{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.arrow-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #191970;
}

.arrow-btn:hover{
    transform: scale(1.05);
}


/* ================================= */
/* SOBRE */
/* ================================= */

.title{
    text-align: center;
    margin-bottom: 30px;
    color: red;
    font-size: 2rem;
}

.about{
    padding: 80px 10% 100px;
}

.about .row{
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg,#191970,#0f0f52);
    padding: 50px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about .container-image{
    width: 50%;
    display: flex;
    gap: 10px;
}

.image-box{
    position: relative;
    width: 50%;
    overflow: hidden;
    border-radius: 15px;
}

.image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-box img:hover{
    transform: scale(1.05);
}

.image-box span{
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.about .content{
    width: 50%;
    color: white;
}

.about .content h3{
    font-size: 3rem;
    margin-bottom: 25px;
}

.about .content p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* CARDS */

.about-cards{
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card{
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 15px;
    min-width: 140px;
    border: 1px solid rgba(255,255,255,0.1);
}

.card h4{
    color: #EE2C2C;
    margin-bottom: 8px;
}

.card span{
    color: white;
}

/* ENDEREÇO */

.address{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.address iframe{
    width: 75%;
    height: 250px;
    border-radius: 10px;
}

/* FOOTER */

.footer{
    background: #14148c;
    padding: 25px 20px;
}

.footer .share{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer .share a img{
    width: 45px;
    height: 45px;
}

.footer .share a img:hover{
    transform: scale(1.1);
}

/* WHATSAPP */

.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp img{
    width: 65px;
}