/* Landing Page Styling - Geneproj (Premium Light Theme) */
:root {
    --lp-bg: #f8fafc;
    --lp-bg-card: rgba(255, 255, 255, 0.85);
    --lp-bg-card-hover: rgba(255, 255, 255, 0.98);
    --lp-text-primary: #0f172a;
    --lp-text-secondary: #475569;
    --lp-accent-blue: #2563eb;
    --lp-accent-indigo: #4f46e5;
    --lp-accent-cyan: #0891b2;
    --lp-accent-glow: rgba(37, 99, 235, 0.12);
    --lp-border: rgba(15, 23, 42, 0.08);
    --lp-border-focus: rgba(37, 99, 235, 0.4);
    --lp-font: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.landing-page {
    background-color: var(--lp-bg);
    color: var(--lp-text-primary);
    font-family: var(--lp-font);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Gradients & Effects */
.lp-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lp-glow-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(0,0,0,0) 100%);
    filter: blur(80px);
}

.lp-glow-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, rgba(99, 102, 241, 0.02) 50%, rgba(0,0,0,0) 100%);
    filter: blur(100px);
}

.lp-glow-3 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, rgba(8, 145, 178, 0.01) 60%, rgba(0,0,0,0) 100%);
    filter: blur(90px);
}

/* Navbar */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 2rem;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.lp-navbar.scrolled {
    padding: 0.85rem 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.lp-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--lp-text-primary);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.lp-logo span {
    background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-nav-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 3rem;
}

.lp-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.lp-nav-link {
    text-decoration: none;
    color: var(--lp-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.lp-nav-link:hover, .lp-nav-link.active {
    color: var(--lp-accent-blue);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-btn-text {
    text-decoration: none;
    color: var(--lp-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
}

.lp-btn-text:hover {
    color: var(--lp-accent-blue);
}

.lp-btn-primary {
    text-decoration: none;
    background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-indigo));
    color: #fff;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
    border: none;
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.lp-btn-secondary {
    text-decoration: none;
    background: rgba(15, 23, 42, 0.04);
    color: var(--lp-text-primary);
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--lp-border);
    transition: all 0.2s ease;
}

.lp-btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
}

/* Mobile Toggle */
.lp-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--lp-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.lp-hero {
    position: relative;
    padding: 9rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.06);
    color: var(--lp-accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.lp-badge i {
    color: var(--lp-accent-cyan);
}

.lp-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #0f172a 40%, var(--lp-accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero p {
    font-size: 1.2rem;
    color: var(--lp-text-secondary);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.lp-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.lp-hero-ctas .lp-btn-primary {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.lp-hero-ctas .lp-btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

/* Hero Browser Mockup */
.lp-mockup-container {
    margin-top: 1.5rem;
}

.lp-browser-mockup {
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25), 0 0 40px rgba(37, 99, 235, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    transform: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-browser-mockup:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 65px -12px rgba(15, 23, 42, 0.35), 0 0 55px rgba(37, 99, 235, 0.18);
}

.lp-browser-header {
    background: #1e293b;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.lp-browser-dots {
    display: flex;
    gap: 0.4rem;
}

.lp-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.lp-browser-dots span:nth-child(1) { background: #ef4444; }
.lp-browser-dots span:nth-child(2) { background: #f59e0b; }
.lp-browser-dots span:nth-child(3) { background: #10b981; }

.lp-browser-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #94a3b8;
    background: #0f172a;
    padding: 0.25rem 2.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-browser-content {
    background: #0b0f19;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-browser-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Sections Common */
.lp-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, var(--lp-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-section-header p {
    font-size: 1.1rem;
    color: var(--lp-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.lp-feature-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.lp-feature-card:hover {
    background: var(--lp-bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--lp-accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.lp-feature-card:hover .lp-feature-icon {
    background: var(--lp-accent-blue);
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.lp-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--lp-text-primary);
}

.lp-feature-card p {
    font-size: 0.95rem;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Dynamic Capabilities Showcase (Tabs) */
.lp-showcase-container {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.lp-showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-showcase-tab {
    background: none;
    border: 1px solid transparent;
    text-align: left;
    padding: 1.25rem;
    border-radius: 12px;
    color: var(--lp-text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-showcase-tab i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--lp-text-secondary);
}

.lp-showcase-tab h4 {
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-text-primary);
}

.lp-showcase-tab p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--lp-text-secondary);
}

.lp-showcase-tab:hover {
    background: rgba(15, 23, 42, 0.03);
}

.lp-showcase-tab.active {
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.15);
}

.lp-showcase-tab.active i {
    color: var(--lp-accent-blue);
}

.lp-showcase-content {
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
}

.lp-showcase-panel {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.4s ease-out forwards;
}

.lp-showcase-panel.active {
    display: block;
}

.lp-showcase-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Portability Section */
.lp-portability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-portability-details h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.lp-portability-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-portability-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.lp-portability-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(8, 145, 178, 0.06);
    color: var(--lp-accent-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(8, 145, 178, 0.12);
}

.lp-portability-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.lp-portability-item p {
    font-size: 0.9rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.lp-portability-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-circle-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.lp-device-mockups {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 300px;
}

.lp-mockup-laptop {
    position: absolute;
    width: 80%;
    left: 0;
    bottom: 0;
    background: #0f172a;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid var(--lp-border);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-mockup-tablet {
    position: absolute;
    width: 55%;
    right: 0%;
    top: 5%;
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
    border: 3px solid #475569;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-mockup-phone {
    position: absolute;
    width: 20%;
    right: 2%;
    bottom: -28px;
    background: #020617;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    border: 3px solid #1e293b;
    aspect-ratio: 9 / 19;
    overflow: hidden;
    /* O celular fica visível sem cobrir a área central das telas maiores. */
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-device-mockups img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Project Flow Section */
.lp-flow-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.lp-flow-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.lp-flow-step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lp-accent-indigo);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid var(--lp-bg);
}

.lp-flow-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.lp-flow-card p {
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.lp-flow-cards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--lp-accent-blue), var(--lp-accent-cyan));
    opacity: 0.2;
    z-index: 1;
}

/* Contact Section */
.lp-contact-container {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    padding: 3.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.lp-contact-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.lp-contact-info p {
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.lp-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--lp-accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.lp-contact-item span {
    font-size: 0.95rem;
    color: var(--lp-text-primary);
}

.lp-form-group {
    margin-bottom: 1.5rem;
}

.lp-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--lp-text-primary);
}

.lp-form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--lp-text-primary);
    font-family: var(--lp-font);
    outline: none;
    transition: all 0.2s ease;
}

.lp-form-control:focus {
    border-color: var(--lp-accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.lp-form-control {
    resize: vertical;
    min-height: 120px;
}

.lp-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #059669;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    font-size: 0.9rem;
    align-items: center;
    gap: 0.75rem;
}

/* Footer */
.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 4rem 2rem 2rem;
    background: #f1f5f9;
}

.lp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.lp-footer-brand {
    max-width: 320px;
}

.lp-footer-brand p {
    color: var(--lp-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.lp-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.lp-footer-col h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--lp-text-primary);
}

.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-footer-links a {
    text-decoration: none;
    color: var(--lp-text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.lp-footer-links a:hover {
    color: var(--lp-accent-blue);
}

.lp-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--lp-text-secondary);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-footer-iltech {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.lp-iltech-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .lp-showcase-container {
        grid-template-columns: 1fr;
    }
    .lp-showcase-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .lp-showcase-tab {
        flex-shrink: 0;
        padding: 0.85rem 1.25rem;
    }
    .lp-portability-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lp-contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lp-flow-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-flow-cards::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mantém os três dispositivos visíveis sem o celular esconder o laptop. */
    .lp-device-mockups {
        max-width: 420px;
        height: 255px;
    }

    .lp-mockup-laptop {
        width: 88%;
    }

    .lp-mockup-tablet {
        width: 48%;
        top: 2%;
    }

    .lp-mockup-phone {
        width: 18%;
        right: 2%;
        bottom: -22px;
        border-radius: 13px;
    }

    .lp-circle-bg {
        width: 270px;
        height: 270px;
    }

    .lp-nav-collapse {
        display: none;
    }
    
    .lp-menu-toggle {
        display: block;
    }
    
    .lp-navbar.mobile-open .lp-nav-collapse {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 2rem;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
        gap: 1.5rem;
    }
    
    .lp-navbar.mobile-open .lp-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }
    
    .lp-navbar.mobile-open .lp-nav-menu .lp-nav-link {
        font-size: 1.05rem;
        padding: 0.25rem 0;
    }
    
    .lp-navbar.mobile-open .lp-nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        border-top: 1px solid var(--lp-border);
        padding-top: 1.5rem;
        margin: 0;
        align-items: stretch;
    }

    .lp-navbar.mobile-open .lp-nav-actions .lp-btn-primary,
    .lp-navbar.mobile-open .lp-nav-actions .lp-btn-text {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .lp-hero h1 {
        font-size: 2.5rem;
    }
    
    .lp-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lp-footer-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .lp-footer-links-grid {
        gap: 2rem;
        width: 100%;
    }
    
    .lp-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lp-device-mockups {
        height: 210px;
    }

    .lp-mockup-phone {
        width: 17%;
        right: 2%;
        bottom: -16px;
    }

    .lp-flow-cards {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mode Selector styling for 3D Workspace Inspection Modes */
.lp-mode-selector {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem;
    border-radius: 30px;
    border: 1px solid var(--lp-border);
    z-index: 20;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.lp-mode-btn {
    background: none;
    border: none;
    color: var(--lp-text-secondary);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-mode-btn:hover {
    color: var(--lp-text-primary);
    background: rgba(15, 23, 42, 0.04);
}

.lp-mode-btn.active {
    background: var(--lp-accent-blue);
    color: #fff;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.lp-showcase-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Showcase Switcher */
.lp-hero-switcher {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.05);
    padding: 0.4rem;
    border-radius: 30px;
    border: 1px solid var(--lp-border);
    margin-bottom: 2.5rem;
    margin-top: -1.5rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    position: relative;
    z-index: 20;
}

.lp-hero-switch-btn {
    background: none;
    border: none;
    color: var(--lp-text-secondary);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-hero-switch-btn:hover {
    color: var(--lp-text-primary);
    background: rgba(15, 23, 42, 0.04);
}

.lp-hero-switch-btn.active {
    background: var(--lp-accent-blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Reports Overlapping Images */
.lp-reports-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 2rem;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
}

.lp-report-card {
    position: absolute;
    width: 32%;
    max-height: 92%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-report-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-left {
    left: 14%;
    top: 50%;
    transform: translateY(-50%) scale(0.92);
    z-index: 1;
    box-shadow: -8px 12px 25px rgba(0, 0, 0, 0.35);
}

.card-center {
    left: 34%;
    top: 50%;
    transform: translateY(-50%) scale(0.96);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.card-right {
    left: 54%;
    top: 50%;
    transform: translateY(-50%) scale(1);
    z-index: 3;
    box-shadow: 8px 15px 35px rgba(0, 0, 0, 0.5);
}

/* Hover effects: slightly fans out the stack */
.lp-reports-wrapper:hover .card-left {
    transform: translateY(-52%) scale(0.94);
    left: 8%;
    box-shadow: -12px 18px 30px rgba(0, 0, 0, 0.4);
}

.lp-reports-wrapper:hover .card-center {
    transform: translateY(-54%) scale(0.98);
    left: 33%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lp-reports-wrapper:hover .card-right {
    transform: translateY(-50%) scale(1.02);
    left: 58%;
    box-shadow: 12px 20px 45px rgba(0, 0, 0, 0.55);
}

/* Programming Section Descriptive Cards */
.lp-prog-desc-cards {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 320px;
    z-index: 10;
    pointer-events: none;
}

.lp-prog-desc-card {
    display: none;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    animation: lpCardFadeIn 0.3s ease;
}

.lp-prog-desc-card.active {
    display: block;
    pointer-events: auto;
}

.lp-prog-desc-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #38bdf8;
}

.lp-prog-desc-card p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #cbd5e1;
    margin: 0;
}

@keyframes lpCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Idiomas Switcher */
.lp-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 0.75rem;
    border: 1px solid var(--lp-border);
    background: rgba(15, 23, 42, 0.03);
    padding: 0.25rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lp-lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lp-text-secondary);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    transition: all 0.2s ease;
    display: inline-block;
    line-height: 1;
}

.lp-lang-btn:hover {
    color: var(--lp-accent-blue);
    background: rgba(37, 99, 235, 0.05);
}

.lp-lang-btn.active {
    color: #fff !important;
    background: var(--lp-accent-blue) !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Ajustes para Mobile */
@media (max-width: 991px) {
    .lp-lang-switcher {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
        justify-content: center;
    }
}

/* Showcase mobile: mantém todos os recursos acessíveis e prioriza a imagem. */
@media (max-width: 768px) {
    .lp-navbar.mobile-open .lp-nav-collapse {
        left: 0;
        right: 0;
        width: auto;
        margin-left: 0;
    }

    .lp-showcase-container {
        padding: 1rem;
        gap: 1rem;
    }

    .lp-showcase-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        overflow: visible;
        padding-bottom: 0;
    }

    .lp-showcase-tab {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        padding: 0.65rem;
        gap: 0.55rem;
    }

    .lp-showcase-tab i {
        width: auto;
        font-size: 1rem;
    }

    .lp-showcase-tab h4 {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .lp-showcase-tab p {
        display: none;
    }

    .lp-showcase-content {
        aspect-ratio: auto;
        display: block;
        overflow: visible;
        background: transparent;
        border: 0;
    }

    .lp-showcase-panel > img,
    .lp-showcase-img-wrapper {
        aspect-ratio: 16 / 10;
        height: auto;
        overflow: hidden;
        background: #0f172a;
        border-radius: 12px;
    }

    .lp-showcase-panel > img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .lp-showcase-panel .lp-mode-selector {
        position: static;
        transform: none;
        width: 100%;
        margin: 0 0 0.75rem;
        gap: 0.25rem;
        padding: 0.3rem;
        border-radius: 12px;
        box-shadow: none;
    }

    .lp-showcase-panel .lp-mode-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.45rem 0.25rem;
        font-size: 0.7rem;
        line-height: 1.15;
    }

    #programming .lp-showcase-img-wrapper {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        aspect-ratio: auto;
        overflow: visible;
        background: transparent;
    }

    #programming .lp-showcase-img-wrapper > img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: contain;
        background: #0f172a;
        border-radius: 12px;
    }

    .lp-prog-desc-cards {
        position: static;
        width: auto;
        margin-top: 0.75rem;
        pointer-events: auto;
    }

    .lp-prog-desc-card {
        padding: 0.9rem;
        border-radius: 10px;
    }

    .lp-prog-desc-card h5 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .lp-prog-desc-card p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .lp-reports-wrapper {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 10;
        padding: 0.75rem;
    }

    .lp-report-card {
        width: 34%;
        max-height: 90%;
    }
}

@media (max-width: 380px) {
    .lp-showcase-tabs {
        grid-template-columns: 1fr;
    }
}
