/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }

/* Nav principal abaixo da barra global (ecosystem-topbar.css) */
body.has-intersomos-ecosystem-topbar .nav {
    top: var(--intersomos-topbar-h, 34px) !important;
}
body.has-intersomos-ecosystem-topbar {
    scroll-padding-top: calc(80px + var(--intersomos-topbar-h, 34px));
}

:root {
    --teal: #2FC1A6;
    --blue: #2B79C2;
    --leaf-300: #68C39A;
    --leaf-400: #3FAF7D;
    --leaf-600: #1A7F5A;
    --sand-50: #FAF6ED;
    --sand-100: #F5F0E0;
    --sand-200: #EDE6D6;
    --ink-700: #2A2E35;
    --ink-900: #0F1115;
    --accent: #F1C21B;
    --gradient: linear-gradient(135deg, #2FC1A6 0%, #2B79C2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(47,193,166,0.10) 0%, rgba(43,121,194,0.10) 100%);
}

body {
    font-family: 'Plus Jakarta Sans', Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink-900);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
.animate-in, .plugin-card, .pain-card, .audience-card, .tech-badge {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible, .plugin-card.visible, .pain-card.visible, .audience-card.visible, .tech-badge.visible {
    opacity: 1;
    transform: translateY(0);
}
.plugin-card:nth-child(2) { transition-delay: 0.08s; }
.plugin-card:nth-child(3) { transition-delay: 0.16s; }
.plugin-card:nth-child(4) { transition-delay: 0.24s; }
.plugin-card:nth-child(5) { transition-delay: 0.32s; }
.plugin-card:nth-child(6) { transition-delay: 0.40s; }
.pain-card:nth-child(2) { transition-delay: 0.08s; }
.pain-card:nth-child(3) { transition-delay: 0.16s; }
.pain-card:nth-child(4) { transition-delay: 0.24s; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.nav-scrolled {
    border-bottom-color: rgba(0,0,0,0.06);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
    display: flex; justify-content: space-between; align-items: center; height: 64px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 17px; color: var(--ink-900); letter-spacing: -0.01em;
    font-weight: 600;
}
.logo img { height: 36px; width: auto; }
.logo-icon { font-size: 20px; }
.nav-links {
    display: flex; gap: 28px; align-items: center;
}
.nav-links a {
    font-size: 14px; font-weight: 500; color: #4b5563;
    transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink-900); }
.nav-cta {
    background: var(--gradient) !important; color: #fff !important;
    padding: 9px 20px; border-radius: 10px; font-weight: 600 !important;
    transition: all 0.2s !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(43,121,194,0.25);
}

.nav-mobile {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative; z-index: 101;
}
.nav-mobile span {
    display: block; width: 100%; height: 2px; background: var(--ink-900);
    border-radius: 2px; transition: all 0.3s; position: absolute; left: 0;
}
.nav-mobile span:nth-child(1) { top: 0; }
.nav-mobile span:nth-child(2) { top: 9px; }
.nav-mobile span:nth-child(3) { top: 18px; }
.nav-mobile.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-mobile.active span:nth-child(2) { opacity: 0; }
.nav-mobile.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px;
    font-size: 14px; font-weight: 600; border: none; cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-primary {
    background: var(--gradient); color: #fff;
    box-shadow: 0 4px 14px rgba(43,121,194,0.18);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(43,121,194,0.28);
    filter: brightness(1.05);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-glass {
    background: rgba(255,255,255,0.7); color: var(--ink-900);
    border: 1.5px solid rgba(15,17,21,0.12);
    backdrop-filter: blur(8px);
}
.btn-glass:hover {
    background: #fff; border-color: var(--teal);
    color: var(--blue);
    transform: translateY(-1px);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--leaf-600); margin-bottom: 12px;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px; text-align: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(47,193,166,0.10) 0%, #fff 50%, rgba(43,121,194,0.10) 100%);
}
.hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(47,193,166,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero h1 {
    font-size: clamp(34px, 5vw, 56px); font-weight: 700;
    line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.025em;
    color: var(--ink-900);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(47,193,166,0.10); color: var(--leaf-600);
    padding: 7px 18px; border-radius: 999px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
    border: 1px solid rgba(47,193,166,0.20);
}
.pulse-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-sub {
    font-size: 18px; color: #4b5563; max-width: 640px;
    margin: 0 auto 32px; line-height: 1.7;
}
.hero-ctas {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 48px;
}
.hero-trust {
    display: flex; justify-content: center; align-items: center;
    gap: 20px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: #6b7280;
}
.trust-icon { font-size: 16px; }
.trust-divider { width: 1px; height: 20px; background: #e5e7eb; }

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 0; background: var(--sand-50);
}
.problem-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.problem-content h2 {
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
    line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em;
}
.problem-content p {
    font-size: 16px; color: #4b5563; line-height: 1.75; margin-bottom: 12px;
}
.problem-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pain-card {
    background: #fff; border: 1px solid var(--sand-200); border-radius: 16px;
    padding: 22px; transition: all 0.3s;
}
.pain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15,17,21,0.06);
    border-color: var(--teal);
}
.pain-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.pain-card p {
    font-size: 14px; color: #4b5563; line-height: 1.55; font-style: italic;
}

/* ===== PLUGINS SECTION ===== */
.plugins-section { padding: 80px 0; background: #fff; }
.section-header {
    text-align: center; margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.02em;
}
.section-header p {
    color: #6b7280; font-size: 17px; max-width: 560px; margin: 0 auto;
    line-height: 1.6;
}
.plugins-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

/* Plugin Card */
.plugin-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
    padding: 28px; position: relative; overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
    display: flex; flex-direction: column;
}
.plugin-card .btn-download {
    width: 100%; justify-content: center; margin-top: auto;
}
.plugin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15,17,21,0.08);
    border-color: rgba(47,193,166,0.3);
}
.card-highlight {
    border-color: rgba(47,193,166,0.25);
    background: linear-gradient(180deg, rgba(47,193,166,0.025) 0%, #fff 30%);
}
.card-glow {
    position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(47,193,166,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.plugin-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 16px;
}
.plugin-icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    background: var(--gradient-soft);
}
.icon-purple { background: linear-gradient(135deg, rgba(47,193,166,0.15), rgba(43,121,194,0.15)); }
.icon-orange { background: linear-gradient(135deg, rgba(241,194,27,0.15), rgba(47,193,166,0.15)); }
.icon-green { background: linear-gradient(135deg, rgba(104,195,154,0.18), rgba(63,175,125,0.18)); }
.icon-blue { background: linear-gradient(135deg, rgba(43,121,194,0.15), rgba(104,195,154,0.15)); }
.icon-teal { background: linear-gradient(135deg, rgba(47,193,166,0.18), rgba(104,195,154,0.18)); }
.icon-pink { background: linear-gradient(135deg, rgba(241,194,27,0.18), rgba(43,121,194,0.15)); }

.plugin-badge {
    padding: 5px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-free {
    background: rgba(47,193,166,0.10);
    color: var(--leaf-600);
}
.badge-premium {
    background: var(--gradient);
    color: #fff;
}

.plugin-card h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 4px;
    letter-spacing: -0.015em; color: var(--ink-900);
}
.plugin-tagline {
    font-size: 13px; color: var(--blue); font-weight: 600;
    margin-bottom: 12px;
}
.plugin-desc {
    font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 18px;
}
.plugin-desc code, .benefit code {
    background: var(--sand-100); padding: 1px 7px; border-radius: 5px;
    font-size: 12px; color: var(--blue);
    font-family: 'SF Mono', Menlo, monospace;
}
.plugin-benefit-list { margin-bottom: 18px; }
.benefit {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13.5px; color: #374151; padding: 3px 0;
    line-height: 1.55;
}
.benefit-check {
    color: var(--leaf-400); font-weight: 700; flex-shrink: 0;
}
.plugin-ideal {
    font-size: 12.5px; color: #6b7280; margin-bottom: 16px;
    padding: 10px 14px; background: var(--sand-50); border-radius: 10px;
    border-left: 3px solid var(--teal);
}
.plugin-ideal strong { color: #374151; }
.plugin-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
    background: var(--sand-100); color: #6b7280;
    padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 600;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
    padding: 80px 0; background: var(--sand-50);
}
.audience-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.audience-card {
    text-align: center; padding: 36px 22px;
    border: 1px solid var(--sand-200); border-radius: 20px;
    background: #fff;
    transition: all 0.3s;
}
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,17,21,0.06);
    border-color: var(--teal);
}
.audience-icon { font-size: 42px; margin-bottom: 18px; }
.audience-card h3 {
    font-size: 16.5px; font-weight: 700; margin-bottom: 10px;
    color: var(--ink-900);
}
.audience-card p { font-size: 13.5px; color: #6b7280; line-height: 1.65; }

/* ===== TECH SECTION ===== */
.tech-section {
    padding: 80px 0; background: #fff;
}
.tech-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center;
}
.tech-content h2 {
    font-size: clamp(28px, 3.5vw, 38px); font-weight: 700;
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em;
}
.tech-content p { font-size: 16px; color: #4b5563; line-height: 1.75; }
.tech-badges {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.tech-badge {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
    padding: 18px; transition: all 0.3s;
}
.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,17,21,0.05);
    border-color: var(--teal);
}
.tech-badge-icon { font-size: 26px; flex-shrink: 0; }
.tech-badge strong { font-size: 14px; display: block; color: var(--ink-900); }
.tech-badge span { font-size: 12px; color: #6b7280; }

/* ===== INSPIRATION (NEW) ===== */
.inspiration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(47,193,166,0.05) 0%, rgba(43,121,194,0.05) 100%);
}
.quote-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 24px; padding: 56px 40px;
    text-align: center; max-width: 760px; margin: 0 auto;
    box-shadow: 0 20px 60px rgba(15,17,21,0.06);
}
.quote-card blockquote {
    font-size: clamp(20px, 2.3vw, 26px); font-style: italic;
    color: var(--ink-900); line-height: 1.5;
    margin-bottom: 16px; font-weight: 400;
}
.quote-card cite {
    font-style: normal;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600; font-size: 16px;
}

/* ===== NEWSLETTER / SECOND CTA ===== */
.waitlist-section {
    padding: 80px 0; background: var(--sand-50);
}
.waitlist-card {
    position: relative; overflow: hidden;
    background: var(--gradient); color: #fff;
    border-radius: 28px; padding: 60px 48px;
    text-align: center; max-width: 760px; margin: 0 auto;
    box-shadow: 0 24px 60px rgba(43,121,194,0.25);
}
.waitlist-glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.waitlist-card .section-label { color: rgba(255,255,255,0.8); }
.waitlist-card h2 {
    font-size: clamp(26px, 3.2vw, 34px); font-weight: 700; margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.waitlist-card > p {
    color: rgba(255,255,255,0.88); font-size: 16px; margin-bottom: 32px;
    max-width: 480px; margin-left: auto; margin-right: auto;
    line-height: 1.7;
}
.form-row {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.form-group { flex: 1; min-width: 180px; }
.form-group input {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.20);
    border-radius: 12px; font-size: 14px;
    color: #fff; font-family: inherit;
    outline: none; transition: all 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.55); }
.form-group input:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.20);
}
.waitlist-form .btn-primary {
    background: #fff; color: var(--blue); white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
.waitlist-form .btn-primary:hover {
    background: var(--sand-50);
}
.form-meta {
    display: flex; gap: 20px; justify-content: center;
    margin-top: 18px; flex-wrap: wrap;
}
.form-meta span {
    font-size: 12.5px; color: rgba(255,255,255,0.75);
}
.form-success {
    padding: 32px; text-align: center;
}
.success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.85); }

/* ===== BLOG TEASER ===== */
.blog-teaser-section {
    padding: 80px 0; background: #fff;
}
.blog-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.blog-card-mini {
    display: block; padding: 28px;
    background: var(--sand-50); border: 1px solid var(--sand-200); border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    opacity: 0; transform: translateY(24px);
}
.blog-card-mini.visible {
    opacity: 1; transform: translateY(0);
}
.blog-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15,17,21,0.08);
    border-color: var(--teal);
    background: #fff;
}
.blog-mini-icon {
    font-size: 30px; margin-bottom: 16px;
    display: inline-block;
    width: 60px; height: 60px;
    background: var(--gradient-soft);
    border-radius: 16px;
    text-align: center; line-height: 60px;
}
.blog-card-mini h3 {
    font-size: 18.5px; font-weight: 700; margin-bottom: 10px;
    letter-spacing: -0.015em; line-height: 1.3;
    color: var(--ink-900);
}
.blog-card-mini p {
    font-size: 14px; color: #4b5563; line-height: 1.65; margin-bottom: 18px;
}
.blog-mini-link {
    font-size: 13.5px; font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MODAL ===== */
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,17,21,0.55);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 1000; display: none;
    align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; transition: opacity 0.2s;
}
.modal-backdrop.open { display: flex; opacity: 1; }

.modal {
    background: #fff;
    border-radius: 24px;
    max-width: 480px; width: 100%;
    padding: 44px 40px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.30);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    max-height: 90vh; overflow-y: auto;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute; top: 16px; right: 16px;
    background: var(--sand-100); border: none;
    width: 36px; height: 36px; border-radius: 10px;
    font-size: 22px; line-height: 1;
    cursor: pointer; color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover {
    background: var(--ink-900); color: #fff;
}

.modal-badge {
    display: inline-block; padding: 6px 14px;
    background: rgba(47,193,166,0.10); color: var(--leaf-600);
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    margin-bottom: 16px;
}
.modal h2 {
    font-size: 24px; font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.02em; line-height: 1.25;
    color: var(--ink-900);
}
.modal-sub {
    font-size: 14.5px; color: #4b5563; margin-bottom: 24px; line-height: 1.65;
}

.modal-form-group {
    margin-bottom: 14px;
}
.modal-form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: #374151; margin-bottom: 6px;
}
.modal-form-group label .optional {
    font-weight: 400; color: #9ca3af; font-size: 12px;
}
.modal-form-group input {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid #e5e7eb; border-radius: 12px;
    font-size: 14px; font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-form-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(47,193,166,0.18);
}

.modal-checkbox {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13.5px; color: #4b5563; line-height: 1.5;
    margin: 16px 0 22px; cursor: pointer;
}
.modal-checkbox input { margin-top: 3px; flex-shrink: 0; }

.btn-modal-submit {
    width: 100%; justify-content: center;
}

.modal-disclaimer {
    font-size: 12px; color: #9ca3af; text-align: center;
    margin-top: 14px;
}

.modal-success {
    text-align: center; padding: 20px 0;
}
.modal-success .success-icon { font-size: 64px; margin-bottom: 16px; }
.modal-success h2 { font-size: 26px; margin-bottom: 12px; }
.modal-success p { color: #4b5563; font-size: 14.5px; margin-bottom: 8px; }
.modal-success a {
    color: var(--blue); font-weight: 600; text-decoration: underline;
}
.modal-success-sub { font-size: 13px; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0; border-top: 1px solid #f0f0f0; background: #fff;
}
.footer-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px; padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.footer-brand {
    display: flex; align-items: center; gap: 10px; font-size: 17px;
}
.footer-brand img { height: 32px; width: auto; }
.footer-tagline { font-size: 13px; color: #6b7280; }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: #9ca3af; }
.footer-nav {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-nav a {
    font-size: 14px; color: #6b7280; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue); }

/* ===== BLOG PAGES ===== */
.blog-page { padding: 120px 0 80px; }
.blog-header {
    max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.blog-header h1 {
    font-size: clamp(34px, 4.5vw, 48px); font-weight: 700;
    letter-spacing: -0.025em; margin-bottom: 18px; line-height: 1.15;
    color: var(--ink-900);
}
.blog-header p {
    color: #4b5563; font-size: 17.5px; line-height: 1.7;
}

.blog-index-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px; max-width: 1100px; margin: 0 auto;
}
.blog-index-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
    padding: 0; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column;
}
.blog-index-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15,17,21,0.08);
    border-color: var(--teal);
}
.blog-index-cover {
    height: 170px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 68px;
}
.blog-cover-2 { background: linear-gradient(135deg, var(--leaf-600), var(--teal)); }
.blog-cover-3 { background: linear-gradient(135deg, var(--blue), var(--leaf-400)); }

.blog-index-body { padding: 26px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-index-meta {
    display: flex; gap: 12px; font-size: 11.5px; color: #9ca3af;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.blog-index-meta .dot { color: #d1d5db; }
.blog-index-body h2 {
    font-size: 19px; font-weight: 700; line-height: 1.3;
    margin-bottom: 12px; letter-spacing: -0.015em;
    color: var(--ink-900);
}
.blog-index-body p {
    color: #4b5563; font-size: 14px; line-height: 1.65; margin-bottom: 18px;
    flex: 1;
}
.blog-index-link {
    font-size: 13.5px; font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== POST ===== */
.post-container {
    max-width: 740px; margin: 0 auto; padding: 0 24px;
}
.post-header {
    text-align: center; margin-bottom: 48px;
}
.post-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; color: #6b7280; margin-bottom: 24px;
    transition: color 0.2s;
}
.post-back:hover { color: var(--blue); }
.post-tag {
    display: inline-block; padding: 6px 14px;
    background: rgba(47,193,166,0.10); color: var(--leaf-600);
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em;
}
.post-header h1 {
    font-size: clamp(30px, 4vw, 44px); font-weight: 700;
    letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 22px;
    color: var(--ink-900);
}
.post-meta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    font-size: 13px; color: #9ca3af;
}
.post-meta .dot { color: #d1d5db; }

.post-cover {
    height: 260px; border-radius: 24px; margin-bottom: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 100px;
    background: var(--gradient);
}

.post-content { font-size: 17px; line-height: 1.8; color: #374151; }
.post-content > * + * { margin-top: 1.2em; }
.post-content h2 {
    font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
    margin-top: 2em; margin-bottom: 0.5em; line-height: 1.3;
    color: var(--ink-900);
}
.post-content h3 {
    font-size: 20px; font-weight: 700;
    margin-top: 1.6em; margin-bottom: 0.4em; line-height: 1.3;
    color: var(--ink-900);
}
.post-content p { margin: 1em 0; }
.post-content a {
    color: var(--blue); font-weight: 600;
    border-bottom: 1.5px solid rgba(43,121,194,0.3);
    transition: border-color 0.2s;
}
.post-content a:hover { border-color: var(--blue); }
.post-content ul, .post-content ol { padding-left: 1.5em; margin: 1em 0; }
.post-content li { margin-bottom: 0.6em; }
.post-content strong { color: var(--ink-900); font-weight: 700; }
.post-content code {
    background: var(--sand-100); padding: 2px 8px; border-radius: 6px;
    font-size: 0.9em; color: var(--blue);
    font-family: 'SF Mono', Menlo, monospace;
}
.post-content pre {
    background: var(--ink-900); color: #e5e7eb;
    padding: 22px; border-radius: 14px;
    overflow-x: auto; font-size: 14px;
    font-family: 'SF Mono', Menlo, monospace;
}
.post-content pre code {
    background: transparent; color: inherit; padding: 0;
}
.post-content blockquote {
    border-left: 4px solid var(--teal);
    padding: 10px 22px; margin: 1.5em 0;
    background: var(--sand-50); border-radius: 0 10px 10px 0;
    font-style: italic; color: #4b5563;
}

/* CTA box dentro do post */
.post-cta {
    background: var(--gradient);
    color: #fff; padding: 36px;
    border-radius: 20px; margin: 44px 0;
    text-align: center;
    box-shadow: 0 16px 40px rgba(43,121,194,0.22);
}
.post-cta h3 {
    color: #fff; font-size: 22px; font-weight: 700;
    margin-bottom: 10px; letter-spacing: -0.02em;
}
.post-cta p {
    color: rgba(255,255,255,0.9); margin-bottom: 22px; font-size: 15px;
    line-height: 1.6;
}
.post-cta .btn {
    background: #fff; color: var(--blue);
}
.post-cta .btn:hover {
    background: var(--sand-50);
    transform: translateY(-2px);
}

.post-share {
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
.post-share p { color: #6b7280; font-size: 14px; margin-bottom: 16px; }
.post-share-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.post-share-buttons a {
    padding: 9px 18px; border: 1px solid #e5e7eb; border-radius: 10px;
    font-size: 13px; color: #4b5563; transition: all 0.2s;
}
.post-share-buttons a:hover {
    border-color: var(--teal); color: var(--blue);
}

.post-related {
    margin-top: 64px; padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}
.post-related h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 24px;
    color: var(--ink-900);
}
.post-related-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.post-related-card {
    padding: 22px; border: 1px solid #e5e7eb; border-radius: 14px;
    transition: all 0.2s;
}
.post-related-card:hover {
    border-color: var(--teal); transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,17,21,0.06);
}
.post-related-card h4 {
    font-size: 15px; font-weight: 700; margin-bottom: 6px;
    color: var(--ink-900);
}
.post-related-card p { font-size: 13px; color: #6b7280; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column; justify-content: center;
        align-items: center; gap: 24px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 18px; }
    .nav-mobile { display: block; }

    .plugins-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; gap: 32px; }
    .problem-cards { grid-template-columns: 1fr 1fr; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .tech-badges { grid-template-columns: 1fr; }
    .blog-cards { grid-template-columns: 1fr; }
    .post-related-grid { grid-template-columns: 1fr; }
    .modal { padding: 36px 28px; }

    .hero-trust { gap: 12px; }
    .trust-divider { display: none; }

    .form-row { flex-direction: column; }
    .form-group { min-width: auto; }

    .waitlist-card { padding: 44px 28px; }
    .quote-card { padding: 40px 28px; }

    .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
    .footer-nav { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .problem-cards { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
}
