/* ==========================================
   CARDS DE FERRAMENTAS - Estilos Globais
   Reutilizado em: home, relacionadas, marketplace
   ========================================== */

.fhub-featured-tool-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
}

.fhub-featured-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fhub-featured-tool-header {
    height: 120px;
    position: relative;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.fhub-featured-tool-badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.fhub-featured-tool-badge-left,
.fhub-featured-tool-badge-right {
    background: white;
    color: #171717;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.fhub-featured-tool-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fhub-featured-tool-title {
    font-size: 19px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 12px;
    line-height: 1.4;
}

.fhub-featured-tool-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fhub-featured-tool-title a:hover {
    color: #10b981;
}

.fhub-featured-tool-highlight {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #d1fae5;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #262626;
    line-height: 1.5;
}

.fhub-featured-tool-check {
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.fhub-featured-tool-description {
    font-size: 14px;
    color: #525252;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.fhub-featured-tool-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.fhub-featured-tool-meta-item {
    font-size: 13px;
    color: #525252;
}

.fhub-featured-tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.fhub-featured-tool-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fhub-featured-tool-price-old {
    font-size: 12px;
    color: #a3a3a3;
    text-decoration: line-through;
    font-weight: 400;
    font-family: 'Lexend Deca', sans-serif;
}

.fhub-featured-tool-price-current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fhub-featured-tool-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #171717;
    line-height: 1;
    font-family: 'Lexend Deca', sans-serif;
}

.fhub-featured-tool-discount {
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Lexend Deca', sans-serif;
}

.fhub-featured-tool-btn {
    background: #171717;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Lexend Deca', sans-serif;
}

.fhub-featured-tool-btn:hover {
    background: #262626;
    transform: translateY(-1px);
}

/* ==========================================
   RESPONSIVO - Tablet (768px)
   ========================================== */
@media (max-width: 768px) {
    .fhub-featured-tool-card {
        max-width: 100%;
    }

    .fhub-featured-tool-header {
        height: 100px;
        padding: 12px;
    }

    .fhub-featured-tool-badge-left,
    .fhub-featured-tool-badge-right {
        font-size: 11px;
        padding: 5px 12px;
    }

    .fhub-featured-tool-body {
        padding: 20px;
    }

    .fhub-featured-tool-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .fhub-featured-tool-highlight {
        font-size: 12px;
        padding: 8px 10px;
        margin-bottom: 10px;
    }

    .fhub-featured-tool-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .fhub-featured-tool-meta {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .fhub-featured-tool-meta-item {
        font-size: 12px;
    }

    .fhub-featured-tool-price-old {
        font-size: 11px;
    }

    .fhub-featured-tool-price-value {
        font-size: 18px;
    }

    .fhub-featured-tool-discount {
        font-size: 10px;
        padding: 3px 8px;
    }

    .fhub-featured-tool-btn {
        font-size: 11px;
        padding: 10px 16px;
    }
}

/* ==========================================
   RESPONSIVO - Mobile (480px)
   ========================================== */
@media (max-width: 480px) {
    .fhub-featured-tool-header {
        height: 90px;
        padding: 10px;
    }

    .fhub-featured-tool-body {
        padding: 16px;
    }

    .fhub-featured-tool-title {
        font-size: 17px;
    }

    .fhub-featured-tool-price-value {
        font-size: 16px;
    }
}
