/* ============================================
   SIPOP — technical-review.css
   Estilos exclusivos da Landing Page.
   Importado APÓS style.css, portanto herda
   todas as variáveis e componentes base.
   ============================================ */

/* ============================================
   1. BODY / LAYOUT
   ============================================ */

.lp-body {
    /* Landing page não tem header fixo ocupando espaço */
}

/* ============================================
   2. HEADER MINIMALISTA
   ============================================ */

.lp-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(8px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lp-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.lp-logo:hover { opacity: 1; }

/* ============================================
   3. HERO
   ============================================ */

.lp-hero {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
}

.lp-hero__tag {
    display: inline-block;
    background: var(--pearl-aqua);
    color: var(--slate-black, #0F172A);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.lp-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.lp-hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.lp-hero__cta {
    font-size: 16px;
    padding: 16px 40px;
}

/* ============================================
   4. WHAT'S AT STAKE
   ============================================ */

.lp-stakes {
    padding: 70px 0;
    background-color: var(--bg-secondary);
}

.lp-stakes__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.lp-stakes__item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--card-border);
}

.lp-stakes__item--bad {
    border-top: 3px solid #e53e3e;
}

.lp-stakes__item--good {
    border-top: 3px solid var(--pearl-aqua);
}

.lp-stakes__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.lp-stakes__item--bad  .lp-stakes__label { color: #e53e3e; }
.lp-stakes__item--good .lp-stakes__label { color: var(--pine-blue); }

.lp-stakes__item ul {
    list-style: none;
    padding: 0;
}

.lp-stakes__item ul li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.lp-stakes__item--bad  ul li::before { content: '✗'; position: absolute; left: 0; color: #e53e3e; font-weight: bold; }
.lp-stakes__item--good ul li::before { content: '✓'; position: absolute; left: 0; color: var(--pearl-aqua); font-weight: bold; }

.lp-stakes__divider {
    font-size: 28px;
    color: var(--pine-blue);
    font-weight: 700;
    text-align: center;
}

/* ============================================
   5. WHAT WE REVIEW
   ============================================ */

.lp-what {
    padding: 80px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.lp-what h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.lp-what__intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.lp-what__intro strong {
    color: var(--pine-blue);
}

.lp-what__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.lp-what__card {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 28px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-what__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(44, 122, 123, 0.1);
}

.lp-what__icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.lp-what__card h3 {
    font-size: 17px;
    color: var(--pine-blue);
    margin-bottom: 8px;
}

.lp-what__card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   6. TESTIMONIALS
   ============================================ */

.lp-testimonials {
    padding: 80px 0;
    background-color: var(--bg-services);
}

.lp-testimonials h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

/* ============================================
   7. FORM SECTION
   ============================================ */

.lp-form-section {
    padding: 90px 0;
    background-color: var(--bg-bottom);
}

.lp-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lp-form-copy h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.lp-form-copy > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.lp-form-copy__checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.lp-form-copy__checklist li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lp-form-copy__checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pearl-aqua);
    font-weight: bold;
}

.lp-form-copy__email {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.lp-form-copy__email a {
    color: var(--pine-blue);
    text-decoration: none;
    font-weight: 500;
}

.lp-form-copy__email a:hover {
    text-decoration: underline;
}

.lp-form-card {
    position: sticky;
    top: 80px;
}

/* ============================================
   8. RESPONSIVE
   ============================================ */

@media (max-width: 768px) {

    .lp-hero { padding: 60px 0 50px; }
    .lp-hero__title { font-size: 30px; }
    .lp-hero__subtitle { font-size: 16px; }

    .lp-stakes__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-stakes__divider {
        transform: rotate(90deg);
        font-size: 22px;
    }

    .lp-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-form-card { position: static; }

    .lp-testimonials__grid {
        grid-template-columns: 1fr;
    }
}
