:root {
    --bg-dark: #000212;
    /* Quase preto absoluto */
    --primary: #5b21b6;
    --primary-light: #8b5cf6;
    --accent: #06b6d4;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --panel-bg: rgba(255, 255, 255, 0.03);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.center {
    text-align: center;
}

/* --- BACKGROUND FX --- */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 10% 20%, rgba(91, 33, 182, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* --- NAV --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    z-index: 50;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 2, 18, 0.7);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 32px;
    width: auto;
}

.beta-tag {
    font-size: 0.6rem;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.link-muted {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.link-muted:hover {
    color: white;
}

/* --- BUTTONS --- */
.btn-primary {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    width: 100%;
    border: 1px solid var(--border-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: border-color 0.2s;
}

.btn-outline:hover {
    border-color: white;
}

.full {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 12px;
    border-radius: 8px;
}

/* --- HERO --- */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.badge-new {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(to right, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-footer-text {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-footer-text i {
    width: 14px;
    color: #22c55e;
}

/* --- HERO MOCKUP --- */
.hero-image-box {
    position: relative;
    z-index: 10;
}

/* Z-index para garantir stack correto */

.browser-mockup {
    width: 100%;
    height: 500px;
    background: #0f172a;
    border-radius: 16px;
    /* Mais arredondado */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
    /* Sombra mais profunda */
    position: relative;
    /* overflow: hidden; -> REMOVIDO para permitir badges flutuando levemente para fora se necessário, mas vamos manter tudo contido por segurança visual */
    overflow: hidden;
}

.browser-header {
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.address-bar {
    flex: 1;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    line-height: 24px;
}

/* --- HERO SCREEN CONTENT --- */
.screen-content {
    padding: 0;
    /* Remove padding global para controle total */
    height: calc(100% - 40px);
    background: radial-gradient(circle at 80% 20%, #1e293b, #020617);
    position: relative;
}

.interface-grid {
    display: flex;
    width: 100%;
    height: 100%;
    /* Centraliza o chat no meio da tela */
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.main-area {
    width: 100%;
    max-width: 420px;
    /* Largura ótima para leitura */
    position: relative;
    z-index: 5;
}

/* Limita largura para ficar elegante */

.sidebar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    height: 100%;
}

/* --- CHAT STYLES REFINED --- */
.chat-sim-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg {
    padding: 14px 20px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out backwards;
}

.msg.ai {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    display: flex;
    gap: 12px;
    border-bottom-left-radius: 4px;
    backdrop-filter: blur(4px);
    max-width: 90%;
}

.avatar-ai {
    color: var(--primary-light);
}

.msg.user {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    max-width: 80%;
}

.msg.action {
    align-self: flex-start;
    width: 100%;
}

.action-card {
    background: rgba(15, 23, 42, 0.95);
    /* Mais opaco para leitura */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #cbd5e1;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.action-card i {
    width: 16px;
    color: var(--accent);
}

/* --- BADGES RE-POSITIONED (SAFE ZONE) --- */
/* Agora posicionados RELATIVOS ao container interno, nos cantos, sem sair pra fora */
.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

.badge-1 {
    top: 20px;
    right: 20px;
    /* Canto superior direito interno */
    color: #86efac;
    border-color: rgba(134, 239, 172, 0.1);
    animation: float 6s infinite;
}

.badge-2 {
    bottom: 20px;
    left: 20px;
    /* Canto inferior esquerdo interno */
    color: #fcd34d;
    border-color: rgba(252, 211, 77, 0.1);
    animation: float 6s infinite reverse;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- BENTO GRID --- */
.bento-section {
    padding: 100px 0;
}

.sub-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-light);
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.bento-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bento-section p {
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 24px;
}

.bento-card {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
    grid-template-rows: 200px;
}

.icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #c4b5fd;
}

.green {
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
}

.blue {
    background: rgba(6, 182, 212, 0.1);
    color: #67e8f9;
}

.slate {
    background: rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- BENTO CARD FIX --- */
.fake-chat-mini {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- HERO TEXT GRADIENT FIX --- */
.gradient-text {
    background: linear-gradient(to right, #a78bfa, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bubble {
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.85rem;
}

.arrow {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 4px 0;
}

.result-box {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 600;
}

.horizontal-flex {
    flex-direction: row;
    align-items: center;
}

.text-side {
    flex: 1;
    padding-right: 40px;
}

.visual-side {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.big-lock {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.1);
}

/* --- ECOSYSTEM --- */
.ecosystem-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.platform-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.platform-card.active {
    border-color: var(--primary-light);
    background: rgba(139, 92, 246, 0.05);
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.active .platform-icon {
    color: var(--primary-light);
}

.platform-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.platform-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.available {
    background: #22c55e;
    color: black;
}

.waiting {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* --- PRICING --- */
.pricing-section {
    padding: 100px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
    margin: 60px auto 30px;
}

.price-plan {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: var(--panel-bg);
}

.price-plan.featured {
    border-color: var(--primary-light);
    background: rgba(139, 92, 246, 0.03);
    position: relative;
}

.tag-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.price-plan ul {
    list-style: none;
    margin: 30px 0;
}

.price-plan li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-plan li i {
    width: 16px;
    color: var(--primary-light);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 16px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.crypto-note {
    color: rgba(255, 255, 255, 0.3);
}

/* --- FOOTER --- */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-footer {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}


/* --- ANIMATIONS --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- MOBILE SAFE MODE (RESPONSIVE) --- */

/* --- NEXUS VOICE CARD CSS --- */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.new-badge {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    animation: pulse 2s infinite;
}

.voice-demo-visual {
    margin-top: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Orb Animation for LP */
.lp-orb-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-orb-core {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    animation: orb-breathe 2s ease-in-out infinite;
}

.orb-icon {
    width: 20px;
    height: 20px;
    color: white;
    animation: pulse 1s ease-in-out infinite;
}

.lp-orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-sizing: border-box;
    opacity: 0;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ripple 2s linear infinite;
}

.ring-2 {
    width: 100%;
    height: 100%;
    animation: ripple 2s linear infinite 0.6s;
}

@keyframes orb-breathe {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    }
}

@keyframes ripple {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
        border-width: 0px;
    }
}

.voice-captions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.caption {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    max-width: 90%;
    line-height: 1.4;
}

.caption.user {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-bottom-right-radius: 2px;
}

.caption.ai {
    align-self: flex-start;
    background: rgba(139, 92, 246, 0.15);
    color: #e2e8f0;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom-left-radius: 2px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Mobile Adjustments for Voice Card */
@media (max-width: 768px) {
    .voice-demo-visual {
        flex-direction: column;
        padding: 1.2rem;
        gap: 1rem;
    }

    .lp-orb-container {
        margin-bottom: 0.5rem;
    }
}

/* --- NEXUS MIND SECTION --- */
.mind-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #0f172a, #020617);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.mind-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-pill.teal {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #2dd4bf;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.text-teal { color: #2dd4bf; }
.teal-icon { color: #2dd4bf; width: 24px; height: 24px; flex-shrink: 0; }

.mind-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mind-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.mind-item:hover { transform: translateX(5px); border-color: rgba(20, 184, 166, 0.3); }
.mind-item strong { color: #e2e8f0; display: block; margin-bottom: 0.3rem; font-size: 1.1rem; }
.mind-item span { color: #94a3b8; font-size: 0.95rem; line-height: 1.5; }

/* Demo Visual Zen UI */
.mind-demo {
    perspective: 1000px;
}

.zen-ui-content {
    background: #1e293b; /* Slate 800 */
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    max-width: 400px;
    margin: 0 auto;
}

.zen-step-indicator {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 2rem;
}

.zen-emoji {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
    animation: float 4s ease-in-out infinite;
}

.zen-title {
    font-size: 2rem;
    color: #f1f5f9;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.zen-rationale {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.zen-btn {
    background: #2dd4bf;
    color: #0f172a;
    font-weight: 800;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 10px 15px -3px rgba(45, 212, 191, 0.3);
}

.zen-btn:hover { 
    transform: translateY(-2px); 
    background: #5eead4; 
    box-shadow: 0 20px 25px -5px rgba(45, 212, 191, 0.4);
}

@media (max-width: 900px) {
    .mind-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .mind-list { text-align: left; }
    .mind-section { padding: 4rem 0; }
}

/* --- FOOTER GLOBAL --- */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
    background: rgba(15, 23, 42, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Linter Fix */
.clip-fix {
    background-clip: padding-box;
}

/* --- MOBILE SAFE MODE (RESPONSIVE) --- */
@media (max-width: 900px) {

    /* 1. Trava de Segurança Global */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 16px;
        width: 100%;
    }

    /* 2. Nav Mobile Simplificada */
    .glass-nav {
        height: 60px;
        padding: 0 16px;
    }

    .nav-content {
        justify-content: center;
    }

    .logo {
        margin: 0;
        font-size: 1.1rem;
    }

    .nav-links,
    .nav-actions {
        display: none !important;
    }

    /* 3. Hero: Simples e Direto - Ajuste de Respiro */
    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
        /* Mais espaço antes do próximo conteúdo */
        display: block;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        /* Mais espaço entre texto e imagem */
        text-align: center;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 30px auto;
        /* Margem automática nas laterais para centralizar */
        max-width: 90%;
    }

    /* Botões Full Width */
    .cta-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    /* Footer Hero Alinhado */
    .hero-footer-text {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 0.85rem;
        align-items: center;
        /* Centraliza os blocos */
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    /* Hack para alinhar ícones e texto no mobile sem mudar HTML */
    .hero-footer-text,
    .hero-footer-text i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        margin-bottom: 24px;
    }

    /* 4. Mockup do Browser Adaptável - Ajuste OTIMIZADO */
    .hero-image-box {
        width: 100%;
        margin: 0;
    }

    .browser-mockup {
        height: auto;
        min-height: auto;
        /* Remove altura mínima forçada */
        border-radius: 12px;
        overflow: hidden;
    }

    .screen-content {
        padding: 16px 8px;
        /* Padding lateral mínimo */
    }

    .interface-grid {
        display: block;
        padding: 0;
        width: 100%;
    }

    .main-area {
        width: 100%;
        max-width: 100%;
    }

    /* CHAT MOBILE FIX - SUCESSO NO IPHONE */
    .chat-sim-modern {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .msg {
        width: 100%;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box;
        font-size: 0.85rem;
    }

    /* O Segredo: Cards um embaixo do outro */
    .msg.ai.action {
        flex-direction: column;
        /* Empilha verticalmente */
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        height: auto;
    }

    .action-card {
        width: 100% !important;
        margin: 0;
        box-sizing: border-box;
        font-size: 0.8rem;
    }

    .float-badge {
        display: none !important;
    }

    /* Tchau badges */

    /* 5. Lobotimizando o Bento Grid para Flex Column (Impossível quebrar) */
    .bento-section {
        padding: 40px 0;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto !important;
    }

    .bento-card,
    .span-2,
    .span-3,
    .glass-panel {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        min-height: auto;
        padding: 24px;
        height: auto !important;
        /* Reseta alturas fixas */
    }

    /* Ajustes internos dos cards */
    .fake-chat-mini {
        margin-top: 20px;
        padding: 12px;
    }

    .horizontal-flex {
        flex-direction: column;
    }

    .text-side {
        padding: 0;
        margin-bottom: 20px;
    }

    .visual-side {
        width: 100%;
        justify-content: center;
    }

    /* 6. Ecosystem & Pricing */
    .ecosystem-section,
    .pricing-section {
        padding: 40px 0;
    }

    .platforms-grid,
    .pricing-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .platform-card,
    .price-plan {
        padding: 24px;
    }

    /* Footer */
    footer {
        padding: 40px 0;
        text-align: center;
    }
}
