/*=======================================
============LISTAS-INTRO=================
========================================*/
/* TOP BAR */

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

}
.btn-voltar {
    text-decoration: underline;
    color: #404040;
    font-weight: 500;
	font-size: 12px;
}

.top-bar-logo {
    min-height: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.top-bar-logo img {
    height: 20px;
    width: auto;
    display: block;
}


.hero-lista {
    background-color: #f7f3ee;
    color: #404040;
    padding: 10px 10px;
}

/* CONTAINER */
.hero-lista-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* COLUNAS */
.hero-lista-left,
.hero-lista-right {
    width: 50%;
	padding: 16px;
}

/* TEXTO */
.hero-lista-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
}

/* CTA */
.cta-text {
    margin-bottom: 20px;
    font-size: 14px;
}

/* FORM */
.form-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-lista input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-lista button {
    background-color: #9e0f55;
    color: #fff;
    border: none;
    padding: 14px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 40px;
	width: 240px;
	margin: 0 auto;
}

.form-lista button:hover {
    opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 768px) {
	.top-bar-container {
		margin-bottom:-34px;
		padding: 5px;
		
	}
    .hero-lista-container {
        flex-direction: column;
		padding: 2px 5px 5px;
    }

    .hero-lista-left,
    .hero-lista-right {
        width: 100%;
        padding: 0;
    }

    .hero-lista-left h1 {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

	.intro-text {
		text-align: center;
		margin-bottom: -80px;
		font-size: 16px;
	}
    .cta-text {
        text-align: center;
		margin-bottom: -10px;
    }

    .form-lista {
        align-items: center;
    }

    .form-lista input {
        width: 100%;
        max-width: 300px;
    }

    .form-lista button {
        width: 100%;
        max-width: 240px;
    }
}

/* SECTION */
.para-quem {
    background: #ffffff;
    padding: 60px 20px;
}

/* CONTAINER MENOR */
.container-small {
    max-width: 800px;
    margin: 0 auto;
}

/* TÍTULO */
.para-quem-titulo {
    text-align: center;
    color: #404040;
    margin-bottom: 40px;
    font-size: 28px;
}

/* ACCORDION ITEM */
.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

/* HEADER */
.accordion-header {
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

/* CONTENT (FECHADO POR PADRÃO) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* CONTENT ABERTO */
.accordion-item.active .accordion-content {
    max-height: 500px; /* ajuste se necessário */
    margin-top: 10px;
}

/* ÍCONE */
.accordion-icon {
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}

/* LINHAS */
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #404040;
}

/* HORIZONTAL */
.accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* VERTICAL */
.accordion-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* QUANDO ABERTO (gira) */
.accordion-item.active .accordion-icon {
    transform: translateY(-50%) rotate(45deg);
}

/*=======================
======LISTA NUMERADA=====
========================*/
.lista-numerada {
    padding: 60px 20px;
    text-align: center;
	background-color: #b2c248;
}

/* TÍTULO */
.lista-numerada-titulo {
    color: #404040;
    margin-bottom: 20px;
    font-size: 28px;
}

/* CONTAINER DOS ITENS */
.lista-numerada-itens {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ITEM */
.lista-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    justify-content: center;
}

/* NÚMERO */
.lista-item .numero {
    font-weight: bold;
    color: #9e0f55;
}

/* TEXTO */
.lista-item .texto {
    color: #404040;
}

/*==============================
======PERGUNTAS E RESPOSTAS=====
===============================*/
.perguntas-respostas {
    background: #9e0f55;
    padding: 60px 20px;
    text-align: center;
}

/* TÍTULO */
.pr-titulo {
    color: #f7f3ee;
    margin-bottom: 50px;
    font-size: 28px;
}

/* GRID */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ITEM */
.pr-item {
    color: #fff;
}

/* LINHA */
.pr-item .linha {
    width: 100%;
    height: 1.5px;
    background: #fff;
    margin-bottom: 15px;
}

/* TÍTULO */
.pr-item h3 {
    color: #fff;
    margin-bottom: 10px;
	font-size: 16px;
}

/* TEXTO */
.pr-item p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
	text-align: justify;
}

/* BOTÃO */
.pr-cta {
    margin-top: 50px;
}

.btn-pr {
    display: inline-block;
    background: #f7f3ee;
    color: #588221;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .pr-grid {
        grid-template-columns: 1fr;
    }
}

/*==============================
======SEÇÃO CHECK=====
===============================*/

.section-check {
    padding: 60px 20px;
    text-align: center;
}

/* TÍTULO */
.check-titulo {
    color: #404040;
    margin-bottom: 10px;
    font-size: 28px;
}

/* SUBTÍTULO */
.check-subtitulo {
    color: #404040;
    margin-bottom: 40px;
    font-size: 18px;
}

/* GRID */
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.check-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    text-align: left;
}

/* ÍCONE */
.check-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: #a5cb74;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* TEXTO */
.check-texto {
    color: #404040;
    padding-left: 50px;
}

/* BOTÃO */
.pr-cta-check {
    margin-top: 50px;
}

.btn-pr-check {
    display: inline-block;
    background: #588221;
    color: #f7f3ee;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}


/* RESPONSIVO */
@media (max-width: 768px) {
    .check-grid {
        grid-template-columns: 1fr;
    }
}

/*==============================
===========SEÇÃO BÔNUS==========
===============================*/

.section-bonus {
    background: #fff;
    padding: 60px 10px;
    text-align: center;
}

.bonus-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* TÍTULO */
.bonus-titulo {
    color: #404040;
    margin-bottom: 10px;
    font-size: 28px;
}

/* SUBTÍTULO */
.bonus-subtitulo {
    color: #404040;
    margin-bottom: 40px;
    font-size: 18px;
}

/* GRID */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.bonus-card {
    border: 10px solid #a5cb74;
    border-radius: 20px;
    padding: 20px;
    background: transparent;
    color: #404040;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/*==============================
===========SEÇÃO FAQ==========
===============================*/
.section-faq {
    padding: 60px 20px;
    text-align: center;
	background: #b2c248;
}

/* TÍTULO */
.faq-titulo {
    color: #404040;
    margin-bottom: 10px;
    font-size: 28px;
}

/* SUBTÍTULO */
.faq-subtitulo {
    color: #404040;
    margin-bottom: 40px;
    font-size: 18px;
}

/* CTA */
.faq-cta {
    margin-top: 40px;
}

.btn-faq {
    display: inline-block;
    background: #9e0f55;
    color: #fff;
    padding: 14px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/*=======================================
============PRODUTOS-INTRO=================
========================================*/
.hero-produto {
    padding: 20px 20px;
}

.hero-produto-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* COLUNAS */
.hero-produto-left {
	display: flex;
    justify-content: center;
    align-items: center;
}
.hero-produto-right {
    width: 50%;
}

/* IMAGEM */
.hero-produto-left img {
    max-width: 500px;
    width: 100%;
    height: auto;

}

	
	
	
/* TEXTO */
.hero-produto-right h1 {
    color: #404040;
    margin-bottom: 60px;
}

.produto-texto {
    color: #404040;
    margin-bottom: 20px;
}

/* BOTÃO */
.btn-produto {
    display: inline-block;
    background: #9e0f55;
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
	margin: 40px 5px 40px 5px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-produto-container {
        flex-direction: column;
    }

    .hero-produto-left,
    .hero-produto-right {
        width: 100%;
		padding: 30px;
    }

    .hero-produto-right {
        text-align: center;
    }
	.hero-produto-left img {
		margin-bottom: -90px;
	}
}



.btn-download {
    display: inline-block;
    background: #9e0f55;
    color: #fff;
    padding: 14px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}