/* linhar-homepage.css — CRO-optimized home, mobile-first */

.linhar-home { font-family: 'Inter', system-ui, sans-serif; color: #2C2C2C; }
.linhar-home h2, .linhar-home h3 { font-family: 'Playfair Display', Georgia, serif; color: #1F3F2A; margin: 0; line-height: 1.2; }
.linhar-home h2 { font-size: clamp(26px, 4.5vw, 40px); font-weight: 700; }
.linhar-home h2 em { color: #C9A961; font-style: italic; font-weight: 600; }
.linhar-home h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.linhar-home p { line-height: 1.6; margin: 0; color: #4a4a4a; }
.linhar-home a { color: inherit; text-decoration: none; }

/* BUTTONS */
.lh-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.lh-btn--primary { background: #2D5A3D; color: #fff !important; }
.lh-btn--primary:hover { background: #1F3F2A; color: #fff !important; }
.lh-btn--ghost { background: transparent; color: #2D5A3D !important; border-color: #2D5A3D; }
.lh-btn--ghost:hover { background: #2D5A3D; color: #fff !important; }
.lh-btn--xl { padding: 22px 48px; font-size: 17px; }

/* 1 — HERO */
.lh-hero {
    background: linear-gradient(180deg, #F9F5EE 0%, #F5F1EA 100%);
    padding: 64px 16px 48px;
    overflow: hidden;
}
.lh-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}
.lh-hero__pretitle {
    display: inline-block;
    background: rgba(45, 90, 61, 0.1);
    color: #2D5A3D;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.lh-hero__title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(32px, 5.5vw, 56px) !important;
    font-weight: 700;
    line-height: 1.1 !important;
    color: #1F3F2A !important;
    margin: 0 0 20px;
}
.lh-hero__title em { color: #C9A961; font-style: italic; }
.lh-hero__lead { font-size: 18px; line-height: 1.55; color: #4a4a4a; margin: 0 0 28px; max-width: 540px; }
.lh-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.lh-hero__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6E6258;
}
.lh-stars { color: #C9A961; font-size: 18px; letter-spacing: 2px; }
.lh-hero__rating strong { color: #1F3F2A; font-weight: 700; }
.lh-hero__visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(31, 63, 42, 0.18);
}

/* 2 — TRUST STRIP */
.lh-trust {
    background: #1F3F2A;
    color: #fff;
    padding: 24px 16px;
}
.lh-trust__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lh-trust__item { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.lh-trust__item strong { font-size: 16px; color: #C9A961; }
.lh-trust__item span { font-size: 13px; color: #d8d2c5; }

/* 3 — PROBLEM × SOLUTION */
.lh-problem {
    padding: 64px 16px;
    background: #fff;
}
.lh-problem__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.lh-problem__col {
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid #e6dfd3;
}
.lh-problem__col h3 { font-size: 22px; margin-bottom: 20px; }
.lh-problem__col ul { list-style: none; padding: 0; margin: 0; }
.lh-problem__col li { padding: 8px 0; font-size: 15px; color: #4a4a4a; }
.lh-problem__col--bad { background: #faf8f5; }
.lh-problem__col--bad h3 { color: #999; }
.lh-problem__col--bad li { color: #888; }
.lh-problem__col--good { background: #f5f9f6; border-color: #2D5A3D; }
.lh-problem__col--good h3 { color: #1F3F2A; }
.lh-problem__col--good li strong { color: #2D5A3D; }

/* 4 — ANTES E DEPOIS */
.lh-ba {
    padding: 64px 16px;
    background: #F9F5EE;
    text-align: center;
}
.lh-ba__sub { color: #6E6258; margin: 12px auto 32px; max-width: 600px; }
.lh-ba__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
.lh-ba__grid figure { margin: 0; position: relative; }
.lh-ba__grid img { width: 100%; height: auto; display: block; border-radius: 12px; }
.lh-ba__grid figcaption {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(31, 63, 42, 0.9);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 6px;
}

/* 5 — 4 FEATURES */
.lh-features { padding: 64px 16px; max-width: 1200px; margin: 0 auto; text-align: center; }
.lh-features h2 { margin-bottom: 32px; }
.lh-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.lh-feature {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}
.lh-feature img { width: 100%; height: 200px; object-fit: cover; display: block; }
.lh-feature h3 { padding: 20px 20px 8px; font-size: 17px; }
.lh-feature p { padding: 0 20px 20px; font-size: 14px; }

/* 6 — CORES */
.lh-cores { padding: 64px 16px; max-width: 1200px; margin: 0 auto; text-align: center; }
.lh-cores__sub { color: #6E6258; margin: 12px auto 32px; max-width: 600px; }
.lh-cores__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.lh-cor { display: flex; flex-direction: column; gap: 8px; transition: transform 0.2s; }
.lh-cor:hover { transform: translateY(-4px); }
.lh-cor img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; }
.lh-cor__label { font-size: 13px; font-weight: 600; color: #2C2C2C; text-align: center; }

/* 7 — STEPS */
.lh-steps { padding: 64px 16px; max-width: 1100px; margin: 0 auto; text-align: center; }
.lh-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.lh-step {
    background: #F9F5EE;
    padding: 40px 24px;
    border-radius: 16px;
    position: relative;
}
.lh-step__num {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2D5A3D;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

/* 8 — BIG SOCIAL PROOF */
.lh-proof {
    padding: 64px 16px;
    background: linear-gradient(180deg, #F5F1EA 0%, #fff 100%);
}
.lh-proof__rating {
    text-align: center;
    margin-bottom: 40px;
}
.lh-proof__num { font-size: 72px; font-weight: 700; line-height: 1; color: #1F3F2A; font-family: 'Playfair Display', serif; }
.lh-proof__stars { color: #C9A961; font-size: 28px; letter-spacing: 4px; margin: 8px 0; }
.lh-proof__count { color: #6E6258; font-size: 15px; }
.lh-proof__reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.lh-rv {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: 12px;
    padding: 24px;
}
.lh-rv__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lh-rv__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.lh-rv__head strong { display: block; font-size: 14px; }
.lh-rv__verified { font-size: 11px; color: #2D5A3D; font-weight: 600; }
.lh-rv__stars { color: #C9A961; font-size: 16px; margin-bottom: 8px; letter-spacing: 1px; }
.lh-rv__text { font-size: 14px; line-height: 1.55; color: #2C2C2C; font-style: italic; }

/* 9 — FAQ */
.lh-faq { padding: 64px 16px; max-width: 800px; margin: 0 auto; }
.lh-faq h2 { text-align: center; margin-bottom: 32px; }
.lh-faq__item {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: 10px;
    margin: 0 0 12px;
}
.lh-faq__item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    color: #1F3F2A;
    font-size: 15px;
    list-style: none;
    position: relative;
    padding-right: 48px;
}
.lh-faq__item summary::-webkit-details-marker { display: none; }
.lh-faq__item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #2D5A3D; font-size: 22px; }
.lh-faq__item[open] summary::after { content: "−"; }
.lh-faq__item p { padding: 0 20px 18px; font-size: 14px; }

/* 10 — FINAL CTA */
.lh-finalcta {
    background: #1F3F2A;
    color: #fff;
    padding: 80px 16px;
    text-align: center;
}
.lh-finalcta__inner { max-width: 700px; margin: 0 auto; }
.lh-finalcta h2 { color: #fff !important; margin-bottom: 16px; }
.lh-finalcta p { color: #d8e6dc; font-size: 17px; margin: 0 0 32px; line-height: 1.6; }
.lh-finalcta p strong { color: #C9A961; }
.lh-finalcta__small { font-size: 13px !important; color: #aaa !important; margin-top: 20px !important; }

/* MOBILE */
@media (max-width: 992px) {
    .lh-hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .lh-hero__copy { order: 2; }
    .lh-hero__visual { order: 1; }
    .lh-hero__lead { margin-left: auto; margin-right: auto; }
    .lh-hero__ctas { justify-content: center; }
    .lh-hero__rating { justify-content: center; }
    .lh-features__grid { grid-template-columns: repeat(2, 1fr); }
    .lh-cores__grid { grid-template-columns: repeat(3, 1fr); }
    .lh-proof__reviews { grid-template-columns: 1fr; }
    .lh-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
    .lh-hero { padding: 40px 16px; }
    .lh-problem__inner { grid-template-columns: 1fr; }
    .lh-ba__grid { grid-template-columns: 1fr; }
    .lh-features__grid { grid-template-columns: 1fr; }
    .lh-cores__grid { grid-template-columns: repeat(2, 1fr); }
    .lh-steps__grid { grid-template-columns: 1fr; }
    .lh-btn--xl { padding: 18px 28px; font-size: 15px; }
}
