/* Reset e configuraÃ§Ãµes globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* EstilizaÃ§Ã£o do corpo */
body {
    background-color: #fff;
    text-align: center;
}

/* CabeÃ§alho principal */
.header {
    background-color: #e65100;
    color: white;
    padding: 1.25rem;
    font-size: 2rem;
    font-weight: bold;
}

/* Sub-cabeÃ§alho */
.sub-header {
    background-color: #0c3c69;
    color: white;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Container principal */
.container {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(to right, #81b8e6, #0c3c69);
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Bloco de texto */
.text-content {
    flex: 1;
    max-width: 31.25rem;
    padding: 1.25rem;
    text-align: center;
}

/* TÃ­tulo */
.text-content h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

/* Lista de benefÃ­cios */
.text-content ul {
    list-style: none;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: left;
    margin: 0 auto;
    max-width: 25rem;
}

/* Itens da lista */
.text-content ul li {
    margin: 0.3125rem 0;
}

/* Imagem */
.image-content {
    flex: 1;
    text-align: center;
    max-width: 31.25rem;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.625rem;
}

/* SeÃ§Ã£o do produto */
.produto-section {
    text-align: center;
    background-color: #E3F4FF;
}

/* TÃ­tulo da seÃ§Ã£o */
.titulo {
    background-color: #014F86;
    color: white;
    padding: 1.25rem;
    font-size: 2rem;
    font-weight: bold;
    font-family: "League Spartan",Sans-serif;
    text-align: center;
}


/* SubtÃ­tulo da seÃ§Ã£o */
.subtitulo {
    padding: 1.25rem;
    font-size: 2rem;
    font-weight: bold;
    color: #014F86;
    font-family: Arial, Helvetica, sans-serif;
}

/* Layout do conteÃºdo */
.conteudo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Colunas de conteÃºdo */
.coluna {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

/* Etiquetas */
.etiqueta {
    display: flex;
    align-items: center;

    background-color: #014F86;
    color: white;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0.625rem 1.25rem;
    border-radius: 1.25rem;
    text-align: left; /* Garante que o texto nÃ£o fique centralizado em relaÃ§Ã£o Ã  largura total */
    width: 15.625rem;
    height: 4rem;
}

.etiqueta i {
    flex-shrink: 0; /* Garante que o Ã­cone nÃ£o diminua */
}

.etiqueta span {
    flex-grow: 1; /* Permite que o texto ocupe o espaÃ§o restante */
    text-align: center; /* Centraliza o texto dentro do espaÃ§o disponÃ­vel */
}


/* Imagem do produto */
.imagem img {
    width: 30rem;
    height: auto;
}

/* BotÃ£o de aÃ§Ã£o */
.cta-button {
    display: inline-block;
    background-color: #7ACC29;
    color: white;
    font-size: 1.125rem;
    padding: 0.75rem 1.5625rem;
    margin-top: 1.25rem;
    text-decoration: none;
    border-radius: 0.3125rem;
    transition: 0.3s;
    margin-bottom: 1rem;
}

.cta-button:hover {
    background-color: #659d24;
}

/* SeÃ§Ã£o de vÃ­deo */
#video-section {
    background-color: white;
    padding: 2.5rem 1.25rem;
    text-align: center;
}

/* Container do vÃ­deo */
.video-container {
    max-width: 50rem;
    margin: 0 auto;
}

/* TÃ­tulo do vÃ­deo */
.video-container h2 {
    color: #0c3c69;
    padding: 3rem;
    font-size: 2rem;
}

/* Responsividade do vÃ­deo */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-wrapper-depoimentos {
    position: relative;
    width: 25rem;
    height: 20rem;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Camada de overlay para interatividade */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    cursor: pointer;
}

.beneficios-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.beneficios-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.beneficio {
    max-width: 300px;
    text-align: center;
}

.beneficio img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.beneficio h3 {
    color: #014f86;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.beneficio p {
    font-size: 1em;
    color: #444;
}

#produto-ansiedade {
    margin-top: 0.5rem;
    background-color: #f9f9f9;
    text-align: center;
}

/* TÃ­tulo da seÃ§Ã£o */
.titulo-sec4 {
    background-color: #014F86;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: "League Spartan",Sans-serif;
    text-align: center;
}


/* SubtÃ­tulo da seÃ§Ã£o */
.subtitulo-sec4 {
    background-color: #014F86;
    color: white;
    font-size: 1.625rem;
    font-family: Arial, Helvetica, sans-serif;
}

.conteudo-sec4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.texto-sec4 {
    width: 50%;
    text-align: left;
}

.texto-sec4 p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 2rem;
    margin-left: 5rem;
}


.imagem-sec4 {
    width: 45%;
    display: flex;
    text-align: right;
}

.imagem-sec4 img {
    max-width: 100%;
    height: auto;
    
}

/*BenefÃ­cios*/

.section-header {
    background-color: #E6541A; /* Laranja */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 2.5rem;
    font-weight: bold;
}

.benefits-section {
    background: linear-gradient(to bottom, #004a80, #2D8CD8); /* DegradÃª azul */
    color: white;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit {
    width: 250px;
    max-width: 100%;
}

.benefit img {
    width: 200px; /* Largura do hexÃ¡gono */
    height: 230px; /* Altura do hexÃ¡gono */
    display: block;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.benefit h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit p {
    line-height: 1.4;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #004a80; /* Azul escuro */
    margin: 40px 0 20px;
}

.videos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 25rem;
    height: 20rem;
}

.titulo-videos {
    font-size: 24px;
    font-weight: bold;
    color: #004a80;
    margin: 40px 0 20px;
}

.container-videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.box-video {
    position: relative;
    width: 320px;
    height: 180px;
}

.video-player {
    width: 100%;
    height: 100%;
}


/*RecomendaÃ§Ã£o*/
.recomendacao-section {
    text-align: center;
    background: linear-gradient(to bottom, #003f78, #6d97d3);
    color: white;
}

.titulo-recomendacao {
    background-color: #e65300;
    color: white;
    padding: 15px;
    font-size: 2rem;
    margin: 0 auto 30px;
    display: inline-block;
    width: 100%;
}

.recomendacao-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.recomendacao-item {
    width: 25rem;
    text-align: center;
}

.recomendacao-item img{
    width: 200px;
    height: 230px;
    display: block;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.recomendacao-texto {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: bold;
}

/*ComposiÃ§Ã£o*/
.composicao-section {
    text-align: center;
    background-color: #fff;
    margin: auto;
    color: white;
    width: 100%;
}

.titulo-composicao {
    background-color: #e65300;
    color: white;
    padding: 15px;
    font-size: 2.5rem;
    display: inline-block;
    width: 100%;
}

.composicao-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px; /* Ajuste para garantir a disposiÃ§Ã£o correta */
    margin: auto;
}

.composicao-item {
    width: calc(33.33% - 20px); /* Divide igualmente em trÃªs colunas */
    max-width: 280px; /* Evita que os itens fiquem muito largos */
    text-align: center;
    background-color: white;
    padding: 0.5rem;
    color: black;
}

@media (max-width: 768px) {
    .composicao-item {
        width: calc(50% - 20px); /* Em telas menores, duas colunas */
    }
}

@media (max-width: 480px) {
    .composicao-item {
        width: 100%; /* Em telas muito pequenas, uma coluna */
    }
}


.composicao-imagem {
    width: 200px; /* Largura do hexÃ¡gono */
    height: 230px; /* Altura do hexÃ¡gono */
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 8px;
}

.composicao-nome {
    color: #5f5f5f;
    font-weight: bold;
    margin-bottom: 8px;
}

.composicao-texto {
    text-align: center;
    color: #5f5f5f;
    line-height: 1.4;
}


/* Camada invisÃ­vel sobre o vÃ­deo */
.capa-transparente {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Totalmente invisÃ­vel */
    cursor: pointer;
}


/*Ansiedade Section */
.ansiedade-section {
    background: linear-gradient(to bottom, #004480, #0c4f8f);
    padding: 1rem;
    color: white;
    text-align: center;
}

.ansiedade-title {
    font-size: 2.1875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.ansiedade-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.ansiedade-content {
    max-width: 50%;
    text-align: left;
}

.ansiedade-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
}

.ansiedade-list li {
    margin-bottom: 12px;
}

.ansiedade-image {
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.ansiedade-image img {
    max-width: 100%;
    height: auto;
}

/*Garantia*/
.garantia {
    background-color: #DFF0FF;
    border-radius: 30px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 1rem;
}

.garantia-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
    padding: 20px;
}

.garantia-imagem {
    position: relative;
}

.garantia-imagem img {
    max-width: 100%;
    height: auto;
}

.garantia-texto {
    max-width: 500px;
    text-align: left;
}

.garantia-texto h2 {
    color: #004a80;
    font-size: 28px;
    font-weight: bold;
}

.garantia-texto h3 {
    color: #004a80;
    font-size: 20px;
    margin-bottom: 10px;
}

.garantia-texto p {
    color: #004a80;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.garantia-texto strong {
    font-weight: bold;
}

/*Ofertas*/
.ofertas {
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.ofertas h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.ofertas h3 {
    font-size: 1.625rem;
    color: #003366;
    margin-bottom: 20px;
}

.ofertas-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.oferta {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.oferta img {
    width: 100%;    
}

.oferta:hover {
    transform: scale(1.05);
}

.destaque {
    animation: pulsar 1.5s infinite;
}

@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/*Pirataria*/
.aviso {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
    margin-bottom: 7rem;
}

.logos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo img {
    width: 100%;
    height: auto;
}

.risco {
    position: absolute;
    height: 3px;
    border-radius: 2px;
    line-height: 1;
}

.aviso p {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 auto;
}

/*Faq*/
#faq h2 {
    font-family: "League Spartan",Sans-serif;
    background-color: #e65300;
    color: white;
    padding: 15px;
    font-size: 2.5rem;
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    text-transform: uppercase;
    
}

.faq-container {
    max-width: 85%;
    margin: auto;
    margin-bottom: 1rem;
    border-color: #444;
}

.faq-item {
    border-bottom: 1px solid #fff;
}

.faq-question {
    background-color: #014f86;
    color: #fff;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-color: #d5d8dc;
    flex-direction: row;
    gap: 0 10px;
    text-align: left;
}

.faq-icon {
    margin-right: 10px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    background-color: white;
    padding: 1.4rem;
    font-size: 16px;
    color: #7a7a7a;
    border-color: #d5d8dc;
    border-style: solid;
    border-width: 1px;
    text-align: initial;
    align-self: auto;
    flex-grow: 1;
    flex-wrap: initial;
    justify-content: initial;
    
}

/*Livro*/
.book-presentation {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Garante que o topo dos elementos fique alinhado */
    padding: 40px;
    background-color: #fff;
    margin-bottom: -2.5rem !important;
}

.book-container {
    display: flex;
    gap: 20px;
    max-width: 900px;
    align-items: flex-start; /* Alinha os itens ao topo */
}

.book-container img {
    width: 20rem;
    border-radius: 8px;
}

.book-details {
    flex: 1; /* Faz com que o texto ocupe o espaÃ§o restante */
    text-align: left; /* Alinha o texto Ã  esquerda */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Garante que o texto comece do topo */
}

.book-details h2 {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.book-title {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

/*ReferÃªncias*/
.scientific-references {
    margin: 40px auto;
    max-width: 900px;
}

.scientific-references h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.references-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.references-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.references-logos img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.references-text {
    flex: 1;
    text-align: left;
    font-size: 16px;
    color: #7a7a7a;
}

.references-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

/*Footer*/
.footer {
    background-color: #344046;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    
}

.footer-top p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-family: monospace,monospace;
    font-size: 1rem;
    
    /*white-space: pre-wrap; */
}

.payment-security {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    height: 15rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.payment-icons img {
    margin: 5px;
    width: 100%;
}


.security-icons img {
    margin: 5px;
    width: 15rem;
}

.contact-info {
    text-align: left;
}

.contact-info span {
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
    text-align: left;
}

.footer-middle {
    background-color: #fff;
    color: #333;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    color: #d6336c;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}

.cnpj {
    font-size: 14px;
}

.footer-bottom {
    background-color: black;
    padding: 15px;
}

.footer-bottom p {
    font-size: 12px;
    color: #ccc;
    margin: 5px 0;
}

.disclaimer {
    font-size: 10px;
    line-height: 1.4;
}

/*Pop up*/
.popup-compra {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #e6f2ff;
    border: 2px solid #4d94ff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(20px);
    max-width: 300px;
}

.popup-img {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

.popup-texto {
    display: flex;
    flex-direction: column;
}

.popup-nome {
    font-size: 16px;
    color: #003366;
    font-weight: bold;
    display: block;
}

.popup-produto {
    font-size: 15px;
    font-weight: bold;
    color: #0066cc;
}

.popup-visivel {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (max-width: 767px) {
    .popup-compra {
        left: 5px !important;
        transform: translateX(20px) translateY(20px) !important;
    }

    
}

@media (max-width: 768px) {
    .ansiedade-container {
        flex-direction: column;
        text-align: center;
    }

    .ansiedade-content, .ansiedade-image {
        max-width: 100%;
    }

    .ansiedade-content {
        text-align: center;
    }

    .ansiedade-image {
        justify-content: center;
        margin-top: 20px;
    }
}



@media (max-width: 768px) {
    .container-videos {
        flex-direction: column;
        align-items: center;
    }

    .box-video {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .videos-container {
        flex-direction: column;
        align-items: center;
    }

    .video {
        width: 90%;
        height: auto;
    }
}

/* Responsividade geral */
@media (max-width: 48rem) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text-content ul {
        text-align: left;
    }
}

/* Responsividade para tablets e celulares */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .text-content, .image-content {
        max-width: 100%;
    }
    .text-content h2 {
        font-size: 1.5rem;
    }
    .text-content ul {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .video-wrapper iframe {
        width: 100%;
        height: auto;
    }
    .conteudo {
        flex-direction: column;
        align-items: center;
    }
    .coluna, .imagem {
        width: 100%;
        text-align: center;
    }
    .imagem img {
        max-width: 80%;
    }

    .texto-sec4 p {
        padding: 1rem;
        margin: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        font-size: 1.5rem;
        padding: 1rem;
    }
    .sub-header {
        font-size: 1rem;
        padding: 0.8rem;
    }
    .container {
        padding: 1rem;
    }
    .text-content h2 {
        font-size: 1.2rem;
    }
    .text-content ul {
        font-size: 0.9rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    .video-wrapper iframe {
        height: 200px;
    }
    .conteudo-sec4 {
        flex-direction: column;
    }
    .imagem-sec4 {
        width: 100%;
    }

    .imagem-sec4 img {
        max-width: 100%;
    }
    .texto-sec4 p {
        margin-left: auto;
    }

    .texto-sec4 {
        padding: 1rem;
        margin: auto;
        width: 100%;
    }
    .book-container {
        display: block;
        line-height: 2rem;
        gap: 20px;
        max-width: 900px;
        align-items: flex-start; /* Alinha os itens ao topo */
    }
    .references-text {
        margin: auto;
        margin-right: 1rem;
    }

    .footer-top {
        height: 40rem;
    }
    .garantia-container {
        display: block;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        margin: 0 auto;
        gap: 30px;
        padding: 20px;
        line-height: 4.5rem;
    }

    .ansiedade-content {
        text-align: left;
        padding: 1rem;
    }
    .ansiedade-title {
        font-size: 1.4375rem;
    }
    .espaco {
        height: 5rem;
    }
    .titulo-composicao, 
    .titulo-recomendacao,
    .section-header,
    .titulo-sec4 {
        font-size: 1.5625rem;
    }
    .recomendacao-item:last-of-type {
        margin-bottom: 3rem;
    }
    .video {
        width: 20rem;
        height: 20rem;
    }
    #video {
        font-size: 1.1875rem;
        padding: 0;
        margin-bottom: 0.2rem;
    }
    .section-title {
        font-size: 1.375rem;
    }
    .subtitulo-sec4 {
        font-size: 1.125rem;
    }
    .titulo-sec4,
    .subtitulo-sec4 {
        padding: 0.3rem;
    }
    .sub-header {
        font-size: 1.5rem;
        font-weight: bold;
    }
    .header {
        font-size: 1.6875rem;
    }
    #selos {
        text-align: center;
        width: 90%;
    }
    .faq-question {
        text-align: left;
    }
    #faq h2 {
        font-size: 1.5625rem !important;
        text-transform: uppercase;
        padding: 1rem;
    }
    .video-wrapper-depoimentos {
        position: relative;
        width: 20rem;
        height: 20rem;
        overflow: hidden;
        max-width: 100%;
        background: #000;
    }
}