
/* ── Hero Section ───────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-section__overlay {
    position: absolute;
    inset: 0;
}
.hero-section__inner {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-section__content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}
.hero-section__badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    padding: .3rem .9rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    align-self: center;
    backdrop-filter: blur(4px);
}
.hero-section__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-section__title span { color: #86efac; }
.hero-section__sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
    margin: 0;
    line-height: 1.6;
}
.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.hero-section__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 1.0625rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    line-height: 1;
}
@media (max-width: 768px) {
    .hero-section { min-height: 480px; }
    .hero-section__content { max-width: 100%; text-align: center; }
    .hero-section__badge { align-self: center; }
    .hero-section__actions { justify-content: center; }
}

/* ── E-book Banner ──────────────────────────────────── */
.ebook-banner {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ebook-banner__proof {
    display: inline-block;
    background: #fff7ed;
    color: #c2410c;
    font-weight: 700;
    font-size: .85rem;
    padding: .3rem .875rem;
    border-radius: 999px;
    align-self: flex-start;
}
.ebook-banner__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.ebook-banner__img {
    width: 440px;
    min-width: 440px;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.2));
}
.ebook-banner__body {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    min-width: 0;
}
.ebook-banner__headline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin: 0;
}
.ebook-banner__headline span { color: #16a34a; }
.ebook-banner__sub {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}
.ebook-banner__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .95rem;
    color: #374151;
    font-weight: 500;
}
.ebook-banner__testimonial {
    margin: 0;
    padding: .875rem 1rem;
    border-left: 3px solid #22c55e;
    background: #f0fdf4;
    border-radius: 0 .5rem .5rem 0;
    font-style: italic;
    color: #374151;
    font-size: .9rem;
}
.ebook-banner__testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: #16a34a;
    margin-top: .375rem;
    font-size: .8rem;
}
.ebook-banner__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f97316;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1875rem;
    padding: 1.25rem 1.75rem;
    border-radius: .625rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    transition: transform .15s, box-shadow .15s;
    text-decoration: none !important;
}
.ebook-banner__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(249,115,22,.55);
    color: #fff !important;
}
@media (max-width: 700px) {
    .ebook-banner__inner { flex-direction: column; text-align: center; }
    .ebook-banner__img { width: 220px; min-width: 0; }
    .ebook-banner__headline { font-size: 1.25rem; }
}

/* ── Tip Block ───────────────────────────────────── */
.tip-block {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}
.tip-block__icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}
.tip-block strong {
    display: block;
    color: #92400e;
    font-size: .9rem;
    margin-bottom: .25rem;
}
.tip-block p {
    margin: 0;
    color: #78350f;
    font-size: .95rem;
    line-height: 1.5;
}

/* ── Mini CTA ────────────────────────────────────── */
.mini-cta {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: .625rem;
    padding: .875rem 1.25rem;
    margin: 1.25rem 0;
    font-size: .95rem;
    color: #374151;
}
.mini-cta a {
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
}
.mini-cta a:hover { text-decoration: underline; }

/* ── Micro CTA pre-banner ───────────────────────── */
.micro-cta-pre {
    text-align: center;
    font-size: 1rem;
    color: #374151;
    font-weight: 600;
    margin: 0 0 .5rem;
}

/* ── Prose / content ────────────────────────────── */
.pseo-content.prose {
    line-height: 1.7;
}
.pseo-content.prose p {
    max-width: 72ch;
}


.plant-specs-strip {
    background: var(--color-green-50);
    border: 1px solid var(--color-green-100);
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}
.plant-specs-strip .plant-specs {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
}


.plant-specs--inline {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.spec-tag {
    background: var(--color-green-50);
    border: 1px solid var(--color-green-200, #bbf7d0);
    border-radius: 999px;
    padding: .25rem .75rem;
    font-size: .875rem;
    font-weight: 500;
}

/* Difficulty badges */
.difficulty--facil   { color: var(--color-green-700); }
.difficulty--medio   { color: #d97706; }
.difficulty--dificil { color: #dc2626; }

/* Prose content (from OpenAI) */
.prose { line-height: 1.8; font-size: 1rem; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--color-text); }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 .5rem; }
.prose p  { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }

.related-links { margin-top: 2rem; padding: 1.5rem; background: var(--color-bg-alt); border-radius: var(--radius); }
.related-links h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.link-more { font-weight: 600; color: var(--color-green-600); }

/* Pagination */
.pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.pagination a, .pagination span {
    padding: .4rem .8rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin: 0 .15rem;
    font-size: .9rem;
    color: var(--color-text);
}
.pagination a:hover { background: var(--color-green-50); text-decoration: none; }
.pagination .active { background: var(--color-green-600); color: #fff; border-color: var(--color-green-600); }

/* === Footer =============================================== */
.site-footer {
    background: var(--color-green-800);
    color: rgba(255,255,255,.85);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand .logo { color: #fff; margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-links h4,
.footer-cta h4 { color: #fff; margin-bottom: .75rem; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-cta p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.footer-cta .btn-primary {
    background: var(--color-green-500);
    color: #fff;
    width: 100%;
    text-align: center;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1rem;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}

/* === Responsive =========================================== */
@media (max-width: 768px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .site-nav { display: none; }
    .plant-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero { padding: 3rem 0 2rem; }
    .hero__actions { flex-direction: column; }
    .btn-xl { width: 100%; display: block; }
    .plant-specs { grid-template-columns: 1fr; }
    .cta-box { padding: 1.25rem; }
}

/* =========================================================
   Novos componentes — Landing Page (versão conversão)
   ========================================================= */

/* === Hero bullets ========================================= */
.hero__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.75rem;
}
.hero__bullets li {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-green-800);
}

/* === Botão CTA (laranja — alto contraste) ================= */
.btn-cta {
    background: #f97316;
    color: #fff;
    border: 2px solid transparent;
}
.btn-cta:hover {
    background: #ea580c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,.4);
}
.cta-section .btn-cta {
    background: #f97316;
    color: #fff;
}
.cta-section .btn-cta:hover { background: #ea580c; }

/* === Seção Bônus ========================================== */
.bonus-section {
    background: #fff;
    padding: 5rem 0;
}
.bonus-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: .5rem;
}
.bonus-section__subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.bonus-section__box {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: .75rem;
    padding: 2rem 2.5rem;
    margin-bottom: 0;
}
.bonus-section__box-label {
    font-weight: 700;
    color: #166534;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.bonus-section__item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #fff;
    border: 1px solid #bbf7d0;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    height: 100%;
}
.bonus-section__item-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}
.bonus-section__item strong {
    display: block;
    color: #111827;
    font-size: 1rem;
    margin-bottom: .25rem;
}
.bonus-section__item p {
    color: #6b7280;
    font-size: .9rem;
    margin: 0;
    line-height: 1.5;
}

/* === Proof Strip ========================================== */
.proof-strip__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.proof-strip__icon { font-size: 3rem; flex-shrink: 0; }
.proof-strip__inner h2 { font-size: 1.5rem; margin-bottom: .4rem; }
.proof-strip__inner p  { color: var(--color-muted); }

/* === Pain Section ========================================= */
.pain__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.pain__text h2 { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1.3; }
.pain__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.pain__close { font-size: 1.05rem; }
.pain__fix {
    background: var(--color-green-50);
    border: 1px solid var(--color-green-100);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.pain__fix-icon { font-size: 2.5rem; }
.pain__fix p { color: var(--color-muted); font-size: 1.05rem; }

/* === Product Contents ===================================== */
.product-contents__inner { max-width: 700px; margin: 0 auto; }
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.bonuses {
    background: var(--color-green-50);
    border: 1px solid var(--color-green-100);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.bonuses h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.bonuses ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: .95rem;
}

/* === Testimonials ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
.testimonial-card__text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
}
.testimonial-card__author { display: flex; flex-direction: column; gap: .15rem; }
.testimonial-card__name { font-weight: 700; font-size: .95rem; color: var(--color-green-800); }
.testimonial-card__location { font-size: .85rem; color: var(--color-muted); }

/* === Transformation (Antes/Depois) ======================== */
.transformation__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}
.transformation__card {
    border-radius: var(--radius);
    padding: 1.75rem;
}
.transformation__card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.transformation__card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    font-size: .95rem;
}
.transformation__card--before {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #7f1d1d;
}
.transformation__card--after {
    background: var(--color-green-50);
    border: 1px solid var(--color-green-100);
    color: var(--color-green-800);
}
.transformation__arrow {
    font-size: 2.5rem;
    color: var(--color-muted);
    text-align: center;
    font-weight: 300;
}

/* === Urgency Tag ========================================== */
.urgency-tag {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius);
    padding: .65rem 1.1rem;
    font-size: .9rem;
    font-weight: 600;
    color: #92400e;
    margin: 1.25rem 0 1.75rem;
    display: inline-block;
}

/* === Guarantee Block ====================================== */
.guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee__icon { font-size: 2rem; flex-shrink: 0; }
.guarantee strong { display: block; font-size: 1rem; color: #fff; margin-bottom: .2rem; }
.guarantee span   { font-size: .9rem; color: rgba(255,255,255,.8); }

/* === FAQ ================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.faq-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.faq-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.faq-card p  { color: var(--color-muted); font-size: .95rem; }

/* === Responsive (novos componentes) ======================= */
@media (max-width: 768px) {
    .pain__inner           { grid-template-columns: 1fr; }
    .transformation__grid  { grid-template-columns: 1fr; }
    .transformation__arrow { display: none; }
    .proof-strip__inner    { flex-direction: column; text-align: center; }
    .proof-strip__icon     { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .pain__fix         { padding: 1.25rem; }
    .product-contents__inner { padding: 0; }
    .guarantee         { flex-direction: column; text-align: center; }
}
