/* ==========================================================================
   Landing page (cadastro/index.blade.php) — paleta alinhada ao Soft UI Dashboard
   usado no painel (mesma identidade visual: laranja #f97316 como cor primária).
   ========================================================================== */

:root {
    --lp-primary: #f97316;
    --lp-primary-dark: #c2410c;
    --lp-primary-light: #fdba74;
    --lp-success: #22c55e;
    --lp-info: #0ea5e9;
    --lp-secondary: #71717a;
    --lp-dark: #18181b;
    --lp-body-bg: #fafafa;
    --lp-gradient: linear-gradient(135deg, #fb923c 0%, #ea580c 55%, #c2410c 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--lp-body-bg);
    color: var(--lp-dark);
    overflow-x: hidden;
}

a { text-decoration: none; }

/* ---------- Header ---------- */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.lp-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.lp-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-brand .lp-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--lp-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.lp-brand span { color: var(--lp-primary); }

.lp-header .btn-header-cta {
    background: var(--lp-gradient);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
    transition: all 0.25s ease;
}

.lp-header .btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.lp-header-login {
    color: var(--lp-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-header-login:hover {
    color: var(--lp-primary);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--lp-gradient);
    padding: 170px 0 130px;
    color: white;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero::before {
    width: 500px;
    height: 500px;
    top: -220px;
    right: -150px;
}

.hero::after {
    width: 350px;
    height: 350px;
    bottom: -180px;
    left: -100px;
    background: rgba(255, 255, 255, 0.06);
}

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

.trial-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.hero h1 .highlight {
    position: relative;
    white-space: nowrap;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.28);
    z-index: -1;
    border-radius: 6px;
}

.hero p.lead {
    font-size: 1.25rem;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 560px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-hero-primary {
    background: #fff;
    color: var(--lp-primary-dark);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22); color: var(--lp-primary-dark); }

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: #fff; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.92rem;
    opacity: 0.95;
}

.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }

/* Mockup ilustrativo do produto (sem screenshot real ainda) */
.hero-mockup {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}

.hero-mockup .mockup-bar {
    background: #f4f4f5;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #eaeaea;
}

.hero-mockup .mockup-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d4d4d8;
}

.hero-mockup .mockup-body { padding: 22px; color: var(--lp-dark); }

.mockup-card {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mockup-card .mockup-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    margin-right: 12px;
}

.mockup-row { display: flex; align-items: center; flex: 1; }

.mockup-status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.status-aberta { background: #fef3c7; color: #92400e; }
.status-andamento { background: #dbeafe; color: #1e40af; }
.status-concluida { background: #dcfce7; color: #166534; }

/* ---------- Seção genérica ---------- */
.lp-section { padding: 90px 0; }
.lp-section-alt { background: #fff; }

.lp-eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 12px;
    display: inline-block;
}

.lp-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--lp-dark);
    margin-bottom: 16px;
}

.lp-section-subtitle {
    color: var(--lp-secondary);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
}

.text-center-block { text-align: center; margin-bottom: 56px; }

/* ---------- Como funciona ---------- */
.step-card { text-align: center; padding: 0 12px; }

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lp-gradient);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}

.step-card h5 { font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--lp-secondary); font-size: 0.95rem; }

/* ---------- Features ---------- */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px 26px;
    height: 100%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(234, 88, 12, 0.12));
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h5 { font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--lp-secondary); font-size: 0.95rem; margin: 0; }

/* ---------- Pricing ---------- */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 40px;
    padding: 8px 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin: 0 auto 50px;
}

.pricing-toggle span { font-weight: 600; color: var(--lp-secondary); padding: 0 8px; font-size: 0.95rem; }
.pricing-toggle span.active { color: var(--lp-dark); }

.pricing-toggle .form-check-input {
    width: 46px;
    height: 24px;
    cursor: pointer;
}

.pricing-toggle .form-check-input:checked {
    background-color: var(--lp-primary);
    border-color: var(--lp-primary);
}

.badge-economize {
    background: var(--lp-success);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--lp-gradient);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.plan-card.popular {
    border: 2px solid var(--lp-primary);
    box-shadow: 0 20px 55px rgba(249, 115, 22, 0.18);
}

@media (min-width: 992px) {
    .plan-card.popular { transform: scale(1.05); }
    .plan-card.popular:hover { transform: scale(1.05) translateY(-8px); }
}

.plan-card.popular::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 18px;
    right: -38px;
    background: var(--lp-gradient);
    color: white;
    padding: 5px 42px;
    transform: rotate(45deg);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-name { font-size: 1.7rem; font-weight: 700; color: var(--lp-dark); margin-bottom: 8px; }
.plan-description { color: var(--lp-secondary); margin-bottom: 22px; min-height: 44px; font-size: 0.95rem; }

.plan-price { font-size: 3rem; font-weight: 800; color: var(--lp-primary); margin: 20px 0 6px; line-height: 1; }
.plan-price small { font-size: 1.1rem; color: var(--lp-secondary); font-weight: 500; }
.plan-price-annual-note { font-size: 0.85rem; color: var(--lp-secondary); margin-bottom: 20px; min-height: 20px; }

.plan-features { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.plan-features li { padding: 11px 0; color: #444; border-bottom: 1px solid #f2f2f2; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features i { color: var(--lp-success); margin-top: 3px; }

.btn-assinar {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    transition: all 0.25s ease;
}

.btn-assinar:hover { transform: translateY(-2px); }

.btn-assinar.btn-primary {
    background: var(--lp-gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}

.btn-assinar.btn-outline-primary {
    color: var(--lp-primary);
    border: 2px solid var(--lp-primary);
    background: transparent;
}

.btn-assinar.btn-outline-primary:hover { background: rgba(249, 115, 22, 0.08); }

.pricing-footnote { text-align: center; margin-top: 46px; color: var(--lp-secondary); }

/* ---------- FAQ ---------- */
.lp-accordion .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.lp-accordion .accordion-button {
    font-weight: 700;
    color: var(--lp-dark);
    background: #fff;
    padding: 20px 24px;
}

.lp-accordion .accordion-button:not(.collapsed) {
    color: var(--lp-primary-dark);
    background: rgba(249, 115, 22, 0.06);
    box-shadow: none;
}

.lp-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.lp-accordion .accordion-button::after { filter: hue-rotate(200deg); }
.lp-accordion .accordion-body { color: var(--lp-secondary); padding: 4px 24px 22px; }

/* ---------- CTA final ---------- */
.lp-cta-final {
    background: var(--lp-gradient);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 28px;
    margin: 0 16px;
}

.lp-cta-final h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.lp-cta-final p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer {
    background: var(--lp-dark);
    color: #d4d4d8;
    padding: 50px 0 30px;
    text-align: center;
}

.footer a { color: #d4d4d8; }
.footer a:hover { color: var(--lp-primary-light); }

/* ---------- Utilitários / responsividade ---------- */
@media (max-width: 991px) {
    .hero { padding: 140px 0 90px; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-ctas, .hero-trust { justify-content: center; }
    .hero-mockup { margin-top: 50px; transform: none; }
    .lp-cta-final { margin: 0; border-radius: 0; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2.3rem; }
    .lp-section-title { font-size: 1.8rem; }
    .plan-card.popular::after { right: -32px; top: 14px; }
}
