/* Landing Agenda Pro Max — estilo inspirado em páginas SaaS institucionais (ex.: Colunarius) */
:root {
    --brand: #1d4ed8;
    --brand-dark: #1e3a8a;
    --brand-light: #3b82f6;
    --accent: #f59e0b;
    --surface: #ffffff;
    --muted: #64748b;
    --text: #0f172a;
    --border: #e2e8f0;
    --soft: #f8fafc;
    --success: #059669;
    --radius: 14px;
    --shadow: 0 18px 45px -15px rgba(15, 23, 42, 0.18);
    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.landing-body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--soft);
    line-height: 1.6;
}

.landing-body a {
    color: var(--brand);
    text-decoration: none;
}
.landing-body a:hover {
    text-decoration: underline;
}

.landing-topbar {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 55%, var(--brand-light) 100%);
    color: #fff;
    padding: 0.65rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.landing-topbar-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.landing-brand:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
}
.landing-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem 1rem;
    flex-wrap: wrap;
}

.landing-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
}
.landing-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: #fff;
}
.landing-nav a.is-active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Botão "Acessar" no topo: .landing-nav a aplicava texto branco sobre fundo branco */
.landing-nav a.btn-landing.btn-landing-primary {
    color: var(--brand-dark);
    background: #fff;
    text-decoration: none;
}
.landing-nav a.btn-landing.btn-landing-primary:hover {
    color: var(--brand-dark);
    background: #f1f5f9;
    text-decoration: none;
}

.btn-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
}
.btn-landing:hover {
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-landing-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
}
.btn-landing-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.btn-landing-primary {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.btn-landing-primary:hover {
    color: var(--brand-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-landing-cta {
    background: linear-gradient(135deg, var(--accent), #ea580c);
    color: #fff;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
}
.btn-landing-cta:hover {
    color: #fff;
}

.landing-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

.hero-landing {
    text-align: center;
    padding: 2.5rem 0 2rem;
}

.badge-promo {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-landing h1 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.hero-landing .lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0 2.5rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

.price-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.price-card.featured {
    border-color: #3b82f6;
    box-shadow:
        0 0 0 2px rgba(59, 130, 246, 0.35),
        0 20px 45px -12px rgba(29, 78, 216, 0.35);
    z-index: 1;
}

.price-card .tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand);
    margin-bottom: 0.35rem;
}

.price-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 800;
}

.ref-price {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.ref-price .strike {
    text-decoration: line-through;
    font-weight: 600;
    color: #64748b;
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
}

.price-sub {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.35rem;
}

.price-total {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 0.5rem;
    font-weight: 600;
}

.economy {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 700;
    margin-top: 0.65rem;
}

.price-card .btn-block {
    margin-top: auto;
    padding-top: 1.25rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.price-card .btn-landing {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.price-card .btn-landing-cta {
    color: #fff;
}
.price-card .btn-landing-cta:hover {
    color: #fff;
}

.section-landing {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.section-landing h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.check-list li {
    padding-left: 1.6rem;
    position: relative;
    font-weight: 500;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 800;
}

.landing-footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: 2rem 1.25rem;
    margin-top: 2rem;
    text-align: center;
}

.landing-footer a {
    color: #93c5fd;
}
.landing-footer a:hover {
    color: #fff;
}

.landing-footer .fine {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 1rem;
}

/* Saiba mais: conteúdo longo */
.prose-block {
    max-width: 720px;
    margin: 0 auto;
}
.prose-block h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    font-weight: 800;
    color: var(--brand-dark);
}
.prose-block h2:first-child {
    margin-top: 0;
}
.prose-block p,
.prose-block ul {
    color: var(--muted);
    font-size: 0.98rem;
}
.prose-block ul {
    padding-left: 1.25rem;
}

/* Assinatura: formulário */
.form-landing {
    max-width: 520px;
    margin: 0 auto;
}
.form-landing label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}
.form-landing .field {
    margin-bottom: 1rem;
}
.form-landing input,
.form-landing select,
.form-landing textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-landing textarea {
    min-height: 100px;
    resize: vertical;
}

.plan-radios {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.plan-radios label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}
.plan-radios input {
    width: auto;
}

/* ——— Home: hero em duas colunas, mockup e seções de valor ——— */
.home-hero {
    background: linear-gradient(165deg, #0f172a 0%, #1e3a8a 38%, #1d4ed8 72%, #dbeafe 100%);
    margin: 0 -1.25rem 0;
    padding: 2.25rem 1.25rem 2.75rem;
    border-radius: 0 0 28px 28px;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 55%;
    height: 90%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .home-hero__grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 2.5rem;
        text-align: left;
    }
    .home-hero__copy .hero-actions {
        justify-content: flex-start;
    }
    .home-hero__copy .badge-promo {
        margin-left: 0;
    }
}

.home-hero__copy {
    text-align: center;
}

@media (min-width: 900px) {
    .home-hero__copy {
        text-align: left;
    }
}

.home-hero .badge-promo {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.home-hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 0 0 0.85rem;
    color: #fff;
    line-height: 1.12;
}

.home-hero .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 34rem;
    margin: 0 auto 1.35rem;
    font-weight: 500;
}

@media (min-width: 900px) {
    .home-hero .lead {
        margin-left: 0;
        margin-right: 0;
    }
}

.home-hero .hero-actions .btn-landing-outline {
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
}

/* Links do hero: .landing-body a forçava azul escuro — ilegível no fundo escuro */
.home-hero a.btn-landing.btn-landing-outline {
    color: #fff;
    text-decoration: none;
}
.home-hero a.btn-landing.btn-landing-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
}
.home-hero a.btn-landing.btn-landing-primary {
    color: var(--brand-dark);
    text-decoration: none;
}
.home-hero a.btn-landing.btn-landing-primary:hover {
    color: var(--brand-dark);
    text-decoration: none;
}
.home-hero a.btn-landing.btn-landing-cta {
    color: #fff;
    text-decoration: none;
}
.home-hero a.btn-landing.btn-landing-cta:hover {
    color: #fff;
    text-decoration: none;
}

.home-hero__trust {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: center;
}

@media (min-width: 900px) {
    .home-hero__trust {
        justify-content: flex-start;
    }
}

.home-hero__trust li {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.home-mockup {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0.65rem;
    box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .home-mockup {
        margin: 0 0 0 auto;
    }
}

.home-mockup__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.5rem 0.65rem;
}

.home-mockup__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #64748b;
}
.home-mockup__dot:nth-child(1) { background: #f87171; }
.home-mockup__dot:nth-child(2) { background: #fbbf24; }
.home-mockup__dot:nth-child(3) { background: #4ade80; }

.home-mockup__screen {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1rem 1.1rem;
    color: var(--text);
}

.home-mockup__title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 0.35rem;
}

.home-mockup__brand {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.home-mockup__slots {
    display: grid;
    gap: 0.45rem;
}

.home-mockup__slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--border);
    font-weight: 600;
}

.home-mockup__slot span:last-child {
    color: var(--success);
    font-size: 0.72rem;
}

.home-mockup__slot--hot {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 2rem 0 1.5rem;
    text-align: center;
}

@media (max-width: 640px) {
    .home-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

.home-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 0.85rem;
    box-shadow: var(--shadow-sm);
}

.home-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.home-stat span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.35;
}

.home-value {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 0 0 2.25rem;
}

.home-value-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.home-value-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.home-value-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 500;
}

.home-section-title {
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
    color: var(--text);
}

.home-section-lead {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
    font-weight: 500;
}

.home-pricing-intro {
    text-align: center;
    margin: 2rem 0 0.5rem;
}

.home-cta-band {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow);
}

.home-cta-band h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-cta-band p {
    margin: 0 0 1.15rem;
    opacity: 0.92;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-band .btn-landing-cta {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
