* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #262626;
    scroll-behavior: smooth;
}

body {
    background-color: rgba(0, 0, 0, .04);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

nav a:hover {
    color: #27ae60;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27ae60;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.principal {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.titulo {
    font-size: 45px;
}

.subtitulo {
    font-size: 30px;
}

.texto {
    line-height: 24px;
    text-align: left;
    font-size: 18px;
    padding: 10px;
    margin: 0 auto;
    width: 90%;
}

.caption {
    line-height: 24px;
    text-align: left;
    font-size: 18px;
    padding: 30px;
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    font-weight: bolder;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    text-align: left;
}

.author {
    font-weight: bold;
    margin-top: 5px;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding-top: 20px;
}

.container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 42px;
    color: #333;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.img-texto {
    margin: 20px auto;
}

font {
    color: #27ae60;
}

.container-bonus {
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.01);
    margin: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card-product {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.product-image {
    width: 100%;
    background-color: #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
}

.price-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}

.buy-button {
    background-color: #2eb82e;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-decoration: none;
}

.buy-button:hover {
    transform: scale(1.05);
}

.cart-icon {
    background-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.faq-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    background-color: #f8f8f8;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 16px;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    text-align: left;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.show {
    max-height: 1000px;
    padding: 15px;
}

.faq-container .buy-button {
    background-color: #ffcf00;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    transition: transform 0.2s;
}

.faq-container .buy-button:hover {
    transform: scale(1.05);
}

.cart-icon {
    background-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.img-garantia {
    margin: 20px auto;
    max-width: 300px;
}

@media (max-width: 768px) {

    .img-texto {
        max-width: 90%;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .titulo,
    .subtitulo {
        font-size: 1.5rem;
    }

    .texto {
        font-size: 1rem;
    }

    .card-product {
        width: 100%;
        margin-top: 15px;
    }

    .product-image {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .container-bonus {
        margin: 0 auto;
    }
}

.footer {
    background-color: #006600;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcf00;
}

.footer-copyright {
    font-size: 14px;
    color: #bfbfbf;
}

.footer-copyright strong {
    color: #fff;
}

.texto-branco {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        display: block;
    }

    .footer-links a {
        margin: 5px 0;
    }
}