/* font-family: "Space Grotesk", serif; */
/* font-family: "Inter", serif; */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

header{
    padding: 1rem 0rem 3rem 0rem;

}

.header-section-top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-family: "Space Grotesk", serif;
    padding-bottom: 1rem;
}

.header-section-top-nav img	{
    max-width: 200px;
    object-fit: cover;
}

.header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    gap: 3rem;
    font-family: "Space Grotesk", serif;
}
   
.header-section-top-nav {
    position: relative;
}
.header-nav a{
    color: #6C7275;
    text-decoration: none;
    font-weight: 500;
}
.header-nav a::hover{
    color: #141718;
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}


.hamburger-menu span {
    width: 100%;
    height: 0.25rem;
    background-color: #283c54;
    border-radius: 5px;
    transition: all 0.3slinear;
}
/* -------------- */

.product-card{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 4rem;
    justify-content: space-between;
}

.product-card-image{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    object-fit: cover;
    background-color: #F5F5F5;
    padding: 1rem;
    border-radius: .5rem;
}

.product-card-image img{
    object-fit: cover;
    width: 80%;
    align-self: center;
}

.badge-novidade{
    background-color: #fff;
    color: #141718;
    font-size: 1rem;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0.5rem;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.product-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info-content{
    font-family: 'Poppins', sans-serif;
}

.product-info-content h1{
    font-size: 2.5rem;
    max-width: 85%;
    font-weight: 500;
    color: #141718;
    line-height: 3rem;
    margin-bottom: 2rem;
}

.product-info-content .description{
    font-size: 1.1rem;
    font-weight: 400;
    color: #787b7d;
    font-family: 'Inter', sans-serif;
}

.product-info-content .price{
    text-align: left;
    width: 100%;
    margin-top: .5rem;
}

.product-info-content .price s{
    width: 100%;
    color: #6C7275;
    text-align: center;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.product-info-content .price  b{
    font-size: 1.5rem;
    color: #141718;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    margin-right: 1rem;
    font-family: 'Poppins', sans-serif;

}

.badge-sigla{
    background-color: #F6A800;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0.5rem;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.product-info-requisits h2{
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #343839;
    margin-bottom: .5rem;
}

.product-info-requisits ul{
    padding-left: 1rem;
}

.requisits{
    font-size: 1rem;
    padding-left: 2rem !important;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: #343839;
}
.subtitles{
    margin-bottom: 1rem;
}
.subtitles span{
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: #343839;
    font-weight: 600;
}

.product-info hr{
    margin: .8rem  0px;
}

.sublist{
    margin: .3rem 0px;
}
form {
 display: flex;
 flex-direction: column;
 gap: .5rem;
}

form select{
    outline: none;
    border-radius: .5rem;
    border: 2px solid #E8ECEF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: .6rem;
}

form button, form input[type=submit] {
    width: 100%;
    border: none;
    background-color: #141718;
    font-family: 'Inter', sans-serif;
    color: #fff;
    padding: 1rem;
    border-radius: .5rem;
    text-align: center;
    font-size: 1rem;
}

.product-video-section{
    margin: 1rem 0px;
}

.product-video-section .box img	{
    width: 100%;
    object-fit: cover;
}

.product-video-section .box{
    width: 100%;
    position: relative;
}

.product-details-section .box{
    border: 2px solid #E8ECEF;
    font-family: 'Inter', sans-serif;
    color: #494949;
    border-radius: 1rem;
    padding: .6rem;
}

.product-details-section h2{
    font-weight: 600;
    font-size: 1rem;
    padding: .6rem;
}

.product-details-section .box ol{
    padding-left: 1.5rem;
    font-size: .8rem;
}
.product-details-section .box ol li{
    margin-bottom: .3rem;
}

.product-installments {
    margin: 2rem 0;
}

.product-installments h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: left; 
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.product-installments-box {
    display: flex;
    flex-direction: column; 
}

.product-installments-box div {
    background-color: #e7edf3; 
    padding: 1rem; 
    font-size: .8rem; 
    color: #333;
    font-family: 'Inter', sans-serif;
}

.product-installments-box div:nth-child(even) {
    background-color: #f3f8fc;
}

.relationated-product-section, .relationated-product-all {
    font-family: 'Inter', sans-serif;
    padding: 4rem 0px;
}

.relationated-product-header h2, .relationated-product-all-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #141718;
    margin-bottom: 1rem;
}

.relationated-product-header a, .relationated-product-all-header a {
    color: #141718;
    text-decoration: none;
}

.relationated-product-header a:hover, .relationated-product-all-header a:hover {
    text-decoration: underline;
}

.relationated-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.relationated-product-box {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.relationated-product-item-organizer {
    background-color: #F3F5F7;
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    border-radius: 8px;
}

.relationated-product-item-organizer img {
    max-width: 70%;
    align-self: center;
    margin-bottom: 1rem;
}

.relationated-product-title {
    font-size: .85rem;
    color: #141718;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.relationated-product-price {
    text-align: center;
    width: 100%;
}

.relationated-product-price s {
    width: 100%;
    color: #6C7275;
    text-align: center;
}

.relationated-product-price b {
    color: #141718;
    text-align: center;
    font-weight: 600;
}

.relationated-product-item:hover .relationated-product-button {
    opacity: 1;
    cursor: pointer;
}

.relationated-product-button{
    width: 100%;
    border: none;
    background-color: #141718;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s;
}
  

/* -------------- */
  footer{
    padding-top: 2rem;
  }
  .banner-footer{
    background-image: url(../assets/back-footer.png);
    background-position: center;
    /*height: 400px;*/
    width: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-footer img{
    max-width: 60%;
    object-fit: cover;
  }

  .container-footer{
    background-color: #1C3A52; 
    width: 100%;
    padding: 6rem 0px;
  }
    .container-footer-box{
        display: flex;
        flex-direction: column;
        gap: 5rem;
        justify-content: space-between;
    }
  .container-footer-box h3{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  .container-footer-box .logo-divisor{
    height: 20px;
    width: 1px;
    background-color: #6C7275;
  }
  .container-footer-box .logo-bold{
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.5rem;
  }

  .container-footer-box .logo-light{
    color: white;
    font-weight: 200;
    font-size: .9rem;
    vertical-align: baseline;
    height: 100%;
  }

  .container-footer-box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .container-footer-box-top nav{
    display: flex;
    gap: 2rem;
  }
  .container-footer-box-top nav a{
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
  }

.copyright{
    display: flex;
    color: white;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: .8rem;
    border-top: 1px solid #6C7275;
    padding-top: 1rem;
}

.banner-footer-img {
    max-width: 100%;
    width: 48%;
    height: auto;
}

@media (max-width: 768px) {
    .banner-footer-img {
        width: 100%;
    }

    .banner-footer {
        height: 200px;
    }
}

@media(max-width:1200px){
    .container{
        padding: 0 1rem;
    }
    .container-footer-box{
        display: flex;
        flex-direction: column;
        gap: 5rem;
        justify-content: space-between;
    }
    .container-footer-box-top{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .container-footer-box-top nav{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .copyright{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

@media(max-width:900px){

    .header-perfil-icon{
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background-color: white;
        padding: 1rem;
        gap: 1rem;
        width: 200px;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        display: flex;
        z-index: 2;
    }

    .header-nav a {
        width: 100%;
        text-align: left;
    }
}

@media(max-width:680px){
    .header-section-video-vitrine h1{
        font-size: 2rem;
    }
    .header-section-video-vitrine p{
        font-size: 1.5rem;
    }
    .header-section-video-vitrine{
        padding: 1rem 0px;
    }
    .header-section-video-box img{
        height: 200px;
    }
    .header-section-video-vitrine{
        top: 15%;
    }
    .header-section-video-vitrine h1{
        font-size: 1.5rem;
    }
    .header-section-bottom-nav{
      display: flex;
      flex-direction: column;
        gap: 1rem;
    }
}

@media(max-width:480px){
    .product-card{
        grid-template-columns: 1fr;
    }
}