﻿h1, h2, h3, h4, h5 {
    font-weight: 300;
    color: #364d59;
    font-family: Montserrat, sans-serif;
}

.img-wrap-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.img-wrap-1 {
    max-width: 100%;
    text-align: center;
}

.img-wrap-2 img {
    border-radius: 50%; /* Deixa a imagem circular */
    width: 450px; /* Ajuste para garantir um formato perfeito */
    height: 450px; /* O mesmo valor da largura */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    display: block;
    margin: 0 auto; /* Centraliza */
}

.benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.card {
    background: #FFF9EB;
    padding: 30px;
    width: 230px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: relative;
}

    .card h3 {
        font-size: 18px;
        font-weight: bold;
    }

.checkmark {
    position: absolute;
    bottom: -5px;
    right: -15px;
    width: 80px;
}

.aspas {
    position: absolute;
    bottom: -45px;
    right: -15px;
    width: 80px;
}

@media (max-width: 1024px) {
    .benefits {
        justify-content: center;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
    }
}

.testimonials {
    padding: 50px 20px;
}

    .testimonials h1 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 40px;
    }

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

    .testimonial img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .testimonial .name {
        background: black;
        color: white;
        font-weight: bold;
        padding: 5px;
        display: inline-block;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .testimonial p {
        font-size: 14px;
        color: #333;
    }

.quote {
    font-size: 50px;
    color: black;
    position: absolute;
    bottom: -15px;
    right: 20px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    position: relative; /* Garante que os elementos internos fiquem dentro */
    background: linear-gradient(to bottom, #F99D1C, #FDBB13);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 300px;
    flex: 1;
}

    .product-card img {
        width: 200px;
        height: auto;
    }

.promo {
    background: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 20px;
    display: inline-block;
}

.price {
    background: #FFDE00;
    padding: 10px;
    font-size: 40px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
}

.frete-gratis {
    position: absolute;
    top: 100px; /* Posição dentro do card */
    left: 180px;
    width: 150px;
    height: 150px;
    background-color: #FF0000; /* Cor da estrela */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    line-height: 14px;
}

@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    background: linear-gradient(90deg, #F99D1C, #FDBB13);
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
}

    .btn:hover {
        opacity: 0.8;
    }

.hero {
    background-image: url('/images/hero_bg_1.jpg');
    background-size: cover; /* Garante que a imagem cubra todo o espaço */
    background-position: center; /* Mantém o foco na parte central da imagem */
    background-repeat: no-repeat; /* Evita repetições */
    height: 100vh; /* Define altura total da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Imagem para telas menores (ex: até 768px de largura) */
@media (max-width: 768px) {
    .hero {
        background-image: url('/images/accupuncture_1v.png');
    }
}

/* Imagem para telas ainda menores (ex: até 480px de largura) */
@media (max-width: 480px) {
    .hero {
        background-image: url('/images/hero_bg_small.png');
    }
}

.footer {
    background-color: #221F1F;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 100px;
    margin: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

    .social-icons img {
        width: 40px;
        height: 40px;
    }

.containervideo {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Permite que os vídeos quebrem linha em telas menores */
}

.video {
    width: 30%; /* Cada vídeo ocupa 30% do container */
    max-width: 320px; /* Limita a largura máxima */
}

video {
    width: 100%;
    border-radius: 10px;
}

/* Responsivo: Em telas menores, os vídeos ficam um abaixo do outro */
@media (max-width: 900px) {
    .container {
        flex-wrap: wrap;
    }

    .video {
        width: 45%; /* Ocupa metade da tela em tablets */
    }
}

@media (max-width: 600px) {
    .video {
        width: 100%; /* Vídeos em tela cheia no mobile */
    }
}

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
}

.faq-question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}

.icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}
