/* 
   LANDING PAGE STYLES (landing.css)
   RESTAURAÇÃO COMPLETA: 1000+ linhas originais recuperadas do backup.
   Design 100% original + correções de nitidez e proporção.
*/

:root {
    --lp-primary: #00a884;
    --lp-primary-hover: #008f6f;
    --lp-bg: #0b141a;
    --lp-card: #111b21;
    --lp-text: #f0f2f5;
    --lp-text-dim: #8696a0;
    --lp-section-padding: 60px 5%;
}

/* Liberar rolagem na Landing Page */
body.landing-page {
    height: auto !important;
    overflow: auto !important;
    overflow-x: hidden !important;
}

/* --- LP SHOWCASE CAROUSEL --- */
.lp-showcase {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #0b141a;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(11, 20, 26, 0.95), transparent);
    text-align: center;
}

.carousel-caption h3 {
    color: var(--lp-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.carousel-caption p {
    color: var(--text-dim);
    font-size: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 168, 132, 0.2);
    border: 1px solid rgba(0, 168, 132, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--lp-primary);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 8px;
    height: 8px;
    opacity: 0.5;
    transition: all 0.3s;
}

.dot.active {
    width: 20px;
    border-radius: 10px;
    opacity: 1;
}

/* --- HERO REFINEMENT (CORRIGIDO PARA NITIDEZ E PROPORÇÃO) --- */
.lp-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 5% 60px 5%;
    min-height: 70vh;
    max-width: 1400px;
    margin: 0 auto;
}

.lp-hero-content {
    flex: 0 0 40%;
}

.lp-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #8696a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--lp-text-dim);
    margin-bottom: 35px;
    max-width: 90%;
}

.lp-hero-visual {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
}

.carousel-wrapper {
    width: 100%;
    max-width: 900px;
    transform: none !important;
    transition: transform 0.5s ease;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* --- LANDING PAGE WRAPPER & NAV --- */
.landing-page {
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
    min-height: 100vh;
    color: var(--lp-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.lp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.lp-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-logo img {
    height: 35px;
    width: auto;
}

.lp-logo span {
    color: var(--lp-primary);
}

.lp-logo span b {
    color: #fff;
}

.lp-nav-actions {
    display: flex;
    gap: 20px;
}

/* --- BTNS --- */
.btn-lp-primary {
    background: var(--lp-primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-lp-primary:hover {
    background: var(--lp-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-lp-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lp-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* --- LOGIN DRAWER --- */
#lp-login-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--lp-card);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

#lp-login-drawer.active {
    right: 0 !important;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.drawer-header {
    margin-bottom: 40px;
}

.drawer-header div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

#btn-close-login {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-close-login:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: rotate(90deg);
}

.drawer-header h2 {
    font-size: 2rem;
    margin: 0;
}

.drawer-header p {
    color: var(--lp-text-dim);
}

.lp-input-group {
    margin-bottom: 20px;
}

.lp-input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-text-dim);
    font-size: 0.9rem;
}

.lp-input-group input {
    width: 100%;
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 10px;
    color: #fff !important;
    outline: none;
}

.lp-input-group input:focus {
    border-color: var(--lp-primary);
    background: #1e293b !important;
}

/* Posicionamento do Olhinho de Senha */
.lp-input-group div {
    position: relative !important;
}

.toggle-password {
    position: absolute !important;
    right: 15px !important;
    top: 38% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
    color: var(--lp-text-dim);
    z-index: 10;
    line-height: 1;
}

.toggle-password:hover {
    color: #fff;
}

.lp-login-footer-links {
    margin-top: 30px;
    text-align: center;
}

.lp-login-footer-links a {
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.lp-login-footer-links a strong {
    color: var(--lp-primary);
}

.lp-login-footer-links a:hover {
    color: #fff;
}

.lp-login-copyright {
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--lp-text-dim);
    text-align: center;
    opacity: 0.6;
    padding-top: 20px;
}

/* --- FEATURES --- */
.lp-features-section {
    padding: var(--lp-section-padding);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.lp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--lp-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--lp-primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--lp-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--lp-text-dim);
    line-height: 1.6;
}

/* --- STEPS --- */
.lp-steps {
    padding: var(--lp-section-padding);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.lp-section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

/* --- PRICING --- */
.lp-pricing {
    padding: var(--lp-section-padding);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Estilo das Abas de Preço */
.pricing-tabs-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    margin: 20px 0 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.pricing-tab {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--lp-text-dim);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.pricing-tab span {
    font-size: 0.7rem;
    background: #10b981;
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 5px;
}

.pricing-tab.active {
    background: var(--lp-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 168, 132, 0.3);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--lp-card);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid var(--lp-primary);
    transform: scale(1.05);
}

.price-val {
    font-size: 3.0rem;
    font-weight: 800;
    margin: 10px 0;
    color: #fff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 1.0rem;
    color: var(--lp-primary);
    font-weight: 700;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    color: var(--lp-text-dim);
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--lp-primary);
}

/* --- SEO CONTENT --- */
#seo-content {
    padding: var(--lp-section-padding);
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    background: var(--lp-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#seo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--lp-text);
}

#seo-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--lp-text-dim);
}

@media (max-width: 768px) {
    #seo-content {
        padding: 40px 20px;
        margin: 20px auto;
    }
    #seo-content h2 {
        font-size: 1.8rem;
    }
    #seo-content p {
        font-size: 1rem;
    }
}

/* --- PAIN POINTS --- */
.lp-pains {
    padding: var(--lp-section-padding);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pain-item {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 15px;
    color: #fca5a5;
    font-weight: 500;
}

/* --- FAQ --- */
.lp-faq {
    padding: var(--lp-section-padding);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--lp-card);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    outline: none;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--lp-primary);
}

.faq-item[open] {
    border-color: var(--lp-primary);
    background: rgba(0, 168, 132, 0.05);
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--lp-text-dim);
    line-height: 1.6;
}

/* --- CALCULATOR --- */
.lp-calculator {
    padding: var(--lp-section-padding);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 50px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.calc-results {
    flex: 1;
    min-width: 300px;
    background: var(--lp-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--lp-primary);
    text-align: center;
}

.calc-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lp-primary);
    margin-bottom: 10px;
}

input[type=range] {
    width: 100%;
    accent-color: var(--lp-primary);
    cursor: pointer;
}

/* --- FOMO --- */
.lp-fomo-toast {
    position: fixed;
    bottom: 60px;
    left: 20px;
    background: var(--lp-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transform: translateY(calc(100% + 100px));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    max-width: 280px;
    font-size: 0.85rem;
}

.lp-fomo-toast.active {
    transform: translateY(0);
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* --- SUCCESS MODAL --- */
.lp-modal-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lp-modal-success.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    background: var(--lp-card);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid var(--lp-primary);
    text-align: center;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.lp-modal-success.active .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: var(--lp-primary);
    margin-bottom: 20px;
    display: block;
}

/* --- RANKING/HIGHLIGHT --- */
.lp-highlight {
    padding: var(--lp-section-padding);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lp-highlight h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--lp-text-main);
}

.lp-highlight .card {
    background: rgba(0, 168, 132, 0.05);
    border: 1px solid rgba(0, 168, 132, 0.2);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
}

/* --- ANTES VS DEPOIS --- */
.pain-grid .card.glass {
    padding: 30px;
    border-radius: 15px;
}

.pain-grid .card.glass ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    text-align: left;
}

.pain-grid .card.glass ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pain-grid .card.glass:first-child {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pain-grid .card.glass:first-child h3,
.pain-grid .card.glass:first-child i {
    color: #ef4444;
}

.pain-grid .card.glass:last-child {
    background: rgba(0, 168, 132, 0.05);
    border: 1px solid rgba(0, 168, 132, 0.2);
}

.pain-grid .card.glass:last-child h3,
.pain-grid .card.glass:last-child i {
    color: var(--lp-primary);
}

/* --- SOCIAL PROOF (PARCEIROS) --- */
.lp-social-proof {
    padding: var(--lp-section-padding);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.proof-header-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* FORÇAR 3 COLUNAS NO DESKTOP */
    gap: 30px;
    transition: opacity 0.4s ease;
    min-height: auto;
}

.proof-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.proof-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--lp-primary);
}

.proof-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.proof-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.proof-city {
    font-size: 0.85rem;
    color: var(--lp-text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}

.proof-niche {
    font-size: 0.9rem;
    color: var(--lp-primary);
    margin-bottom: 15px;
    font-weight: 500;
}

@media (max-width: 968px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

.proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.proof-result {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

/* Utility Classes */
.text-primary {
    color: #00a884 !important;
}

.text-white {
    color: #fff !important;
}

.font-bold {
    font-weight: 800 !important;
}

.mobile-logo-central {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1;
    text-align: center;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .lp-hero {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px;
        padding-top: 120px;
    }

    .lp-hero-content, .lp-hero-visual {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .lp-hero-content h1 {
        font-size: 2.2rem !important;
    }

    .lp-hero-content p {
        font-size: 1rem !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    #lp-login-drawer {
        width: 100% !important;
        right: -100%;
    }
}

@media (max-width: 600px) {
    .lp-nav {
        padding: 10px 4%;
    }

    .lp-logo span {
        font-size: 1.1rem;
    }

    .btn-lp-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .lp-hero-content h1 {
        font-size: 1.8rem !important;
    }

    .lp-section-title {
        font-size: 1.8rem !important;
    }

    .lp-features, .pricing-grid, .steps-grid, .pain-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .feature-card, .price-card, .step-item, .pain-item {
        padding: 20px !important;
    }

    .feature-card h3, .price-card h3 {
        font-size: 1rem !important;
    }

    .price-val {
        font-size: 1.8rem !important;
    }

    .price-card.featured {
        transform: none;
        border-width: 1px;
    }
}

/* --- FOOTER --- */
footer {
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.1);
    color: var(--lp-text-dim);
    font-size: 0.9rem;
}

/* ==========================================
   HUB DE NAVEGAÇÃO DE FERRAMENTAS (GLASSMORPHIC)
   ========================================== */
.tools-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 80px auto 20px auto;
    flex-wrap: wrap;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.tool-link {
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lp-text-dim, #8696a0);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tool-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.tool-link.active {
    background: rgba(0, 168, 132, 0.15);
    border-color: var(--lp-primary, #00a884);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 168, 132, 0.25);
}

/* Gráfico de Barras de Engajamento */
.engagement-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
    background: rgba(0,0,0,0.3);
    padding: 20px 15px 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 20px 0;
}
.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}
.chart-bar {
    width: 70%;
    max-width: 24px;
    background: linear-gradient(to top, var(--lp-primary, #00a884), #00d2ff);
    border-radius: 4px 4px 0 0;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 5px;
}
.chart-bar.peak {
    background: linear-gradient(to top, #ef4444, #f59e0b) !important;
}
.chart-label {
    font-size: 0.7rem;
    color: var(--lp-text-dim, #8696a0);
    margin-top: 8px;
    font-weight: 600;
}

/* Cards Compactos das Ferramentas Gratuitas (Home) */
.tool-card-compact {
    padding: 22px;
    text-align: left;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.tool-card-compact:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.02);
}

.tool-card-compact:hover .btn-lp-outline {
    background: var(--lp-primary, #00a884) !important;
    border-color: var(--lp-primary, #00a884) !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px rgba(0, 168, 132, 0.4);
}

/* ==========================================
   FERRAMENTAS GRATUITAS UNIFICADAS
   ========================================== */
.tool-page-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-height: auto !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5% 40px 5% !important;
    box-sizing: border-box !important;
}

.tool-container {
    width: 100%;
    max-width: 800px;
    margin: 25px auto;
    padding: 40px;
    box-sizing: border-box;
}

/* Garante responsividade nos containers das ferramentas */
@media (max-width: 768px) {
    .tool-container {
        padding: 20px !important;
        margin: 15px auto !important;
    }
}