/* Estilos gerais */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #fff;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3 {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.logo {
    position: absolute;
    top: -1%;
}

.logo img {
    width: 280px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

/* Botão CTA */
.cta-btn {
    background-color: #ff4d4d;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #e60000;
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    background-image: url(../img/portrait-youg-afro-american-sports-man-doing-pushup-exercise.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    transition: background-image 0.3s ease;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}


.hero .cta-btn {
    background-color: #ff3333;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
}

/* Slider Section */
.slider {
    padding: 50px 0;
    background-color: #16181f;
    color: white;
    text-align: center;
}

.slider-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.slide {
    width: 90%;
    margin: 0 13px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;

}

.slide img,
.slide video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Estilos para o Carrossel de Vídeos */
.video-carousel {
    padding-top: 10%;
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    overflow: hidden;
}

.video-slide {
    display: none;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Torna o vídeo quadrado */
    transition: opacity 0.5s ease-in-out;
}

.video-slide.active {
    display: block;
    opacity: 1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo preencha o espaço */
    border-radius: 10px;
    /* Bordas arredondadas */
}

.video-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.video-slide.active {
    display: block;
    opacity: 1;
}

/* Ícone do WhatsApp Flutuante */
/* Ícone do WhatsApp Flutuante */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Altera para flutuar à direita */
    width: 60px;
    height: 60px;
    z-index: 1000;
    animation: bounce 1s infinite alternate;
}

#whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Estilos para o Slider de Promoção */
/* Importando a fonte desejada */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Estilos para o Slider de Promoção */
.promo-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.promo-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    /* Alterando a fonte para Montserrat */
}

.promo-content h1,
.promo-content p {
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Adicionando sombra ao texto */
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e03e00;
}

.promo-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
}

.promo-content h1,
.promo-content p {
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e03e00;
}

/* Produtos */
.backcatalogo {
    background-image: url(../img/dark-chocolate-truffles-close-up.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
    transition: background-image 0.3s ease;
}

.topico {
    text-align: center;
    /* background-color: #ff385c; */
    color: white;
    padding: 20px;
    font-size: 30px;
}

.catalogo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.produto {
    background: #444;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    max-width: 250px;
    position: relative;
}

.produto:hover {
    transform: scale(1.05);
}

.produto img {
    width: 100%;
    border-radius: 10px;
}

.produto h2 {
    position: absolute;
    top: 65%;
    left: 30%;
    font-size: 18px;
    margin: 10px 0;
    color: #ffffff;
}

.produto p {
    padding-top: 30px;
    font-size: 14px;
    color: #ffffff;

}

.produto a {
    background-color: #ff385c;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s;
}

.produto button:hover {
    background-color: #cc5500;
}

/* Depoimentos */
/* Seção de Depoimentos */
/* Estilos para a seção de depoimentos */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 0, 0, 0.8));
    color: #fefefe;
}

.topico {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fefefe;
}

.carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #393939;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
}

.testimonial video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.testimonial p {
    margin-top: 15px;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
}

.testimonial p:last-child {
    font-weight: bold;
    color: #f7f7f7;
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel {
        flex-direction: column;
        align-items: center;
    }
}

/* Navbar */
.navbar ul {
    display: flex;
    justify-content: center;
    background-color: #111;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    transition: background-color 0.3s ease;
}

.navbar ul li {
    margin: 0 25px;
}

.navbar ul li a {
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #ff3333;
}

/* Rodapé */
footer {
    background-color: #16181f;
    color: white;
    text-align: center;
    padding: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff3333;
}

#promoPopup {
    display: none;
    /* Oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Estilizando o conteúdo do popup */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    position: relative;
}

/* Imagem da promoção */
.popup-content img {
    width: 100%;
    border-radius: 10px;
}

/* Botão de fechar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* Estilo do botão de fechar ao passar o mouse */
.close-btn:hover {
    background: darkred;
}

/* Ajustes de Responsividade */
@media (max-width: 768px) {
    .logo {
        display: none;
    }

    .hero {
        background-image: url('../img/fitnesswoman-doing-deadlift-using-barbell-gym.jpg');
        /* Substitua pela URL da imagem para dispositivos móveis */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .testimonials {
        padding: 50px 20px;
    }

    .testimonial {
        width: 100%;
        margin: 20px 0;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
        margin-bottom: 20px;
    }

    .product-card #mudar {
        width: 170px;

    }

    .slider-container {
        flex-direction: column;
    }

    .promo-banner {
        margin-left: 0;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .product-card {
        width: 100%;
    }

    .navbar ul li {
        margin: 0 15px;
    }

    .navbar {
        display: none;
    }

    .testimonial {
        width: 90%;
    }
}