p {
	font-size: 1.2rem;
	line-height: 2.1rem;
}

.spacer {
  padding-top: 48px;
  padding-bottom: 35px;
}

@media(min-width: 992px) {
  .spacer {
    padding-top: 65px;
    padding-bottom: 55px;
  }
}

/* ================= HERO SECTION ================= */
/* --- Estilo base: MOBILE FIRST --- */
.hero {
    background: url('images/bg_hero_5.webp') top center/cover no-repeat;	
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;       /* altura real no mobile moderno */
    padding: 260px 15px 70px 15px;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero .overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 1.9rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

/* Scroll Down Icon */
.scroll-down {
    color: #fff;
    font-size: 1.8rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Botão */
.hero .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    font-size: 1rem;
    padding: 10px 24px;
    border-radius: 30px;
    transition: 0.3s;
}

.hero .btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.hero-box {
    background: rgba(0, 0, 0, 0.6); /* preto com opacidade */
    color: #fff; /* texto branco */
    display: inline-block; /* ajusta o box ao conteúdo */
}
.hero-title {
    margin-bottom: 10px;
}
.hero-subtitle {
    margin: 0;
}

/* ================= TABLET E DESKTOP ================= */
@media (min-width: 768px) {
    .hero {
        background: url('images/bg_hero_1.webp') center center/cover no-repeat;
        text-align: left;
        padding: 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .scroll-down {
        font-size: 2rem;
    }
}




/* ================= SECTION PROBLEM ================= */
.section-problem .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.problem-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.problem-box i {
    color: #28a745;
}

.box-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.box-text {
    font-size: 1rem;
	line-height: 1.5rem;
    color: #555;
    margin-top: 8px;	
}


/* ================= SECTION SOLUTION ================= */
.section-solution .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.solution-benefits li {
    font-size: 1.1rem;
    margin-bottom: 2rem; /* Ajuste o valor conforme necessário */
    line-height: 1.6; /* melhora a leitura */
}

.solution-benefits i {
    min-width: 25px;
}

.section-solution img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-method {
    color: #1e4e7b;       /* Verde chamativo */
    font-weight: 700;     /* Negrito */
    font-size: 1.1em;     /* Um pouco maior que o texto normal */
    text-decoration: underline; /* Opcional: sublinhado */
}


/* ================= LEARNING SECTION ================= */
.learning-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e4e7b;
}

.module-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
	min-height: 220px;
}

.module-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1ba87b;
}

.module-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* ================= SECTION TARGET AUDIENCE ================= */
.section-target .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.audience-box {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 100%;
}

.audience-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* SIM */
.audience-yes {
    background-color: #d4edda; /* verde claro */
    color: #155724;
    border: 2px solid #c3e6cb;
}

/* NÃO */
.audience-no {
    background-color: #f8d7da; /* vermelho claro */
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.audience-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.audience-box ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}


/* ================= SECTION MENTOR ================= */
.section-mentor .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.section-mentor img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ================= SECTION TESTIMONIALS ================= */
.section-testimonials .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.section-testimonials .section-description {
    font-size: 1.1rem;
    color: #555;
}

.testimonial-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-item img:hover {
    transform: scale(1.05);
}

.testimonial-item img {
  width: 100%;
  height: 390px; /* pode ajustar conforme seu layout */
  object-fit: contain;
  background: #fff; /* fundo branco para preencher espaços */
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* opcional, só para dar destaque */
}


/* ================= SECTION FAQ ================= */
#faq .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

#faq .accordion-button {
  font-weight: 600;
  color: #333;
}

#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* ================= SECTION OFFER ================= */
.offer-section {
    background: linear-gradient(135deg, #1e4e7b, #1ba87b);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.offer-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.offer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.offer-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.offer-old-price {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.offer-price span {
    color: #ffe600;
}

.offer-cash {
    font-size: 1.1rem;
	line-height: 1rem;
    color: #fff;
}

.offer-btn {
    display: inline-block;
    background: #ffe600;
    color: #1e4e7b;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.offer-btn:hover {
    background: #ffd000;
    color: #103354;
}

/* ================= BONUS BOXES ================= */
.bonus-box {
    background: transparent;           /* fundo transparente */
    border: 2px solid rgba(255,255,255,0.6); /* borda clara */
    border-radius: 12px;              /* cantos arredondados */
    padding: 25px;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s;
    color: #fff;                      /* texto sempre branco */
}

.bonus-box h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffe600;                   /* título destacado */
}

.bonus-box ul {
    padding-left: 18px;
    margin: 0;
}

.bonus-box li {
    margin-bottom: 8px;
}

.bonus-box:hover {
    transform: translateY(-5px);
    border-color: #ffe600;           /* destaca no hover */
}



/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(135deg, #1e4e7b, #1ba87b);
    color: #fff;
}

.footer h3.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer p, 
.footer ul li a {
    color: #fff;
    font-size: 0.95rem;
	line-height: 1.7rem;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer .btn-close {
    background: transparent;
    border: none;
}

/* Footer */
.social-icons a {
    text-decoration: none; /* remove o sublinhado */
    color: inherit;        /* mantém a cor do texto, no caso branco */
    transition: color 0.3s; /* efeito suave ao passar o mouse */
}

.social-icons a:hover {
    color: #ff6b6b; /* cor de destaque ao passar o mouse, opcional */
}

/* Black Friday */
.discount-bar {
	background: black;
	color: yellow;
	font-weight: 700;
	padding: 12px 0;
	font-size: 20px;
	animation: pulse 1.5s infinite;
	letter-spacing: 1px;
}

@keyframes pulse {
	0% { filter: brightness(1); }
	50% { filter: brightness(2); }
	100% { filter: brightness(1); }
}