.elementor-2230 .elementor-element.elementor-element-4b5238c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ef5a7fe *//* ============================================
   OK Landing Pages v1.0 - Janeiro 2026
   Glassmorphism + Tailwind Compatible
   Prefixo: lp- (não conflita com outros CSS)
   ============================================ */

/* ===========================================
   CANVAS & BACKGROUND
   =========================================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===========================================
   GLASSMORPHISM SYSTEM
   =========================================== */
.lp-glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.lp-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.lp-glass-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: #1DB954;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -10px rgba(29, 185, 84, 0.15);
}

.lp-glass-dark {
    background: rgba(47, 47, 47, 0.90);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================================
   HERO SECTION (Centralizado)
   =========================================== */
.lp-hero {
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.lp-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1DB954;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.lp-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.025em;
}

.lp-hero-description {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #1DB954;
}

.lp-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.lp-hero-dashboard {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .lp-hero-title {
        font-size: 3.5rem;
    }
    
    .lp-hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lp-hero {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
    
    .lp-hero-title {
        font-size: 4.5rem;
    }
}

/* ===========================================
   SECTION BASE
   =========================================== */
.lp-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.lp-section-badge {
    color: #1DB954;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    background: rgba(29, 185, 84, 0.1);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
}

.lp-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: bold;
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.lp-section-description {
    color: #475569;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .lp-section-title {
        font-size: 3rem;
    }
    
    .lp-section-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .lp-section-title {
        font-size: 3.75rem;
    }
}

/* ===========================================
   GRIDS
   =========================================== */
.lp-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lp-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================================
   CARDS
   =========================================== */
.lp-card {
    padding: 2rem;
    border-radius: 1.5rem;
}

.lp-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(29, 185, 84, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #1DB954;
    transition: all 0.3s ease;
}

.lp-glass-card:hover .lp-card-icon {
    background: #1DB954;
    color: white;
}

.lp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.lp-card-category {
    font-size: 0.625rem;
    color: #1DB954;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.lp-card-description {
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

/* ===========================================
   CASES SECTION (Dark)
   =========================================== */
.lp-cases {
    padding: 6rem 0;
    background: #020617;
    color: white;
    position: relative;
    overflow: hidden;
}

.lp-cases-badge {
    color: #1DB954;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 1px solid rgba(29, 185, 84, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

.lp-cases-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: bold;
    margin-top: 1.5rem;
    line-height: 1.25;
}

.lp-cases-description {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .lp-cases-title {
        font-size: 3rem;
    }
}

/* ===========================================
   CASE CARD
   =========================================== */
.lp-case-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.lp-case-card:hover {
    border-color: rgba(29, 185, 84, 0.5);
}

.lp-case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.lp-case-company {
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
}

.lp-case-location {
    font-size: 0.75rem;
    color: #9ca3af;
}

.lp-case-metric {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1DB954;
}

.lp-case-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.lp-case-progress {
    width: 100%;
    background: #1f2937;
    border-radius: 9999px;
    height: 0.375rem;
    margin-top: auto;
}

.lp-case-progress-bar {
    background: #1DB954;
    height: 0.375rem;
    border-radius: 9999px;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.lp-about {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
}

/* ===========================================
   SOLUTIONS SECTION
   =========================================== */
.lp-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .lp-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   COMMUNITY SECTION
   =========================================== */
.lp-community {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: #F8F9FA;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .lp-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================================
   UTILITIES
   =========================================== */
.lp-text-gradient {
    background: linear-gradient(135deg, #15803d 0%, #1DB954 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================================
   FOOTER ACCORDION - MOBILE
   =========================================== */
@media (max-width: 767px) {
    .lp-footer-accordion-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    .lp-footer-accordion-content.accordion-open {
        max-height: 500px;
        opacity: 1;
    }
}/* End custom CSS */