@import url('../fonts/webfonts.css');


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'poppinsregular';
}

header h1 {
    font-family: 'poppinsextrabold';
    font-size: 1.2rem;
    margin: 0;
    line-height: 36px;
}

.muted {
    color: rgba(0, 0, 0, .55);
}

.btn-primary {
    background-color:  #FFFFFF;
    border-width: 1px solid;
    border-color:  #FFFFFF;
    color: #212529;
    letter-spacing: 1px;
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #212529;
    border-color: #212529;
    color:  #FFFFFF;
}

.btn-hero {
    background-color: #FFD700;
    border-width: 1px solid;
    border-color: #FFD700;
    color:  #000000;
    letter-spacing: 1px;
    padding: 12px 30px;
}

.btn-hero:hover {
    background-color: hsl(51, 100%, 45%); 
    border-color: hsl(51, 100%, 45%); 
}


.hero-section {
    background: url('https://images.pexels.com/photos/7613432/pexels-photo-7613432.jpeg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 1
}

.hero-section h2,
.hero-section p,
.hero-section a {
    position: relative;
    z-index: 2
}


.hero-section h2 {
    font-family: 'poppinsbold';
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color:  #FFFFFF;
}

.hero-section p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 30px
}

.hero-section .container .chevron-container {
    margin-top: 20px;
    opacity: 1; /* Inicia visível */
    transition: opacity 0.5s ease;
}

.hero-section .container .chevron {
    position: relative;
    top: 250px;
    font-size: 3.5rem;
    color: #FFFFFF;
    animation: bounce 1s infinite;
}

/* Animação de subir e descer */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Posição inicial e final */
    }
    50% {
        transform: translateY(10px); /* Movimenta 10px para baixo */
    }
}


.product-title {
    font-family: 'poppinsbold';
    font-size: 1.8rem !important;
    line-height: 40px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 0.9rem !important;
    line-height: 26px;
    color: rgba(0, 0, 0, .9);
    text-align: justify;
}

.product-description ul{
    padding-left: 15px;
}

.product-description ul.data-list {
    padding-left: 0px;
}

.product-description .data-list li {
    margin: 8px 0;
}

.product-price p {
    margin: 0 !important;
}

.product-price p.before {
    text-decoration: line-through;
    color: rgba(0, 0, 0, .55);
    font-size: 1em;
    font-weight: 800;
}

.product-price p.after {
    display: flex;
    align-items: center;
    font-size: 2.5em;
    font-weight: 800;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.shared a{
    margin: 0px;
}

.informational {
    margin-bottom: 3rem;
}

.informational h3 {
    font-family: 'poppinsbold';
    font-size: 1.5rem;
    line-height: 40px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.gallery-top {
    width: 100%;
    height: auto
}

.gallery-thumbs {
    height: 120px;
    margin-top: 20px
}

.gallery-thumbs .swiper-slide {
    width: 120px;
    height: 120px;
    opacity: .7
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1
}

.swiper-slide img,
.swiper-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #e5e5e5
}


.badge-offer {
    background: #000;
    color:   #FFFFFF;
    font-size: .7rem
}

.nav-tabs .nav-link {
    color: inherit;
    
}

.nav-tabs .nav-link:hover {
    border-color:  #FFFFFF;
    border-bottom-color: #dee2e6;
    color: #0056b3;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    font-weight: bold;
    background-color: #dee2e6;
    border-top-color:  #FFFFFF;
    border-left-color:  #FFFFFF;
    border-right-color:  #FFFFFF;
    border-bottom-color: #dee2e6;
}

footer {
    background: #212529;
    color:  #FFFFFF;
    padding: 1.5rem 0;
}

footer p {
    font-size: 0.7em;
    font-weight: 300;
    margin: 0;
}


@media (max-width:768px) {
    .gallery-thumbs {
        height: 80px
    }

    .gallery-thumbs .swiper-slide {
        width: 80px;
        height: 80px
    }
}

@media (max-width:576px) {
    .gallery-thumbs {
        height: 60px
    }

    .gallery-thumbs .swiper-slide {
        width: 60px;
        height: 60px
    }
}

#backToTop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: none;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 999;
    transition: opacity .3s ease
}

#backToTop:hover {
    background-color: #0056b3
}