body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    overflow-x: hidden; /* Previne deslocamento lateral */
}

/* Header Section */
..header {
    text-align: center;
    width: 100%; /* Garante que o cabeçalho ocupe apenas a largura da tela */
    max-width: 100%; /* Previne estouro horizontal */
    padding: 50px 20px;
    background-color: #FFFFFF;
    margin: 0 auto; /* Centraliza o conteúdo */
    box-sizing: border-box; /* Inclui o padding no cálculo da largura */
}

.header h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    word-wrap: break-word; /* Quebra palavras muito longas */
    overflow-wrap: break-word; /* Garante quebra automática em navegadores modernos */
}

.header p {
    font-size: 1.2em;
    color: #5D5D5D;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-button-header {
    background-color: #F57C00;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Garante que o botão se comporte corretamente */
    max-width: 100%; /* Previne estouro do botão */
}

.cta-button-header:hover {
    background-color: #FFA726;
}


/* Introduction Section */
.intro-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #FFFFFF;
}

.intro-section h2 {
    margin-bottom: 30px; /* Espaçamento abaixo do texto */
    text-align: center;
    color: #333; /* Cinza escuro */
    font-size: 1.5em;
    line-height: 1.6; /* Espaçamento entre linhas */
}


.cta-button-intro {
    background-color: #F57C00;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button-intro:hover {
    background-color: #FFA726;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(to bottom, #FFFFFF, #F9F9F9);
    padding: 50px 20px;
    text-align: center;
}

.problem-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.problem-list p {
    font-size: 1.2em;
    color: #5D5D5D;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.problem-list p::before {
    content: "•";
    color: #F57C00;
    font-size: 1.5em;
    margin-right: 10px;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(to bottom, #FFFFFF, #E8F5E9);
    padding: 50px 20px;
    text-align: center;
}

.solution-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

.solution-section p {
    font-size: 1.2em;
    color: #5D5D5D;
    margin: 10px 0;
    line-height: 1.6;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background-color: #81C784;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
}
/* Content Section */
.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background-color: #FFFFFF;
}

.content-section .image-section img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

.content-section .benefits-section {
    text-align: left;
    padding-left: 20px;
}

.benefits-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.benefits-section ul {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    color: #5D5D5D;
}

.benefits-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits-section li span {
    color: #F57C00;
    font-size: 1.5em;
    margin-right: 10px;
}

/* Product Section */
.product-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background-color: #FFFFFF;
}

.image-container img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

.benefits-container {
    text-align: left;
    padding-left: 20px;
}

.benefits-container h2 {
    font-size: 2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    color: #5D5D5D;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits-list li span {
    color: #F57C00;
    font-size: 1.5em;
    margin-right: 10px;
}

.cta-button-benefits {
    background-color: #F57C00;
    color: #FFFFFF;
    padding: 20px 40px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.cta-button-benefits:hover {
    background-color: #FFA726;
    transform: scale(1.1);
}

/* Solution Section */
.solution-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #FFFFFF, #E8F5E9);
    text-align: center;
}

.solution-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

.solution-section p {
    font-size: 1.2em;
    color: #5D5D5D;
    margin: 10px 0;
    line-height: 1.6;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background-color: #81C784;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
}
/* Testimonials Section */
.testimonials-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #F9F9F9;
}

.testimonials-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

.testimonial {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.content {
    text-align: left;
    flex-grow: 1;
}

.stars {
    color: #F57C00;
    margin-bottom: 5px;
}

.content h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000000;
}

.content p {
    font-size: 1em;
    color: #5D5D5D;
    line-height: 1.5;
}

/* CTA Button Wrapper */
.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    .solution-section, .testimonials-section {
        padding: 30px 10px;
    }

    .solution-section h2, .testimonials-section h2 {
        font-size: 1.8em;
    }

    .solution-section p, .content p {
        font-size: 1em;
    }

    .solution-icon {
        width: 40px;
        height: 40px;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .photo {
        margin: 0 auto 10px;
    }

    .content {
        text-align: center;
    }

    /* Ajuste no bônus */
    .bonus-container {
        flex-direction: column;
        gap: 30px;
    }

    .bonus-item img {
        width: 100%;
        max-width: 300px;
    }
}

/* Bonus Section */
.bonus-section {
    text-align: center;
    padding: 30px 20px 50px;
    background: linear-gradient(to bottom, #333, #444);
    color: #fff;
}

.bonus-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #FF4500;
    margin-bottom: 20px;
}

.bonus-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.bonus-item {
    text-align: center;
    max-width: 220px;
}

.bonus-item img {
    width: 220px;
    height: auto;
    margin-bottom: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.bonus-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #FF4500;
    margin: 5px 0;
}

.bonus-price-old {
    font-size: 1em;
    color: #CCC;
    text-decoration: line-through;
}

.bonus-price-new {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    margin: 5px 0;
}

.cta-wrapper {
    text-align: center;
    margin: 40px 0;
}
/* Garantia */
.guarantee-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #E8F5E9;
}

.guarantee-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #388E3C;
    margin-bottom: 20px;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 1.2em;
    color: #5D5D5D;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

/* Responsividade */
@media (max-width: 768px) {
    .guarantee-section h2 {
        font-size: 1.8em;
    }

    .guarantee-content img {
        width: 80px;
    }

    .guarantee-content p {
        font-size: 1.1em;
    }
}

/* FAQ Section */
.faq-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #FFFFFF;
}

.faq-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-button {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #F5F5F5;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    color: #000000;
}

.faq-toggle {
    font-size: 1.5em;
    color: #F57C00;
}

.faq-answer {
    display: none;
    margin: 0 auto;
    width: 80%;
    padding: 15px;
    background-color: #FAFAFA;
    border-left: 4px solid #F57C00;
    border-radius: 5px;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 30px;
    background-color: #F5F5F5;
    color: #5D5D5D;
    font-size: 0.9em;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-link {
    color: #F57C00;
    text-decoration: none;
    margin-right: 20px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-text {
    margin-top: 10px;
}

/* CTA Button Adjustments */
.cta-button-intro {
    background-color: #F57C00;
    color: #FFFFFF;
    padding: 20px 40px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button-intro:hover {
    background-color: #FFA726;
    transform: scale(1.1);
}

/* Header Section Adjustments */
.header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #FFA726, #FB8C00);
    color: #FFFFFF;
}

.subtitle {
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
    color: #ff6600;
    font-weight: bold;
}

/* Image Adjustments */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* Ajuste para imagens específicas */
.bonus-item img {
    width: 80%; /* Ajusta o tamanho conforme necessário */
    max-width: 250px; /* Define um limite de largura */
    margin: 0 auto;
}

/* Imagens de depoimentos */
.testimonial .photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0; /* Remove qualquer margem extra */
}

/* Garantir que as imagens não ultrapassem o tamanho da tela */
img {
    max-width: 100%;
    height: auto;
}

/* Ajustar a largura das imagens nas seções específicas */
.content-section .image-section img {
    max-width: 100%;
    height: auto;
}

.bonus-item img {
    max-width: 100%;
    height: auto;
}

.testimonial .photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Adicionando o estilo para imagens responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsividade para imagens */
img {
    max-width: 100%; /* Garante que as imagens não ultrapassem o tamanho da tela */
    height: auto; /* Mantém a proporção das imagens */
    display: block; /* Remove espaços indesejados em torno da imagem */
    margin: 0 auto; /* Centraliza as imagens, caso necessário */
}

/* Imagens específicas para garantir que não fiquem grandes no celular */
img.specific {
    width: 100%; /* Faz com que a imagem ocupe toda a largura possível */
    max-width: 300px; /* Limita o tamanho máximo da imagem */
    margin: 10px auto; /* Adiciona uma margem para garantir que não fiquem coladas nas bordas */
}

.cta-button, button {
    max-width: 100%; /* O botão não ultrapassa a largura da tela */
    width: auto; /* Ajusta a largura ao conteúdo */
    margin: 20px auto; /* Centraliza o botão na tela */
    display: block; /* Garante que ele se comporte como um bloco */
    padding: 10px 20px; /* Ajusta o tamanho interno */
}

.cta-button-guarantee {
    background-color: #F57C00;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: block;
    margin: 20px auto;
    width: 90%; /* Limita a largura para caber na tela */
    max-width: 400px; /* Largura máxima para evitar botões muito largos */
}

.cta-button-guarantee:hover {
    background-color: #FFA726;
    transform: scale(1.05); /* Um leve efeito de escala ao passar o mouse */
}

//* Correção para arrasto lateral no celular */
body {
    overflow-x: hidden;
}

/* Ajuste do botão "Sim, quero meu cabelo liso naturalmente" apenas no celular */
@media (max-width: 768px) {
    .cta-button-guarantee {
        width: 90%; /* Para centralizar e ajustar ao celular */
        margin: 20px auto;
        display: block;
        text-align: center;
    }
}

/* Ajustes globais para prevenir estouro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Inclui bordas e padding no cálculo da largura */
}

html, body {
    width: 100%; /* Evita estouro horizontal */
    max-width: 100%; /* Garante que nada extrapole */
    overflow-x: hidden; /* Remove a rolagem lateral */
}

/* Ajuste específico para a imagem da .product-section */
@media (max-width: 768px) {
    .product-section {
        display: flex; /* Define layout flexível */
        flex-direction: column; /* Empilha os elementos verticalmente */
        align-items: center; /* Centraliza os itens no centro */
        justify-content: center; /* Centraliza verticalmente */
        padding: 0 10px; /* Espaçamento interno para bordas */
        width: 100%; /* Garante largura total */
    }

    .product-section .image-container {
        display: flex; /* Centraliza a imagem no container */
        justify-content: center;
        align-items: center;
        width: 100%; /* Faz o container ocupar toda a largura */
        overflow: hidden; /* Previne estouro */
        padding: 0 10px; /* Adiciona espaçamento nas laterais */
    }

    .product-section .image-container img {
        width: 100%; /* Faz a imagem ocupar toda a largura do container */
        max-width: 400px; /* Limita o tamanho máximo da imagem */
        height: auto; /* Mantém a proporção da imagem */
        display: block; /* Remove espaços extras */
        margin: 0 auto; /* Centraliza a imagem */
    }
}
.highlight {
    color: #ff6600; /* Cor laranja */
    font-weight: bold; /* Negrito */
}

.price-highlight {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #333; /* Cinza escuro */
}

.price {
    color: #ff6600; /* Destaque laranja */
}

.offer-highlight {
    text-align: center;
    font-size: 1.3em;
    margin-top: 30px;
    color: #333;
}

.offer-highlight {
    text-align: center;
    font-size: 1.3em;
    margin-top: 30px;
    color: #333; /* Cinza escuro */
}

.price {
    color: #ff6600; /* Destaque laranja */
    font-weight: bold;
}
.offer-highlight {
    text-align: center;
    font-size: 1.3em;
    margin-top: 30px;
    color: #333; /* Cinza escuro */
}

.price {
    color: #ff6600; /* Destaque laranja */
    font-weight: bold;
}
